diff --git a/unpacked.ttslua b/unpacked.ttslua index 8b9e28c43..d627daaf2 100644 --- a/unpacked.ttslua +++ b/unpacked.ttslua @@ -50,6 +50,173 @@ function onload() end +function take_callback(object_spawned, mat) + customObject = object_spawned.getCustomObject() + local player = mat.getGUID(); + + local image = customObject.image + + -- Update global stats + if PULLS[image] == nil then + PULLS[image] = 0 + end + PULLS[image] = PULLS[image] + 1 + -- Update player stats + if PLAYER_PULLS[player][image] == nil then + PLAYER_PULLS[player][image] = 0 + end + PLAYER_PULLS[player][image] = PLAYER_PULLS[player][image] + 1 + +end +MAT_GUID_TO_COLOUR = { + ["8b081b"] = "White", + -- player 2 conrad + ["bd0ff4"] = "Orange", + -- player + ["383d8b"] = "Green", + -- playur 4 olivia + ["0840d5"] = "Red" +} + + +PLAYER_PULLS = { + -- player 1 max + ["8b081b"] = {}, + -- player 2 conrad + ["bd0ff4"] = {}, + -- player + ["383d8b"] = {}, + -- playur 4 olivia + ["0840d5"] = {} +} + +PULLS = { + -- cultist + ["https://i.imgur.com/VzhJJaH.png"] = 0, + -- skull + ["https://i.imgur.com/stbBxtx.png"] = 0, + -- tablet + ["https://i.imgur.com/1plY463.png"] = 0, + -- curse + ["http://cloud-3.steamusercontent.com/ugc/1011565208488654691/8F0B399048EBC34CD24B99AAD415AEC40E679C65/"] = 0, + -- tentacle + ["https://i.imgur.com/lns4fhz.png"] = 0, + -- minus eight + ["https://i.imgur.com/9t3rPTQ.png"] = 0, + -- minus seven + ["https://i.imgur.com/4WRD42n.png"] = 0, + -- minus six + ["https://i.imgur.com/c9qdSzS.png"] = 0, + -- minus five + ["https://i.imgur.com/3Ym1IeG.png"] = 0, + -- minus four + ["https://i.imgur.com/qrgGQRD.png"] = 0, + -- minus three + ["https://i.imgur.com/yfs8gHq.png"] = 0, + -- minus two + ["https://i.imgur.com/bfTg2hb.png"] = 0, + -- minus one + ["https://i.imgur.com/w3XbrCC.png"] = 0, + -- zero + ["https://i.imgur.com/btEtVfd.png"] = 0, + -- plus one + ["https://i.imgur.com/uIx8jbY.png"] = 0, + -- elder thing + ["https://i.imgur.com/ttnspKt.png"] = 0, + -- bless + ["http://cloud-3.steamusercontent.com/ugc/1011565208488650618/B2B081032AF3EFDBD90840A5D6888A3CEA228D66/"] = 0, + -- elder sign + ["https://i.imgur.com/nEmqjmj.png"] = 0, +} + +IMAGE_TOKEN_MAP = { + -- cultist + ["https://i.imgur.com/VzhJJaH.png"] = "cultist", + -- skull + ["https://i.imgur.com/stbBxtx.png"] = "skull", + -- tablet + ["https://i.imgur.com/1plY463.png"] = "tablet", + -- elder thing + ["https://i.imgur.com/ttnspKt.png"] = "Elder Thing", + -- curse + ["http://cloud-3.steamusercontent.com/ugc/1011565208488654691/8F0B399048EBC34CD24B99AAD415AEC40E679C65/"] = "curse", + -- tentacle + ["https://i.imgur.com/lns4fhz.png"] = "Auto-Fail", + -- minus eight + ["https://i.imgur.com/9t3rPTQ.png"] = "-8", + -- minus seven + ["https://i.imgur.com/4WRD42n.png"] = "-7", + -- minus six + ["https://i.imgur.com/c9qdSzS.png"] = "-6", + -- minus five + ["https://i.imgur.com/3Ym1IeG.png"] = "-5", + -- minus four + ["https://i.imgur.com/qrgGQRD.png"] = "-4", + -- minus three + ["https://i.imgur.com/yfs8gHq.png"] = "-3", + -- minus two + ["https://i.imgur.com/bfTg2hb.png"] = "-2", + -- minus one + ["https://i.imgur.com/w3XbrCC.png"] = "-1", + -- zero + ["https://i.imgur.com/btEtVfd.png"] = "0", + -- plus one + ["https://i.imgur.com/uIx8jbY.png"] = "+1", + -- bless + ["http://cloud-3.steamusercontent.com/ugc/1011565208488650618/B2B081032AF3EFDBD90840A5D6888A3CEA228D66/"] = "bless", + -- elder sign + ["https://i.imgur.com/nEmqjmj.png"] = "Elder Sign", +} + +function resetStats() + for key,value in pairs(PULLS) do + PULLS[key] = 0 + end + for playerKey, playerValue in pairs(PLAYER_PULLS) do + for key,value in pairs(PULLS) do + PLAYER_PULLS[playerKey][key] = value + end + end + + +end + +function getPlayerName(playerMatGuid) + local playerColour = MAT_GUID_TO_COLOUR[playerMatGuid] + if Player[playerColour].seated then + return Player[playerColour].steam_name + else + return playerColour + end +end + +function printStats() + local squidKing = "Nobody" + local maxSquid = 0 + + printToAll("\nOverall Game stats\n") + printNonZeroTokenPairs(PULLS) + printToAll("\nIndividual Stats\n") + for playerMatGuid, countTable in pairs(PLAYER_PULLS) do + local playerName = getPlayerName(playerMatGuid) + printToAll(playerName .. " Stats", {r=255,g=0,b=0}) + printNonZeroTokenPairs(PLAYER_PULLS[playerMatGuid]) + playerSquidCount = PLAYER_PULLS[playerMatGuid]["https://i.imgur.com/lns4fhz.png"] + if playerSquidCount != nil and playerSquidCount > maxSquid then + squidKing = playerName + end + end + printToAll(squidKing .. " is an auto-fail magnet.", {r=255,g=0,b=0}) +end + +function printNonZeroTokenPairs(theTable) + for key,value in pairs(theTable) do + if value != 0 then + printToAll(IMAGE_TOKEN_MAP[key] .. '=' .. tostring(value)) + end + end +end + -- Remove comments to enable autorotate cards on hands. -- function onObjectEnterScriptingZone(zone, object) -- Autorotate cards with right side up when entering hand. @@ -252,7 +419,8 @@ function drawChaostoken(params) local token = chaosbag.takeObject({ index = 0, position = toPosition, - rotation = mat.getRotation() + rotation = mat.getRotation(), + callback_function = function(obj) take_callback(obj, mat) end }) CHAOS_TOKENS[#CHAOS_TOKENS + 1] = token return @@ -571,4 +739,4 @@ function updateRandomSeed() math.randomseed(os.time()) end end - + diff --git a/unpacked.yaml b/unpacked.yaml index 3e4191305..0f0cbf638 100644 --- a/unpacked.yaml +++ b/unpacked.yaml @@ -22,7 +22,7 @@ CameraStates: - null - null - null -Date: 11/1/2020 8:50:09 PM +Date: 11/7/2020 5:09:33 PM DecalPallet: - ImageURL: http://cloud-3.steamusercontent.com/ugc/1474319121424323663/BC5570ECF747F1B30224461B576E8B0FE7FA5F33/ Name: Achivement Checkmark @@ -230,9 +230,9 @@ Hands: rotX: 0.0 rotY: 90.0 rotZ: 0.0 - scaleX: 22.8715858 + scaleX: 22.8846416 scaleY: 7.0 - scaleZ: 7.06411266 + scaleZ: 7.069945 - Color: Red Transform: posX: -27.96 @@ -263,9 +263,9 @@ Hands: rotX: 0.0 rotY: 90.0 rotZ: 0.0 - scaleX: 22.8717346 + scaleX: 22.8847885 scaleY: 7.002465 - scaleZ: 7.06417131 + scaleZ: 7.07000351 Hiding: 2 Lighting: AmbientEquatorColor: @@ -551,10 +551,13 @@ ObjectStates: - !include '../AH_SCE_Unpacked/unpacked/ScriptingTrigger b047f8.yaml' - !include '../AH_SCE_Unpacked/unpacked/ScriptingTrigger 18538f.yaml' - !include '../AH_SCE_Unpacked/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0.yaml' -- !include '../AH_SCE_Unpacked/unpacked/Custom_Model Custom Data Helper c0b834.yaml' - !include '../AH_SCE_Unpacked/unpacked/Custom_Model_Bag Miskatonic Mouse 0954ef.yaml' -- !include '../AH_SCE_Unpacked/unpacked/Notecard Arkham SCE 1.501 - 1112020 - Page - 1 e65fb4.yaml' +- !include '../AH_SCE_Unpacked/unpacked/Custom_Model Custom Data Helper c0b834.yaml' +- !include '../AH_SCE_Unpacked/unpacked/Custom_Token Chaos Bag Stat Tracker 766620.yaml' +- !include '../AH_SCE_Unpacked/unpacked/Custom_Model_Bag Maximillion Pegasus Custom + Investigator 84be1d.yaml' +- !include '../AH_SCE_Unpacked/unpacked/Notecard Arkham SCE 1.51 - 1172020 - Page + 1 094d4d.yaml' PlayArea: 1.0 PlayerCounts: - 0 @@ -563,7 +566,7 @@ PlayingTime: - 0 - 0 Rules: '' -SaveName: Arkham SCE 1.501 +SaveName: Arkham SCE 1.51 Sky: Sky_Museum SkyURL: https://i.imgur.com/GkQqaOF.jpg SnapPoints: @@ -1030,7 +1033,7 @@ SnapPoints: Rotation: x: 359.9201 y: 269.981476 - z: 0.0169199947 + z: 0.0169201475 - Position: x: -21.2858257 y: 1.50565612 diff --git a/unpacked/3DText 65eb7e.yaml b/unpacked/3DText 65eb7e.yaml index 98c3a9a60..47c725050 100644 --- a/unpacked/3DText 65eb7e.yaml +++ b/unpacked/3DText 65eb7e.yaml @@ -32,7 +32,7 @@ Transform: posX: -48.92 posY: 1.25 posZ: 71.4 - rotX: 90.0 + rotX: 89.97 rotY: 90.0 rotZ: 0.0 scaleX: 1.0 diff --git a/unpacked/3DText e51c92.yaml b/unpacked/3DText e51c92.yaml index aebe30b97..8f38bb589 100644 --- a/unpacked/3DText e51c92.yaml +++ b/unpacked/3DText e51c92.yaml @@ -29,7 +29,7 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -17.92 + posX: -17.91 posY: 1.27 posZ: 84.57 rotX: 90.0 diff --git a/unpacked/Custom_Model 0a3b03.yaml b/unpacked/Custom_Model 0a3b03.yaml index 4ae152c64..8cccd2979 100644 --- a/unpacked/Custom_Model 0a3b03.yaml +++ b/unpacked/Custom_Model 0a3b03.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.141086936 - g: 0.141086936 - r: 0.141086936 + b: 0.141085863 + g: 0.141085863 + r: 0.141085863 CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model 0c05e4.yaml b/unpacked/Custom_Model 0c05e4.yaml index 6bd94fde2..6667a0ca5 100644 --- a/unpacked/Custom_Model 0c05e4.yaml +++ b/unpacked/Custom_Model 0c05e4.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.141086936 - g: 0.141086936 - r: 0.141086936 + b: 0.141085863 + g: 0.141085863 + r: 0.141085863 CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model b486bd.yaml b/unpacked/Custom_Model b486bd.yaml index 6763fb6d6..cbe138d95 100644 --- a/unpacked/Custom_Model b486bd.yaml +++ b/unpacked/Custom_Model b486bd.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.141086936 - g: 0.141086936 - r: 0.141086936 + b: 0.141085863 + g: 0.141085863 + r: 0.141085863 CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model Custom Data Helper c0b834.yaml b/unpacked/Custom_Model Custom Data Helper c0b834.yaml index 16d7760c2..263c6f204 100644 --- a/unpacked/Custom_Model Custom Data Helper c0b834.yaml +++ b/unpacked/Custom_Model Custom Data Helper c0b834.yaml @@ -29,7 +29,7 @@ GridProjection: false Hands: false HideWhenFaceDown: false IgnoreFoW: false -Locked: true +Locked: false LuaScript: !include 'Custom_Model Custom Data Helper c0b834.ttslua' LuaScriptState: '' MeasureMovement: false @@ -39,12 +39,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 31.42 - posY: 1.47 - posZ: -23.85 - rotX: 359.89 - rotY: 269.98 - rotZ: 0.01 + posX: 31.48 + posY: 1.49 + posZ: -23.84 + rotX: 359.92 + rotY: 269.99 + rotZ: 0.02 scaleX: 0.5 scaleY: 0.5 scaleZ: 0.5 diff --git a/unpacked/Custom_Model Neutral 29fae0.yaml b/unpacked/Custom_Model Neutral 29fae0.yaml index 342ded24b..56ff9b6b1 100644 --- a/unpacked/Custom_Model Neutral 29fae0.yaml +++ b/unpacked/Custom_Model Neutral 29fae0.yaml @@ -256,7 +256,7 @@ Transform: posY: 1.6 posZ: -23.57 rotX: 359.92 - rotY: 269.96 + rotY: 269.95 rotZ: 0.02 scaleX: 0.45 scaleY: 0.6 diff --git a/unpacked/Custom_Model Neutral 6ed29f.yaml b/unpacked/Custom_Model Neutral 6ed29f.yaml index e4a261252..36530d914 100644 --- a/unpacked/Custom_Model Neutral 6ed29f.yaml +++ b/unpacked/Custom_Model Neutral 6ed29f.yaml @@ -256,7 +256,7 @@ Transform: posY: 1.56 posZ: -19.36 rotX: 0.02 - rotY: 180.05 + rotY: 180.06 rotZ: 0.08 scaleX: 0.45 scaleY: 0.6 diff --git a/unpacked/Custom_Model Neutral 99d430.yaml b/unpacked/Custom_Model Neutral 99d430.yaml index 664afdd30..fc886b9f7 100644 --- a/unpacked/Custom_Model Neutral 99d430.yaml +++ b/unpacked/Custom_Model Neutral 99d430.yaml @@ -256,7 +256,7 @@ Transform: posY: 1.57 posZ: 19.26 rotX: 359.98 - rotY: 0.0 + rotY: 0.01 rotZ: 359.92 scaleX: 0.45 scaleY: 0.6 diff --git a/unpacked/Custom_Model Neutral b28feb.yaml b/unpacked/Custom_Model Neutral b28feb.yaml index 357115b92..93ac258ab 100644 --- a/unpacked/Custom_Model Neutral b28feb.yaml +++ b/unpacked/Custom_Model Neutral b28feb.yaml @@ -256,7 +256,7 @@ Transform: posY: 1.56 posZ: -19.36 rotX: 0.02 - rotY: 180.06 + rotY: 180.07 rotZ: 0.08 scaleX: 0.45 scaleY: 0.6 diff --git a/unpacked/Custom_Model Neutral fa6bf1.yaml b/unpacked/Custom_Model Neutral fa6bf1.yaml index 3a9674706..ad2332e7c 100644 --- a/unpacked/Custom_Model Neutral fa6bf1.yaml +++ b/unpacked/Custom_Model Neutral fa6bf1.yaml @@ -256,7 +256,7 @@ Transform: posY: 1.6 posZ: -22.34 rotX: 359.92 - rotY: 270.03 + rotY: 270.04 rotZ: 0.02 scaleX: 0.45 scaleY: 0.6 diff --git a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml index 4b294cafe..1fe4c091a 100644 --- a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml +++ b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml @@ -5,24 +5,24 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 448937 + CardID: 266322 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4489': + '2663': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Jewel of the Gods + Description: '' DragSelectable: true GMNotes: '' - GUID: 464ca1 + GUID: 90fdb0 Grid: true GridProjection: false Hands: true @@ -33,69 +33,114 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Wish Eater + Nickname: Teachings of the Order SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -63.4576378 - posY: 3.521088 - posZ: -65.76698 - rotX: 0.0166528169 + posX: -45.7781334 + posY: 1.30384433 + posZ: -64.75425 + rotX: 0.0167709477 + rotY: 180.0 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2730': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280920105/BBE662BDDC5F2C94A5DE10256B991D1E1DD2C50D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 242a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Liber Omnium Finium + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.88552 + posY: 1.30724609 + posZ: -52.9994659 + rotX: 0.02080839 + rotY: 269.9999 + rotZ: 0.0167707652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2731': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280920329/24678C1EA9F75CE15164134ACF04BD5642D9F434/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Dark Revelations + DragSelectable: true + GMNotes: '' + GUID: 782e0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Ruth Westmacott + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.3682747 + posY: 1.30957115 + posZ: -49.4203262 + rotX: 0.020808151 rotY: 270.000031 - rotZ: 180.070023 + rotZ: 0.0167707819 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368527 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Let the Storm Rage - DragSelectable: true - GMNotes: '' - GUID: 1c98ff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Key of Ys (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.40081811 - posZ: 9.499999 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538717 + CardID: 538719 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -112,7 +157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 7e7873 + GUID: 6b2e97 Grid: true GridProjection: false Hands: true @@ -123,840 +168,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Prescient + Nickname: Grotesque Statue (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -61.1686325 - posY: 3.2845335 - posZ: -71.113884 - rotX: 0.02081002 + posX: -58.40162 + posY: 3.28469515 + posZ: -73.7900848 + rotX: 0.0208099112 rotY: 270.001343 - rotZ: 0.0167657565 + rotZ: 0.0167665463 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226360 + CardID: 230502 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f7a9ab - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Armor of Ardennes (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.419059 - posZ: -40.9699936 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232949 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Recalling Ancient Things - DragSelectable: true - GMNotes: '' - GUID: 6714b2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Zebulon Whateley - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8655548 - posY: 1.363576 - posZ: -55.4826279 - rotX: 0.0208091382 - rotY: 270.0 - rotZ: 0.0167707019 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545305 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Purifier - DragSelectable: true - GMNotes: '' - GUID: f6dfe5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grete Wagner - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.8801346 - posY: 3.28633022 - posZ: -69.80603 - rotX: 0.0208143089 - rotY: 269.979553 - rotZ: 0.0167628229 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380028 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2cfa4f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Swift Reload (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1356068 - posY: 1.687724 - posZ: -1.17973149 - rotX: 359.921173 - rotY: 270.000244 - rotZ: 0.0157240219 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230322 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8e57b8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clarity of Mind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0 - posY: 1.33338857 - posZ: 71.35 - rotX: 0.0207986627 - rotY: 270.0313 - rotZ: 0.016783379 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230338 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bf3dd1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Defiance (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40744519 - posZ: 14.3900223 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538825 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c1365d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seeking Answers (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.3109856 - posY: 3.16338754 - posZ: -84.2678757 - rotX: 0.0208092984 - rotY: 269.997253 - rotZ: 0.0167696457 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 231600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2316': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017195287736529784/BEB850DCAA5497CC1A96E1603C0D3AFFE8B0F2BB/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Advanced - DragSelectable: true - GMNotes: '' - GUID: cf41be - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Daisy's Tote Bag - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.50849 - posY: 1.30044091 - posZ: -69.37549 - rotX: 0.0208080076 - rotY: 270.0 - rotZ: 0.0167705547 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232332 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: A Gift Unlooked For - DragSelectable: true - GMNotes: '' - GUID: f295d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clasp of Black Onyx - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -32.1468964 - posY: 2.3714323 - posZ: -85.77982 - rotX: 0.0208088849 - rotY: 270.0 - rotZ: 0.01677082 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230331 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Cleansing Fire - DragSelectable: true - GMNotes: '' - GUID: 423d46 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: St. Hubert's Key - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.4000015 - posY: 1.33551991 - posZ: 82.85 - rotX: 0.02080567 - rotY: 270.0064 - rotZ: 0.0167738758 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292913 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2929': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b65011 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Investments - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.4359 - posY: 1.56717479 - posZ: -53.5249176 - rotX: 0.0196301043 - rotY: 270.007874 - rotZ: 0.00258995965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226326 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 08bdf1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guard Dog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230006 - posY: 1.34582007 - posZ: 71.3500061 - rotX: 0.0208174884 - rotY: 269.9694 - rotZ: 0.01676253 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440814 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2699': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: ba2ae1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Doomed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 78.9933 - posY: 1.51519966 - posZ: 71.2607346 - rotX: 0.0213949829 - rotY: 269.999878 - rotZ: 0.0158619713 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 290320 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2903': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Circumstances Beyond Your Control - DragSelectable: true - GMNotes: '' - GUID: d5c93d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "The Tower \u2022 XVI" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.62506 - posY: 1.3658669 - posZ: 53.07699 - rotX: 0.0129812742 - rotY: 269.999023 - rotZ: 0.0141451433 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 552515 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5522': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 61c4c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hair of the Dog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.1416969 - posY: 1.30838335 - posZ: -53.75933 - rotX: 0.0208085682 - rotY: 269.999573 - rotZ: 0.0167707819 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 278012 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2780': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e454c3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Well-Maintained (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.5159187 - posY: 1.326544 - posZ: 54.8107338 - rotX: 0.02080832 - rotY: 269.998047 - rotZ: 0.0167722814 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f7289 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07001 - posY: 1.370449 - posZ: 87.4500046 - rotX: 0.02080942 - rotY: 269.9973 - rotZ: 0.016771527 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226350 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 82d62c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stick to the Plan (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41223478 - posZ: -15.6699867 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 375129 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': + '2305': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ @@ -967,7 +202,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 79b4af + GUID: fa777f Grid: true GridProjection: false Hands: true @@ -978,384 +213,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Abandoned and Alone + Nickname: Foolishness 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 + posX: -48.8825455 + posY: 3.39966679 + posZ: -65.17031 + rotX: 0.0208071936 + rotY: 270.010773 + rotZ: 0.0167639218 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230316 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 80acd2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Forbidden Knowledge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.33742809 - posZ: 85.15 - rotX: 0.0207991842 - rotY: 270.0313 - rotZ: 0.01678471 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550825 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Tough Old Bird - DragSelectable: true - GMNotes: '' - GUID: 52a66f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Granny Orne (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.328167 - posY: 5.377853 - posZ: -67.87628 - rotX: 0.01473101 - rotY: 270.0195 - rotZ: 0.011882768 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368716 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cdfd9f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Backstab - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.34872425 - posZ: 57.5500031 - rotX: 0.0208148975 - rotY: 269.9749 - rotZ: 0.0167642422 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379829 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Too Noble for His Own Good - DragSelectable: true - GMNotes: '' - GUID: 08e5a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tetsuo Mori - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1324425 - posY: 1.67257357 - posZ: 7.045372 - rotX: 359.930023 - rotY: 269.9999 - rotZ: 0.007491751 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 376600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3766': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 41a9ec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Until the End of Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 27.6287518 - posY: 1.4419347 - posZ: -51.9697838 - rotX: 0.0280682351 - rotY: 269.874725 - rotZ: 4.47717762 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315234 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cdd6aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hired Muscle (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.39959192 - posZ: 25.60001 - rotX: 359.987427 - rotY: 269.9998 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368821 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 215cec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cherished Keepsake - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.57 - posY: 1.36196756 - posZ: 85.15 - rotX: 0.02081672 - rotY: 269.9702 - rotZ: 0.0167616438 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277709 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2777': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Aspiring Actor - DragSelectable: true - GMNotes: '' - GUID: 9df9df - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Henry Wan - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.642086 - posY: 1.33200514 - posZ: 73.6239853 - rotX: 0.020809764 - rotY: 269.999359 - rotZ: 0.0167665128 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430657 + CardID: 430655 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1369,415 +244,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Acidic Ichor DragSelectable: true GMNotes: '' - GUID: 5d25b1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cryptic Research (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.41763139 - posZ: -29.3099918 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230326 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5558f1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mists of R'lyeh - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0 - posY: 1.33069563 - posZ: 62.15 - rotX: 0.020798916 - rotY: 270.0313 - rotZ: 0.01678454 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315245 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5f19e0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sneak Attack (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40703642 - posZ: -2.00000238 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538814 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '013446' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Extensive Research - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.3100357 - posY: 3.28346276 - posZ: -76.4470444 - rotX: 0.0208093561 - rotY: 269.997253 - rotZ: 0.0167692974 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c40cb4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Watch this!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.358038 - posZ: 85.15 - rotX: 0.0208082516 - rotY: 270.000122 - rotZ: 0.01677166 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430645 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 092e92 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quick Study (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40832567 - posZ: 5.19001961 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226322 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4d971e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Survival Knife - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230005 - posY: 1.3491863 - posZ: 82.85 - rotX: 0.0208167434 - rotY: 269.9694 - rotZ: 0.0167635381 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368819 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e8ea95 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cunning Distraction - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.970005 - posY: 1.35377693 - posZ: 52.9500046 - rotX: 0.0208033528 - rotY: 270.012939 - rotZ: 0.01677898 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0ec9bf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 430654 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Freezing Variant - DragSelectable: true - GMNotes: '' - GUID: 9afe23 + GUID: fa61ba Grid: true GridProjection: false Hands: true @@ -1794,27 +264,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 88.0500259 - posY: 1.41514981 - posZ: -20.11004 + posX: 88.05001 + posY: 1.41577017 + posZ: -22.40999 rotX: 359.987427 - rotY: 270.0011 + rotY: 270.000061 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 450602 + CardID: 430647 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4506': + '2915': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -1822,7 +292,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ecbea8 + GUID: 19ab7c Grid: true GridProjection: false Hands: true @@ -1833,86 +303,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Pathfinder (1) (Taboo) + Nickname: Otherworldly Compass (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -54.1718178 - posY: 1.30479944 - posZ: -51.0767 - rotX: 0.0208092015 - rotY: 269.999664 - rotZ: 0.0167714041 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368849 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f66dd9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Snare Trap (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40727246 - posZ: -8.900003 + posX: 88.05002 + posY: 1.4095664 + posZ: 0.590019166 rotX: 359.987427 - rotY: 270.0 + rotY: 270.000122 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 545211 + CardID: 538811 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5452': + '2662': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Basic Weakness + Description: Hunter of Rare Books DragSelectable: true GMNotes: '' - GUID: 121b2d + GUID: 3c5099 Grid: true GridProjection: false Hands: true @@ -1923,41 +348,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dendromorphosis + Nickname: Whitton Greene SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -45.1638451 - posY: 3.18465137 - posZ: -78.99707 - rotX: 0.02080465 - rotY: 269.997864 - rotZ: 0.7455131 + posX: -59.12978 + posY: 3.28261662 + posZ: -79.15238 + rotX: 0.0208093058 + rotY: 269.997253 + rotZ: 0.0167690311 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 377042 + CardID: 294203 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3770': + '2942': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Ally. Sorcerer. DragSelectable: true GMNotes: '' - GUID: f91fd9 + GUID: 37a76b Grid: true GridProjection: false Hands: true @@ -1968,41 +393,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Mitch Brown + Nickname: Lady Esprit 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 + 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: 378619 + CardID: 230321 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3786': + '2303': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Will Try Anything Once DragSelectable: true GMNotes: '' - GUID: 76147b + GUID: 9683d0 Grid: true GridProjection: false Hands: true @@ -2013,24 +438,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: "\"I've had worse\u2026\" (2)" + Nickname: Olive McBride 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 + 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: 368412 + CardID: 368423 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -2044,10 +469,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Working on Something Big DragSelectable: true GMNotes: '' - GUID: d64c99 + GUID: 234ff6 Grid: true GridProjection: false Hands: true @@ -2058,2178 +483,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Truth from Fiction + Nickname: Dr. William T. Maleson 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: 545302 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 2204cc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Self-Destructive - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.36467 - posY: 3.17273164 - posZ: -82.1646347 - rotX: 0.0208081584 - rotY: 270.000977 - rotZ: 0.0167709664 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538705 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 17319c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Azure Flame - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -64.417305 - posY: 3.28208518 - posZ: -69.3757858 - rotX: 0.020811379 - rotY: 270.001343 - rotZ: 0.01676319 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368618 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Doom Begets Doom - DragSelectable: true - GMNotes: '' - GUID: 07350b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 448030 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 26853e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Word of Command (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.18796 - posY: 1.29924214 - posZ: -71.38749 - rotX: 0.020774316 - rotY: 270.000275 - rotZ: 0.0167474784 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Regalia Dementia - DragSelectable: true - GMNotes: '' - GUID: 5d30a1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Tattered Cloak - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.11173 - posY: 2.37783718 - posZ: -74.3121262 - rotX: 0.0208091661 - rotY: 270.000061 - rotZ: 0.0167705119 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368844 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0edef1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Chance Encounter (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40355015 - posZ: 4.899999 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377343 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3773': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7c958e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jake Williams - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.09009 - posY: 2.18708086 - posZ: -86.02005 - rotX: 0.0208045971 - rotY: 270.0133 - rotZ: 0.0167789925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538823 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 344e90 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''ve got a plan!" (2)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.7697029 - posY: 3.16668463 - posZ: -83.9721756 - rotX: 0.0208092015 - rotY: 269.997253 - rotZ: 0.0167694557 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230351 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e72762 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind Wipe (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.41613054 - posZ: -17.80999 - rotX: 359.987427 - rotY: 270.0002 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226310 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 831b6b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prepared for the Worst - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300049 - posY: 1.34840119 - posZ: 75.9500046 - rotX: 0.02079622 - rotY: 270.027039 - rotZ: 0.0167754125 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551912 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5519': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44bc00 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hired Dogs - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.1418762 - posY: 1.71884549 - posZ: -31.8025227 - rotX: 358.936829 - rotY: 269.99765 - rotZ: 0.0168741662 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226315 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1bc300 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trusted - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300058 - posY: 1.34503508 - posZ: 64.4500046 - rotX: 0.0207948089 - rotY: 270.027039 - rotZ: 0.0167727638 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315260 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ecfa42 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chicago Typewriter (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749992 - posY: 1.417583 - posZ: -41.1000137 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447934 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4479': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 93381d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Heroic Rescue (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.9259224 - posY: 1.29796028 - posZ: -78.57276 - rotX: 0.0208088644 - rotY: 270.000061 - rotZ: 0.0167711973 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450601 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 34140c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Elusive (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.79034 - posY: 1.30492866 - posZ: -51.10886 - rotX: 0.0208091177 - rotY: 269.999664 - rotZ: 0.0167718679 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378620 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3786': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 312d38 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hallowed Mirror - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 30.8494987 - posY: 1.351685 - posZ: 64.56357 - rotX: 0.0208110046 - rotY: 269.990936 - rotZ: 0.0167647637 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 276101 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2761': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5a305e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Colt Vest Pocket - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.348836 - posZ: 62.1500053 - rotX: 0.02081202 - rotY: 269.9888 - rotZ: 0.0167703833 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430639 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Unidentified - DragSelectable: true - GMNotes: '' - GUID: 9bc46e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Stone (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40460336 - posZ: 18.99002 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379020 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5d6728 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Occult Lexicon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 13.9440126 - posY: 1.34620976 - posZ: 66.8332062 - rotX: 0.0208179 - rotY: 269.980469 - rotZ: 0.0167577937 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230313 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f3c8e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hypnotic Gaze - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6 - posY: 1.3312571 - posZ: 59.85 - rotX: 0.0208162144 - rotY: 269.96698 - rotZ: 0.0167607628 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2e93fd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 447631 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4476': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2aeb8a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Burglary (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.607933 - posY: 1.30007148 - posZ: -68.03267 - rotX: 0.0208079722 - rotY: 270.000061 - rotZ: 0.0167707112 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368506 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c6ac19 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Perception - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.36910248 - posZ: 82.85 - rotX: 0.0208097026 - rotY: 269.997284 - rotZ: 0.01677215 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 290207 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2902': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Free from the Past - DragSelectable: true - GMNotes: '' - GUID: 2e5b03 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "Death \u2022 XIII (1)" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.400881 - posZ: 32.7900352 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: John Dee Translation - DragSelectable: true - GMNotes: '' - GUID: 6b2550 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 430907 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2728': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ff3f17 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Eldritch Inspiration - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33866286 - posZ: 85.15 - rotX: 0.02081807 - rotY: 269.96698 - rotZ: 0.0167602263 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293216 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2932': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0ce005 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Esoteric Atlas (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.42852 - posY: 1.51032472 - posZ: -53.8481 - rotX: 0.0210976042 - rotY: 270.016876 - rotZ: 0.0175880175 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545207 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Stygian Waymark - DragSelectable: true - GMNotes: '' - GUID: 698fcc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Chthonian Stone (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.721096 - posY: 3.28535 - posZ: -72.75358 - rotX: 0.0208072979 - rotY: 270.0092 - rotZ: 0.0167705286 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538708 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 971d52 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Familiar Spirit - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.0962448 - posY: 3.284114 - posZ: -71.60461 - rotX: 0.0208114013 - rotY: 270.001343 - rotZ: 0.0167635661 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440720 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4407': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 26a3bf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stealth (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.95461 - posY: 1.54556274 - posZ: 29.33836 - rotX: 359.9763 - rotY: 269.978271 - rotZ: 359.9808 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230324 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9e4505 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Studies - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0 - posY: 1.3320421 - posZ: 66.75 - rotX: 0.020799553 - rotY: 270.0313 - rotZ: 0.0167842377 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Concerned Brother - DragSelectable: true - GMNotes: '' - GUID: 1bfb78 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Randall Cho - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.92781 - posY: 3.174865 - posZ: -71.04248 - rotX: 0.0208086073 - rotY: 270.0 - rotZ: 0.0167711042 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230303 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cd0ac1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fearless - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000027 - posY: 1.33787787 - posZ: 78.25 - rotX: 0.0208174773 - rotY: 269.971 - rotZ: 0.0167640541 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545304 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 52c686 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Flesh Ward - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.934803 - posY: 3.28626966 - posZ: -69.98283 - rotX: 0.0208145157 - rotY: 269.979553 - rotZ: 0.0167626 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538710 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d9292f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Robes of Endless Night - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.59802 - posY: 3.28473163 - posZ: -70.11515 - rotX: 0.0208108351 - rotY: 270.001343 - rotZ: 0.0167642124 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538812 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d29be - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Burning the Midnight Oil - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.2948837 - posY: 3.284804 - posZ: -75.21793 - rotX: 0.0208093766 - rotY: 269.997253 - rotZ: 0.01676911 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368526 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: He Was Never There - DragSelectable: true - GMNotes: '' - GUID: ad18a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Red-Gloved Man (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.40019763 - posZ: 11.8000021 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430656 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Restorative Concoction - DragSelectable: true - GMNotes: '' - GUID: 4874bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.41639066 - posZ: -24.7099915 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368510 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9b9e8b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Calling in Favors - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 60.6699944 - posY: 1.368541 - posZ: 85.15 - rotX: 0.0208100677 - rotY: 270.000732 - rotZ: 0.0167711955 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 441026 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4410': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ff9f23 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Segment of Onyx (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.24019 - posY: 1.40603662 - posZ: 12.822814 - rotX: 359.987183 - rotY: 270.0061 - rotZ: 359.986481 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374633 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3746': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 016b72 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The King in Yellow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.2623863 - posY: 2.183923 - posZ: -93.89774 - rotX: 0.02080724 - rotY: 270.004761 - rotZ: 0.016775541 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368928 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3689': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a56ffe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wendy's Amulet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 87.36852 - posY: 1.4640274 - posZ: -54.70025 - rotX: 0.0210064612 - rotY: 270.000427 - rotZ: 4.54647064 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538809 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8595fb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Higher Education - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.71999 - posY: 3.28314877 - posZ: -77.8439255 - rotX: 0.0208094642 - rotY: 269.997253 - rotZ: 0.0167688243 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 541300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5413': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830597915335843/99E638B3D735149C6624312DBAB47A3AA2D2F95D/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Advanced - DragSelectable: true - GMNotes: '' - GUID: bd323d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Hospital Debts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.0280762 - posY: 1.30279255 - posZ: -64.41893 - rotX: 0.0208086669 - rotY: 270.000031 - rotZ: 0.0167711359 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368520 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 408cb5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Emergency Cache (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.395855 - posZ: 27.9000053 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447834 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Dreams of an Explorer - DragSelectable: true - GMNotes: '' - GUID: 5f9a10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Diary (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.4953213 - posY: 1.59229374 - posZ: 11.9794865 - rotX: 359.920135 - rotY: 269.992523 - rotZ: 0.01688575 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368415 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3684': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44cf4a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: No Stone Unturned - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3596878 - posY: 3.53277922 - posZ: -65.68791 - rotX: 0.0166730285 - rotY: 269.999664 - rotZ: 180.035721 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2336': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 26398a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pet Oozeling - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.6435547 - posY: 1.3010807 - posZ: -68.26276 - rotX: 0.02080807 - rotY: 270.0001 - rotZ: 0.0167711359 + 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 @@ -4280,24 +545,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 550829 + CardID: 553232 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '2663': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: 719a45 + GUID: ef91a9 Grid: true GridProjection: false Hands: true @@ -4308,33 +573,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: "D\xE9j\xE0 Vu (5)" + Nickname: Accursed Follower SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -57.63066 - posY: 3.28594518 - posZ: -70.2820053 - rotX: 0.0208004341 - rotY: 270.027527 - rotZ: 0.01678116 + posX: -57.6153374 + posY: 1.30231833 + posZ: -55.28093 + rotX: 0.0208085831 + rotY: 269.999939 + rotZ: 0.0167706572 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368853 + CardID: 315249 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2097': + '3152': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -4342,7 +607,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: dffe4a + GUID: f8dc01 Grid: true GridProjection: false Hands: true @@ -4353,24 +618,114 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Scrapper (3) + Nickname: The Skeleton Key (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 110.15 - posY: 1.4103744 - posZ: -20.4000053 + posX: 102.75 + posY: 1.41075873 + posZ: -15.8000069 rotX: 359.987427 - rotY: 269.999969 + rotY: 269.999817 rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430651 + CardID: 441024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Markings of Isis + DragSelectable: true + GMNotes: '' + GUID: 66d5a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Archaic Glyphs (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.97676 + posY: 1.36161959 + posZ: -63.2690926 + rotX: 0.0208061747 + rotY: 270.0178 + rotZ: 0.0167769343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 91e53c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daring + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1511784 + posY: 1.67444432 + posZ: 7.094112 + rotX: 359.921478 + rotY: 270.000641 + rotZ: 0.0153285637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430637 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -4387,7 +742,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2e3115 + GUID: 378e84 Grid: true GridProjection: false Hands: true @@ -4398,33 +753,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Barricade (3) + Nickname: Magnifying Glass (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 88.05002 - posY: 1.41266835 - posZ: -10.9099836 + posY: 1.40274215 + posZ: 25.8900242 rotX: 359.987427 - rotY: 270.0 + rotY: 269.999939 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 313301 + CardID: 368528 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3133': + '2096': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -4432,7 +787,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 5f33be + GUID: 2acced Grid: true GridProjection: false Hands: true @@ -4443,24 +798,159 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Handcuffs + Nickname: Ornate Bow (3) 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 + 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: 230325 + CardID: 368522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 324e49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Elder Sign Amulet (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39833653 + posZ: 18.7000027 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369945 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3699': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe68c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Dirge of Reason + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 85.22855 + posY: 1.54189241 + posZ: -58.0838356 + rotX: 6.124808 + rotY: 269.9939 + rotZ: 0.005484572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8948c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39523458 + posZ: 30.2000065 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230327 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -4474,10 +964,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Esteemed Eschatologist + Description: Stygian Waymark DragSelectable: true GMNotes: '' - GUID: 1f8539 + GUID: 6527a4 Grid: true GridProjection: false Hands: true @@ -4488,33 +978,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: David Renfield + Nickname: The Chthonian Stone SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: -25.0 - posY: 1.33136892 - posZ: 64.45 - rotX: 0.0207990743 + posY: 1.33002234 + posZ: 59.85 + rotX: 0.0207988359 rotY: 270.0313 - rotZ: 0.016784329 + rotZ: 0.0167858377 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 550800 + CardID: 226309 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '2263': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -4522,7 +1012,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6da7c4 + GUID: 2db518 Grid: true GridProjection: false Hands: true @@ -4533,86 +1023,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Neither Rain nor Snow + Nickname: Evidence! SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -59.7919922 - posY: 3.28410816 - posZ: -72.41342 - rotX: 0.0147348512 - rotY: 270.0195 - rotZ: 0.0118878279 + 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: 232348 + CardID: 368837 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Madness. Pact. - DragSelectable: true - GMNotes: '' - GUID: 4f903e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lost Soul - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.30787 - posY: 2.37636733 - posZ: -74.3676 - rotX: 0.0208093375 - rotY: 270.0 - rotZ: 0.0167706758 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431009 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2737': + '2097': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Let Your Arrow Fly True + Description: '' DragSelectable: true GMNotes: '' - GUID: c4d436 + GUID: 4cfcc7 Grid: true GridProjection: false Hands: true @@ -4623,78 +1068,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Ace of Swords (1) + Nickname: A Test of Will (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 95.87002 - posY: 1.40354943 - posZ: 16.5300255 + posX: 110.15 + posY: 1.39796674 + posZ: 25.6000061 rotX: 359.987427 - rotY: 269.999969 + rotY: 270.0 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 538602 + CardID: 430646 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5386': + '2915': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: c45e67 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Reckless - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.6244621 - posY: 3.285529 - posZ: -69.83184 - rotX: 0.0208142158 - rotY: 269.9931 - rotZ: 0.0167592838 - 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/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -4702,7 +1102,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d3e55b + GUID: f5bcec Grid: true GridProjection: false Hands: true @@ -4713,159 +1113,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Timeworn Brand (5) + Nickname: Encyclopedia (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 116.94001 - posY: 1.40205884 - posZ: 4.89999962 + posX: 88.05002 + posY: 1.408946 + posZ: 2.89002 rotX: 359.987427 - rotY: 269.999969 + rotY: 270.0 rotZ: 359.984528 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: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cf4571 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blessed Blade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.508297 - posY: 3.16578174 - posZ: -83.28038 - rotX: 0.020808829 - rotY: 269.999 - rotZ: 0.0167702846 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 537608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 85e7d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Accursed Fate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.6443253 - posY: 1.30579412 - posZ: -52.1594467 - rotX: 0.0208084453 - rotY: 269.999969 - rotZ: 0.0167711936 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448519 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4485': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 3bf831 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: False Awakening - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.374157 - posY: 3.52493143 - posZ: -65.7005 - rotX: 0.0124949375 - rotY: 270.0 - rotZ: 180.220673 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450606 + CardID: 450604 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -4882,7 +1147,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fcffa3 + GUID: '833501' Grid: true GridProjection: false Hands: true @@ -4893,78 +1158,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Scrapper (3) (Taboo) + Nickname: Higher Education (3) (Taboo) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -48.44427 - posY: 1.516405 - posZ: -51.0460434 - rotX: 0.0208013821 - rotY: 269.9996 - rotZ: 0.0167919081 + posX: -53.6853371 + posY: 1.3050797 + posZ: -50.7233467 + rotX: 0.02080844 + rotY: 269.999664 + rotZ: 0.0167704634 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 534902 + CardID: 430503 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Two Days Until Retirement - DragSelectable: true - GMNotes: '' - GUID: 5630c2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sergeant Monroe - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.17111 - posY: 2.37525 - posZ: -70.6252747 - rotX: 0.0211165547 - rotY: 270.0 - rotZ: 0.0169378966 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545303 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': + '2758': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -4972,7 +1192,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: db4a43 + GUID: 9591ac Grid: true GridProjection: false Hands: true @@ -4983,24 +1203,249 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Boxing Gloves + Nickname: Impromptu Barrier SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -53.2505722 - posY: 3.170734 - posZ: -68.2703 - rotX: 0.020815758 - rotY: 269.979553 - rotZ: 0.01676286 + 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: 368405 + CardID: 368842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: be4abe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Instinct (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40230942 + posZ: 9.500001 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450617 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e5d5f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ace in the Hole (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.0393143 + posY: 1.410598 + posZ: -51.1383972 + rotX: 0.0208083466 + rotY: 269.999664 + rotZ: 0.0167561844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 82775a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bandolier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230005 + posY: 1.34716654 + posZ: 75.9500046 + rotX: 0.0208153687 + rotY: 269.9694 + rotZ: 0.01676186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 370926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3709': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 576d70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Heirloom of Hyperborea + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.5228539 + posY: 2.19076967 + posZ: -89.842 + rotX: 359.9792 + rotY: 270.0 + rotZ: 180.005737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 77f92c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Expose Weakness (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.412048 + posZ: -8.60998249 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368422 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -5014,10 +1459,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Unidentified DragSelectable: true GMNotes: '' - GUID: d4fd4a + GUID: 565b6b Grid: true GridProjection: false Hands: true @@ -5028,24 +1473,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Shortcut + Nickname: Strange Solution 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 + 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: 538828 + CardID: 545300 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -5054,15 +1499,15 @@ ContainedObjects: '2662': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Secrets Revealed + Description: Concerned Brother DragSelectable: true GMNotes: '' - GUID: f375bf + GUID: 1bfb78 Grid: true GridProjection: false Hands: true @@ -5073,33 +1518,78 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Forbidden Tome (3) + Nickname: Randall Cho SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -54.6860657 - posY: 3.1647644 - posZ: -86.302124 - rotX: 0.0208092518 - rotY: 269.997253 - rotZ: 0.0167697333 + posX: -39.92781 + posY: 3.174865 + posZ: -71.04248 + rotX: 0.0208086073 + rotY: 270.0 + rotZ: 0.0167711042 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 374417 + CardID: 553600 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3744': + '5536': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507630340/07BD7D0674499D3B5B315239E1B9682B6E4D8285/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d89190 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: "R\xEDastrad (1)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4375868 + posY: 1.32786059 + posZ: -53.6961937 + rotX: 0.0208083875 + rotY: 270.0 + rotZ: 0.016771039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -5107,7 +1597,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 864fb6 + GUID: e503ce Grid: true GridProjection: false Hands: true @@ -5118,69 +1608,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Bait and Switch (3) + Nickname: Pilfer (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 + posX: -55.7308273 + posY: 3.28553247 + posZ: -71.91625 + rotX: 0.0208110027 + rotY: 269.9931 + rotZ: 0.0167684164 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 374532 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3745': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7b6ab5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Analytical Mind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.42199 - posY: 1.61407924 - posZ: -45.08632 - rotX: 0.362734765 - rotY: 270.015045 - rotZ: 359.680054 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226303 + CardID: 226360 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -5197,7 +1642,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 83d8d7 + GUID: f7a9ab Grid: true GridProjection: false Hands: true @@ -5208,195 +1653,15 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Leadership + Nickname: Armor of Ardennes (5) 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: 448029 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8e8a14 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spectral Razor - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.78683 - posY: 2.84537172 - posZ: -122.14035 - rotX: 0.0208078939 - rotY: 270.002258 - rotZ: 0.0167717487 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226357 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c92ea3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shotgun (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41719782 - posZ: -34.0699921 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230342 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8254d4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blinding Light (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40992677 - posZ: 5.190022 - rotX: 359.987427 - rotY: 270.000244 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314904 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3149': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bb501b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rise to the Occasion (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40975392 - posZ: -18.1000061 + posX: 95.87002 + posY: 1.419059 + posZ: -40.9699936 rotX: 359.987427 rotY: 270.000031 rotZ: 359.984558 @@ -5450,69 +1715,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 538808 + CardID: 553500 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5535': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Untranslated - DragSelectable: true - GMNotes: '' - GUID: 0a4d22 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Forbidden Tome - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.8815346 - posY: 3.28267622 - posZ: -78.03018 - rotX: 0.0208091978 - rotY: 269.997253 - rotZ: 0.0167690925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450618 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632247/1E1B6D93DBC33FA7C8DC93C7D06B7964CAD98AD0/ + NumHeight: 1 + NumWidth: 1 Type: 0 UniqueBack: false Description: '' DragSelectable: true GMNotes: '' - GUID: 5a51d1 + GUID: dfe1ee Grid: true GridProjection: false Hands: true @@ -5522,25 +1742,25 @@ ContainedObjects: LuaScript: '' LuaScriptState: '' MeasureMovement: false - Name: Card - Nickname: Sleight of Hand (Taboo) + Name: CardCustom + Nickname: Enchanted Armor (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -48.8116264 - posY: 1.40067625 - posZ: -51.3083763 - rotX: 0.0208088011 - rotY: 269.999756 - rotZ: 0.0167914126 + posX: 11.2345552 + posY: 1.32858825 + posZ: -50.958168 + rotX: 0.020808626 + rotY: 270.0001 + rotZ: 0.0167713985 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226306 + CardID: 226330 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -5557,7 +1777,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: eab2ed + GUID: 12660b Grid: true GridProjection: false Hands: true @@ -5568,33 +1788,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Teamwork + Nickname: .45 Automatic 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 + 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: 315255 + CardID: 226322 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3152': + '2263': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -5602,7 +1822,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a6af13 + GUID: 4d971e Grid: true GridProjection: false Hands: true @@ -5613,69 +1833,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Lupara (3) + Nickname: Survival Knife 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 + 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: 368713 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b18b33 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sneak Attack - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500061 - posY: 1.35141718 - posZ: 66.75 - rotX: 0.0208151527 - rotY: 269.9749 - rotZ: 0.0167625621 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368504 + CardID: 368505 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -5692,7 +1867,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 679b13 + GUID: 0f32e8 Grid: true GridProjection: false Hands: true @@ -5703,114 +1878,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Manual Dexterity + Nickname: Run For Your Life SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 64.07 - posY: 1.36640954 - posZ: 73.65 - rotX: 0.0208091382 + posY: 1.36573625 + posZ: 71.35 + rotX: 0.0208081417 rotY: 269.997284 - rotZ: 0.0167735945 + rotZ: 0.01677328 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 370422 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3704': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 321cb7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daisy's Tote Bag - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.1865 - posY: 1.29897082 - posZ: -74.796936 - rotX: 0.0208084341 - rotY: 270.0 - rotZ: 0.0167711563 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550810 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dc4a2c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Will to Survive - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.7706871 - posY: 3.28379083 - posZ: -72.23937 - rotX: 0.0147310672 - rotY: 270.0195 - rotZ: 0.0118822018 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266302 + CardID: 553203 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -5824,10 +1909,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Weakness DragSelectable: true GMNotes: '' - GUID: c5d8a9 + GUID: dd4a25 Grid: true GridProjection: false Hands: true @@ -5838,159 +1923,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Obscure Studies + Nickname: Whispers from the Deep SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -53.8592148 - posY: 3.16668487 - posZ: -81.36013 - rotX: 0.02081001 + posX: -47.5333481 + posY: 3.16565585 + posZ: -93.58446 + rotX: 0.020808652 rotY: 269.999329 - rotZ: 0.0167705044 + rotZ: 0.0167703945 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 312513 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Nightmare is Over - DragSelectable: true - GMNotes: '' - GUID: 73bccf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Penny White - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 35.93601 - posY: 1.35457325 - posZ: 68.1201248 - rotX: 0.0208114143 - rotY: 269.988525 - rotZ: 0.0167672429 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315257 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Stealing Time - DragSelectable: true - GMNotes: '' - GUID: 62d930 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Gold Pocket Watch (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749992 - posY: 1.41572177 - posZ: -34.200016 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379928 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3799': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Untranslated - DragSelectable: true - GMNotes: '' - GUID: b81dcf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Diary - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.2744427 - posY: 1.67508531 - posZ: 2.87569213 - rotX: 359.9198 - rotY: 269.9968 - rotZ: 0.01500414 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266324 + CardID: 553231 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -6007,7 +1957,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 823e49 + GUID: 33f906 Grid: true GridProjection: false Hands: true @@ -6018,519 +1968,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Tides of Fate + Nickname: Tempt Fate SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -66.3870544 - posY: 3.28106 - posZ: -75.48472 - rotX: 0.0208089966 - rotY: 269.999878 - rotZ: 0.01676939 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368528 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2acced - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ornate Bow (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.40143847 - posZ: 7.19999933 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550821 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 71a760 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Test of Will (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.65601 - posY: 3.28511643 - posZ: -70.35067 - rotX: 0.0147328787 - rotY: 270.0195 - rotZ: 0.0118839992 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 249d83 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Haunted - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.82835 - posY: 1.524788 - posZ: 81.67362 - rotX: 0.0176790953 - rotY: 269.9997 - rotZ: 0.0187719874 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230361 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7a33b2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shrivelling (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.75998 - posY: 1.37819648 - posZ: -45.41002 - rotX: 0.0208078716 - rotY: 269.999878 - rotZ: 0.0167721286 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266308 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4e405d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sea Change Harpoon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.90177 - posY: 3.28445745 - posZ: -76.90057 - rotX: 0.0208086148 - rotY: 269.999329 - rotZ: 0.01677068 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 376501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3765': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f93ea8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Voice of the Messenger - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.2586918 - posY: 1.357923 - posZ: -50.11138 - rotX: 0.0269877315 - rotY: 270.035828 - rotZ: 0.01620763 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368834 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 86b9c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Plucky (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.39672589 - posZ: 30.2000084 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448837 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4488': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a0060 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Book of Lore (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.6117477 - posY: 2.845372 - posZ: -123.871094 - rotX: 0.0208082739 + posX: -61.5000648 + posY: 1.33136272 + posZ: -57.75174 + rotX: 0.0208095517 rotY: 269.999939 - rotZ: 0.0167707168 + rotZ: 0.0167844351 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235644 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Poision. - DragSelectable: true - GMNotes: '' - GUID: 819f52 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Poisoned - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.88728 - posY: 3.174081 - posZ: -64.36427 - rotX: 0.0208086278 - rotY: 270.0 - rotZ: 0.0167710856 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368525 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 523b76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Moment of Respite (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39957726 - posZ: 14.1 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371907 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3719': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 033a35 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rex's Curse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.5889359 - posY: 1.49881017 - posZ: -49.1716652 - rotX: 0.0157422461 - rotY: 270.000061 - rotZ: 0.0127807 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449035 + CardID: 449034 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -6544,55 +1999,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Syndicate Assassin - DragSelectable: true - GMNotes: '' - GUID: 97a795 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Delilah O'Rourke (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.2241936 - posY: 1.69983244 - posZ: 15.1899557 - rotX: 359.9201 - rotY: 269.9999 - rotZ: 0.0168750733 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368426 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false Description: '' DragSelectable: true GMNotes: '' - GUID: 8f91ce + GUID: b45c82 Grid: true GridProjection: false Hands: true @@ -6603,795 +2013,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Research Librarian + Nickname: Garrote Wire (2) 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: 232950 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Smarter Than He Lets On - DragSelectable: true - GMNotes: '' - GUID: f14dce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Earl Sawyer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.5583954 - posY: 1.3651762 - posZ: -51.63776 - rotX: 0.0208091978 - rotY: 270.0 - rotZ: 0.0167707857 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 552220 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3698': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 49a91e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Roland's .38 Special - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 86.96031 - posY: 1.51700377 - posZ: -58.5377922 - rotX: 0.00607056357 - rotY: 269.999817 - rotZ: 0.0136969965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368423 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Working on Something Big - DragSelectable: true - GMNotes: '' - GUID: 234ff6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. William T. Maleson - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.63999271 - posY: 1.34207618 - posZ: 78.25001 - rotX: 0.02081484 - rotY: 269.978821 - rotZ: 0.016766822 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274003 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f4dd3d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shocking Discovery - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.0190773 - posY: 1.36276233 - posZ: -66.7568359 - rotX: 0.0208035558 - rotY: 270.019226 - rotZ: 0.016777629 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5518': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '952924' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Howl of Clyhf'ford - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.141777 - posY: 1.54049265 - posZ: -39.6801033 - rotX: 359.920135 - rotY: 269.981354 - rotZ: 1.29702878 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368848 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6aae86 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Close Call (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40603161 - posZ: -4.30000353 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368822 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1b76c9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scavenging - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.6326675 - posY: 1.36736 - posZ: -66.1336441 - rotX: 0.0207946468 - rotY: 270.040375 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230354 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 296dc8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Book of Shadows (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41923249 - posZ: -29.3099937 - rotX: 359.987427 + posX: -48.2366447 + posY: 1.30114961 + posZ: -71.01385 + rotX: 0.0208082478 rotY: 270.000031 - rotZ: 359.984558 + rotZ: 0.0167703424 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 545310 + CardID: 377537 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 20645e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Counterpunch - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.9353943 - posY: 3.285697 - posZ: -71.07089 - rotX: 0.020814443 - rotY: 269.979553 - rotZ: 0.0167631917 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368433 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Assistant Curator - DragSelectable: true - GMNotes: '' - GUID: 27e7b3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Elli Horowitz - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -10.0399933 - posY: 1.34353435 - posZ: 87.4500046 - rotX: 0.0208115932 - rotY: 269.984833 - rotZ: 0.0167669188 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450622 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Seeker - DragSelectable: true - GMNotes: '' - GUID: a2136a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.10896 - posY: 1.30628693 - posZ: -47.3140564 - rotX: 0.0208085272 - rotY: 269.999664 - rotZ: 0.016770415 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262204 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mind-Expanding Ideas - DragSelectable: true - GMNotes: '' - GUID: 344d98 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pnakotic Manuscripts (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.4213537 - posZ: -43.109993 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550807 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 59e40d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mysterious Raven - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.5242081 - posY: 3.2846055 - posZ: -72.25517 - rotX: 0.0147317043 - rotY: 270.0195 - rotZ: 0.0118827661 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368512 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0ab3f1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Knife - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.2699966 - posY: 1.36730623 - posZ: 85.15 - rotX: 0.0208092928 - rotY: 269.994049 - rotZ: 0.0167697817 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 452504 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4525': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Chained to the Waking World - DragSelectable: true - GMNotes: '' - GUID: d253a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Randolph Carter - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.5121937 - posY: 2.37383485 - posZ: -80.5855255 - rotX: 0.0208091475 - rotY: 270.0 - rotZ: 0.0167707652 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551303 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: bc4a74 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Foul Odor - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.7847195 - posY: 1.475488 - posZ: 8.0802145 - rotX: 359.920135 - rotY: 270.0 - rotZ: 0.01687402 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368711 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 256da2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Eavesdrop - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35276365 - posZ: 71.35 - rotX: 0.0208145473 - rotY: 269.974884 - rotZ: 0.0167638231 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377141 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3771': + '3775': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ @@ -7402,7 +2047,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 275dc3 + GUID: 14c396 Grid: true GridProjection: false Hands: true @@ -7413,204 +2058,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Bought in Blood + Nickname: Serpents of Yig 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 + 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: 538803 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e69708 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Enlightenment - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.78602 - posY: 3.28266287 - posZ: -75.9813461 - rotX: 0.0208097789 - rotY: 269.997223 - rotZ: 0.0167707633 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431008 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2737': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c70ad8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Interrogate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300068 - posY: 1.342342 - posZ: 55.2500038 - rotX: 0.02079588 - rotY: 270.027039 - rotZ: 0.0167742781 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440926 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4409': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ef7c11 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Solemn Vow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.1418 - posY: 1.403798 - posZ: 21.0005112 - rotX: 359.9877 - rotY: 270.0044 - rotZ: 359.9829 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448838 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4488': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ff59dd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Surprising Find (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.5645676 - posY: 1.299145 - posZ: -77.45552 - rotX: 0.0208085515 - rotY: 270.0 - rotZ: 0.016771242 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230352 + CardID: 230330 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -7624,10 +2089,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Gift of the Homunculi + Description: Speaker to the Dead DragSelectable: true GMNotes: '' - GUID: 6bae15 + GUID: 53867b Grid: true GridProjection: false Hands: true @@ -7638,168 +2103,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Jewel of Aureolus (3) + Nickname: Alyssa Graham 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 + 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: 368430 + CardID: 226310 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2304': + '2263': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Acquisitions and Solicitation - DragSelectable: true - GMNotes: '' - GUID: 4a2a36 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Charles Ross, Esq. - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000225 - posY: 1.33736348 - posZ: 62.1499977 - rotX: 0.02081471 - rotY: 269.978821 - rotZ: 0.0167644937 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371565 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3715': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hour of the Huntress - DragSelectable: true - GMNotes: '' - GUID: c729ab - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Green Man Medallion - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.55286 - posY: 1.52031779 - posZ: -49.5625725 - rotX: 0.0170907769 - rotY: 270.023438 - rotZ: 0.0156170158 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450613 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Petrus de Dacia Translation - DragSelectable: true - GMNotes: '' - GUID: 9fa2a5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Necronomicon (5) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.93347 - posY: 1.44876873 - posZ: -51.3429031 - rotX: 0.020808002 - rotY: 269.999725 - rotZ: 0.0167890638 - 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/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -7807,7 +2137,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 9d6e9a + GUID: 831b6b Grid: true GridProjection: false Hands: true @@ -7818,513 +2148,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Nautical Prowess + Nickname: Prepared for the Worst 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: 550828 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3bbc0b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quick Learner (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.58581 - posY: 3.28476167 - posZ: -70.34595 - rotX: 0.0144211575 - rotY: 270.0191 - rotZ: 0.0116325384 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538621 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0b963c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cheap Shot (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.01796 - posY: 3.28449917 - posZ: -73.74907 - rotX: 0.0208121 - rotY: 269.9931 - rotZ: 0.0167641789 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 295504 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2955': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f3b3a9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gilded Volto - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.8639259 - posY: 3.18059015 - posZ: -97.1056061 - rotX: 359.503632 - rotY: 269.998138 - rotZ: 0.0167150069 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368522 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 324e49 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Elder Sign Amulet (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39833653 - posZ: 18.7000027 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538818 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fab3a9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Library Docent (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.804512 - posY: 3.16686463 - posZ: -83.314 - rotX: 0.0208091158 - rotY: 269.997253 - rotZ: 0.0167693384 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368804 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1fe462 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Last Chance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36241734 - posZ: 78.25 - rotX: 0.02081953 - rotY: 269.9588 - rotZ: 0.0167597178 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545312 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b0f86 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Get over here!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.1554565 - posY: 3.28587174 - posZ: -70.16612 - rotX: 0.0208143238 - rotY: 269.979553 - rotZ: 0.016763214 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266322 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 17d34b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Faustian Bargain - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.52753 - posY: 3.28373384 - posZ: -73.61414 - rotX: 0.0208087936 - rotY: 269.999817 - rotZ: 0.0167692918 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538709 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6c3156 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crystal Pendulum - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.5530319 - posY: 3.283612 - posZ: -71.50618 - rotX: 0.0208110511 - rotY: 270.001343 - rotZ: 0.01676353 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550826 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 04d33d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky! (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.04656 - posY: 3.28507066 - posZ: -68.765274 - rotX: 0.0147309937 - rotY: 270.0195 - rotZ: 0.0118825054 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235649 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9dc3d4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Expedition Journal - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.3065948 - posY: 3.16604829 - posZ: -95.28326 - rotX: 0.0208080523 - rotY: 270.0001 - rotZ: 0.0167709477 + 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 @@ -8375,13 +2210,58 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 314000 + CardID: 371209 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3140': + '3712': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cd94e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Searching for Izzie + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.87588 + posY: 1.533313 + posZ: -49.37355 + rotX: 0.0206230525 + rotY: 270.0019 + rotZ: 0.0398144238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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/ @@ -8392,7 +2272,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 53d765 + GUID: 76147b Grid: true GridProjection: false Hands: true @@ -8403,75 +2283,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Blood Eclipse (3) + Nickname: "\"I've had worse\u2026\" (2)" 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: 430649 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d48b25 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Higher Education (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41080713 - posZ: -4.009982 - rotX: 359.987427 + posX: -63.3595657 + posY: 3.52341747 + posZ: -65.6875458 + rotX: 0.01074947 rotY: 270.0 - rotZ: 359.984528 + rotZ: 180.018921 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 315233 + CardID: 368708 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3152': + '2616': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ @@ -8479,10 +2314,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: The Ferryman's Pay + Description: '' DragSelectable: true GMNotes: '' - GUID: 1dbc95 + GUID: f6ff32 Grid: true GridProjection: false Hands: true @@ -8493,18 +2328,153 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Charon's Obol (1) + Nickname: Narrow Escape 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 + 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: 545329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab51ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Physical Training (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.10324 + posY: 3.1667304 + posZ: -77.90403 + rotX: 0.0208082441 + rotY: 270.0 + rotZ: 0.0167709123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c70ad8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Interrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300068 + posY: 1.342342 + posZ: 55.2500038 + rotX: 0.02079588 + rotY: 270.027039 + rotZ: 0.0167742781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: A Gift Unlooked For + DragSelectable: true + GMNotes: '' + GUID: f295d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clasp of Black Onyx + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.1468964 + posY: 2.3714323 + posZ: -85.77982 + rotX: 0.0208088849 + rotY: 270.0 + rotZ: 0.01677082 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -8555,148 +2525,13 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230301 + CardID: 277910 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a5c780 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Enraptured - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000046 - posY: 1.33922434 - posZ: 82.85 - rotX: 0.0208174363 - rotY: 269.971 - rotZ: 0.0167632867 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368827 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e66002 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lantern - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.57 - posY: 1.357928 - posZ: 71.35 - rotX: 0.020816328 - rotY: 269.970184 - rotZ: 0.0167607069 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431111 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2698': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 3b3c0a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Drawing the Sign - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.6330948 - posY: 1.51341081 - posZ: 71.33267 - rotX: 0.020565819 - rotY: 270.0009 - rotZ: 0.01678212 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293014 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2930': + '2779': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ @@ -8707,7 +2542,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: f91e14 + GUID: 6d9881 Grid: true GridProjection: false Hands: true @@ -8718,429 +2553,69 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Guiding Spirit (1) + Nickname: Drawing Thin 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: 527606 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2742': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e2767a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cunning - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.35871112 - posZ: 87.45 - rotX: 0.02080716 - rotY: 270.000122 - rotZ: 0.0167723987 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 88ee43 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hypochondria - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 75.0673 - posY: 1.53452182 - posZ: 81.82477 - rotX: 0.0157311484 - rotY: 269.999634 - rotZ: 0.018423602 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368410 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f763e8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unearth the Ancients - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.239993 - posY: 1.34196448 - posZ: 73.65001 - rotX: 0.02081152 - rotY: 269.9864 - rotZ: 0.0167682283 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430809 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2732': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 13413d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Connect the Dots - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.24000168 - posY: 1.33590531 - posZ: 52.95 - rotX: 0.02081261 - rotY: 269.9864 - rotZ: 0.0167691931 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226324 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5cd622 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: First Aid - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230006 - posY: 1.34783983 - posZ: 78.25 - rotX: 0.02081828 - rotY: 269.9694 - rotZ: 0.016761452 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545214 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 180b5b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sell Your Soul - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.9590836 - posY: 3.16908 - posZ: -74.77038 - rotX: 0.0208086688 - rotY: 269.999756 - rotZ: 0.0167709328 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 275733 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2757': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Spell. - DragSelectable: true - GMNotes: '' - GUID: 863f1a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spectral Web - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.35961 - posY: 3.6559422 - posZ: -65.68756 - rotX: 0.0124424249 - rotY: 269.999939 - rotZ: 180.020645 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233135 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2331': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Ruthless Tactician - DragSelectable: true - GMNotes: '' - GUID: 7f7ecc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Naomi O'Bannion - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.6088257 - posY: 2.373914 - posZ: -84.50722 - rotX: 0.020808164 - rotY: 270.0 - rotZ: 0.0484022573 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315247 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ce1b89 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: High Roller (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40827727 - posZ: -6.60000229 - rotX: 359.987427 + posX: -27.6383247 + posY: 1.33034 + posZ: 64.20871 + rotX: 0.0208067931 rotY: 269.999878 - rotZ: 359.984528 + rotZ: 0.01677723 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230339 + CardID: 550805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5888da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Keyring + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.5689125 + posY: 3.28526974 + posZ: -69.90754 + rotX: 0.0144240744 + rotY: 270.0191 + rotZ: 0.0116343489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230318 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -9157,7 +2632,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e27b3c + GUID: 7307c4 Grid: true GridProjection: false Hands: true @@ -9168,648 +2643,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Recharge (2) + Nickname: Arcane Initiate SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -49.213913 - posY: 3.16716123 - posZ: -86.69394 - rotX: 0.020808775 - rotY: 270.0 - rotZ: 0.0167716146 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 541200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5412': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830597915335413/F6B6100F5713A33245CFBB6F1D7316AA2DD0F760/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Advanced - DragSelectable: true - GMNotes: '' - GUID: 9c4900 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: On the Lam - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.8911133 - posY: 1.29766488 - posZ: -80.86572 - rotX: 0.0208081119 - rotY: 270.000061 - rotZ: 0.01677094 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374717 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3747': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d8705c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Angered Spirits - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.7983246 - posY: 1.64011288 - posZ: -45.68833 - rotX: 0.1292641 - rotY: 270.009277 - rotZ: 359.981171 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293016 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2930': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Survivor - DragSelectable: true - GMNotes: '' - GUID: 5fae20 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grisly Totem (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.07575 - posY: 1.36818731 - posZ: -54.3571167 - rotX: 0.0208107289 - rotY: 270.0 - rotZ: 0.0167712681 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538627 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7baf75 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Backstab (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.1333046 - posY: 3.285902 - posZ: -69.16647 - rotX: 0.0208113585 - rotY: 269.9931 - rotZ: 0.016765777 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5505': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843945794/C608E9B39B1E0B4267BCCC9A5B308495278702C0/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 27ff2d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Third Time's a Charm (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.545 - posY: 3.28549743 - posZ: -71.2842255 - rotX: 0.02080856 - rotY: 269.999969 - rotZ: 0.0167710539 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545322 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 037b2e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lesson Learned (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.48458 - posY: 3.169242 - posZ: -72.9249 - rotX: 0.02080837 - rotY: 270.0 - rotZ: 0.0167705752 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448936 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4489': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Abandoned by the Gods - DragSelectable: true - GMNotes: '' - GUID: c0d236 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empty Vessel (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.6764164 - posY: 1.68283987 - posZ: -11.5100527 - rotX: 359.9201 - rotY: 269.999969 - rotZ: 0.0168763418 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Elite. - DragSelectable: true - GMNotes: '' - GUID: 6720ef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Man in the Pallid Mask - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -22.02582 - posY: 2.37551236 - posZ: -83.66287 - rotX: 0.020809222 - rotY: 270.0 - rotZ: 0.0167703032 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277509 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2775': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a00fca - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Banish (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -26.6736889 - posY: 1.566863 - posZ: 70.85531 - rotX: 0.01997196 - rotY: 269.999084 - rotZ: 0.0208501965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538826 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 96b5ed - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Perception (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.4664268 - posY: 3.16685772 - posZ: -84.75948 - rotX: 0.02080912 - rotY: 269.997253 - rotZ: 0.0167696644 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527235 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5272': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ab4fb3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Summoned Hound (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.6454124 - posY: 1.29864454 - posZ: -75.34238 - rotX: 0.0208087377 - rotY: 269.999756 - rotZ: 0.01677042 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448735 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4487': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d6f6f1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nightmare Bauble (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -44.8109741 - posY: 2.485328 - posZ: -81.0424 - rotX: 0.0 - rotY: 270.0 - rotZ: 22.62915 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374834 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9ef062 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Improvisation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.76934 - posY: 0.6104428 - posZ: -82.43481 - rotX: 358.873474 - rotY: 269.987366 - rotZ: 359.992035 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527312 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5273': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 122e98 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucid Dreaming (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.90816 - posY: 1.29874861 - posZ: -77.14222 - rotX: 0.0208085887 - rotY: 270.0 - rotZ: 0.0167711675 + posX: -27.6670818 + posY: 2.845372 + posZ: -145.168243 + rotX: 0.0208097361 + rotY: 269.99588 + rotZ: 0.0167698245 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -9860,16 +2705,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226312 + CardID: 376840 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2263': + '3768': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -9877,7 +2722,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: acf2b0 + GUID: ecd087 Grid: true GridProjection: false Hands: true @@ -9888,384 +2733,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: '"If it bleeds..."' + Nickname: Caught Red-Handed 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: 538629 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 91da6b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Beretta M1918 (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.3051529 - posY: 3.285303 - posZ: -69.7636 - rotX: 0.0208112039 - rotY: 269.9931 - rotZ: 0.016766414 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 278010 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2780': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Fearless Flatfoot - DragSelectable: true - GMNotes: '' - GUID: ae20e0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alice Luxley - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.431 - posY: 1.32506227 - posZ: 54.60595 - rotX: 0.0208093189 - rotY: 269.99942 - rotZ: 0.0167746153 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380027 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d3dcf1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Let God sort them out..."' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1617146 - posY: 1.66998422 - posZ: -1.0745914 - rotX: 359.9013 - rotY: 269.995422 - rotZ: 0.0255841073 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430637 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 378e84 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Magnifying Glass (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40274215 - posZ: 25.8900242 - rotX: 359.987427 + posX: -63.359684 + posY: 3.53130126 + posZ: -65.6879654 + rotX: 0.0167008284 rotY: 269.999939 - rotZ: 359.984558 + rotZ: 180.0173 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 380128 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3801': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: db90e2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ethereal Form - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1006126 - posY: 1.52393556 - posZ: -4.153924 - rotX: 359.924347 - rotY: 270.001984 - rotZ: 0.0104675805 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545327 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 14dcc4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dynamite Blast (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.6857872 - posY: 3.16924047 - posZ: -74.11199 - rotX: 0.0208083056 - rotY: 270.0 - rotZ: 0.0167706981 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545313 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '273584' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Glory - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.24709 - posY: 3.28623486 - posZ: -70.02708 - rotX: 0.0208144039 - rotY: 269.979553 - rotZ: 0.0167632941 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Head Librarian - DragSelectable: true - GMNotes: '' - GUID: 66197b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Henry Armitage - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.2092628 - posY: 2.37336755 - posZ: -67.14607 - rotX: 0.020810511 - rotY: 270.000031 - rotZ: 0.0167691223 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315246 + CardID: 315251 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -10282,7 +2767,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2f4db2 + GUID: d7dbac Grid: true GridProjection: false Hands: true @@ -10293,249 +2778,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Pickpocketing (2) + Nickname: Streetwise (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 102.75 - posY: 1.40765679 - posZ: -4.300003 + posY: 1.41199958 + posZ: -20.4000072 rotX: 359.987427 rotY: 269.999878 - rotZ: 359.984528 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 312509 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Elegant and Elusive - DragSelectable: true - GMNotes: '' - GUID: 83b588 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: August Lindquist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.2187462 - posY: 1.36356008 - posZ: -57.5782471 - rotX: 0.0208096523 - rotY: 270.000031 - rotZ: 0.0167725645 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235822 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2358': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Madness. Paradox. - DragSelectable: true - GMNotes: '' - GUID: d64b8f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Out of Body Experience - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.1434669 - posY: 3.17477942 - posZ: -63.370575 - rotX: 0.0208083838 - rotY: 269.999847 - rotZ: 0.0167704877 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538730 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f00301 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ineffable Truth (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -65.64664 - posY: 3.28367877 - posZ: -69.09282 - rotX: 0.0208081361 - rotY: 270.001343 - rotZ: 0.016772 - 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e58d2a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 230319 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a927c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scrying - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.33540833 - posZ: 78.25 - rotX: 0.0207991749 - rotY: 270.031281 - rotZ: 0.0167850573 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226329 + CardID: 226328 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -10552,7 +2812,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e25dc1 + GUID: b0f851 Grid: true GridProjection: false Hands: true @@ -10563,33 +2823,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: True Grit + Nickname: .32 Colt SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 9.230007 - posY: 1.34380043 - posZ: 64.4500046 - rotX: 0.0208176039 + posX: 9.230006 + posY: 1.3444736 + posZ: 66.75001 + rotX: 0.0208173022 rotY: 269.9694 - rotZ: 0.0167631973 + rotZ: 0.0167636052 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368815 + CardID: 368407 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2097': + '2304': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -10597,7 +2857,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 59d89b + GUID: f69e10 Grid: true GridProjection: false Hands: true @@ -10608,18 +2868,333 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Oops! + Nickname: Seeking Answers 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 + 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: 538718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e84eff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Inspiration (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.8112869 + posY: 3.284758 + posZ: -69.80476 + rotX: 0.0208098479 + rotY: 270.001343 + rotZ: 0.01676624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450621 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 19b705 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.74354 + posY: 1.37190509 + posZ: -50.9488258 + rotX: 0.0166471563 + rotY: 270.0 + rotZ: 0.0134154055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4167c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: True Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.160006255 + posY: 1.34454572 + posZ: 78.25001 + rotX: 0.02081884 + rotY: 269.9646 + rotZ: 0.0167625323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c8505c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrapper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.41421 + posY: 3.284829 + posZ: -71.58872 + rotX: 0.0144232074 + rotY: 270.0191 + rotZ: 0.0116329072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c026c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .32 Colt (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7927551 + posY: 1.36278141 + posZ: -59.5280762 + rotX: 0.020805249 + rotY: 270.017761 + rotZ: 0.0167758446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Painted World + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.05049372 + posY: 0.475667953 + posZ: -49.01768 + rotX: -4.56944e-06 + rotY: 269.999939 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444260 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3799': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f08934 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Insight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.14029932 + posY: 1.58196938 + posZ: -77.8714752 + rotX: 7.61785269 + rotY: 269.935059 + rotZ: 0.0212708171 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -10670,24 +3245,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 441027 + CardID: 230302 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4410': + '2303': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Of Nothing at All + Description: '' DragSelectable: true GMNotes: '' - GUID: 9b0dcf + GUID: 59b24f Grid: true GridProjection: false Hands: true @@ -10698,24 +3273,294 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Pendant of the Queen + Nickname: Defiance 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 + 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: 538822 + CardID: 538706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b67371 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clairvoyance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.44816 + posY: 3.28275824 + posZ: -70.06975 + rotX: 0.0208116267 + rotY: 270.001343 + rotZ: 0.0167635847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bf3dd1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Defiance (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40744519 + posZ: 14.3900223 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Enemy + DragSelectable: true + GMNotes: '' + GUID: 4ea68b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 276300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2763': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e470cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Premonition + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33798957 + posZ: 82.85 + rotX: 0.02081856 + rotY: 269.96698 + rotZ: 0.0167606138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 26853e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Word of Command (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.18796 + posY: 1.29924214 + posZ: -71.38749 + rotX: 0.020774316 + rotY: 270.000275 + rotZ: 0.0167474784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4477': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ea8324 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Expeditious Retreat (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.8898125 + posY: 1.29929137 + posZ: -71.58855 + rotX: 0.0208090525 + rotY: 269.999939 + rotZ: 0.0167720746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538821 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -10729,10 +3574,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Hunter of Rare Books DragSelectable: true GMNotes: '' - GUID: 870bdc + GUID: 854c79 Grid: true GridProjection: false Hands: true @@ -10743,41 +3588,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Cryptic Writings (2) + Nickname: Whitton Greene (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -56.6345139 - posY: 3.16492057 - posZ: -82.63101 - rotX: 0.0208092444 + posX: -51.42091 + posY: 3.16698813 + posZ: -83.21507 + rotX: 0.02080918 rotY: 269.997253 - rotZ: 0.01676957 + rotZ: 0.0167694315 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266316 + CardID: 318703 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '3187': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Untranslated + Description: The Fateful Step DragSelectable: true GMNotes: '' - GUID: fbfa24 + GUID: 52a677 Grid: true GridProjection: false Hands: true @@ -10788,105 +3633,15 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Cryptic Grimoire + Nickname: Ace of Rods (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -51.5655136 - posY: 3.16720319 - posZ: -83.0385742 - rotX: 0.0208087545 - rotY: 269.999 - rotZ: 0.0167708974 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 441023 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4410': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1258c6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Logical Reasoning (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.24739 - posY: 1.45532513 - posZ: 13.47808 - rotX: 359.984955 - rotY: 270.006531 - rotZ: 359.941345 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315244 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '... Or Are They?' - DragSelectable: true - GMNotes: '' - GUID: 9dd911 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky Dice (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40517533 - posZ: 4.89999962 + posX: 116.94 + posY: 1.39461422 + posZ: 32.5000076 rotX: 359.987427 rotY: 269.999878 rotZ: 359.984528 @@ -10895,7 +3650,502 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 545205 + CardID: 235840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2358': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Repossess the Past + DragSelectable: true + GMNotes: '' + GUID: 87718c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5658951 + posY: 2.845377 + posZ: -108.118523 + rotX: 0.0208081175 + rotY: 270.000061 + rotZ: 0.0167709235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d12359 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Detached from Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.690937 + posY: 1.366647 + posZ: -53.89291 + rotX: 0.0208033863 + rotY: 270.0197 + rotZ: 0.0167779326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226352 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cd7b97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stand Together (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.92969 + posY: 3.39739347 + posZ: -58.047348 + rotX: 0.0208225716 + rotY: 269.9766 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a565d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shroud of Shadows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45764 + posY: 3.51918173 + posZ: -65.76698 + rotX: 0.0166519955 + rotY: 270.0 + rotZ: 180.007111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450618 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5a51d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sleight of Hand (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8116264 + posY: 1.40067625 + posZ: -51.3083763 + rotX: 0.0208088011 + rotY: 269.999756 + rotZ: 0.0167914126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0a4db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ritual Candles + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.3367548 + posZ: 82.85 + rotX: 0.0207984913 + rotY: 270.0313 + rotZ: 0.01678511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab37af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scene of the Crime + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6299963 + posY: 1.34166884 + posZ: 52.9499969 + rotX: 0.0207941569 + rotY: 270.027039 + rotZ: 0.0167764034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 95272b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deduction (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40646446 + posZ: 12.090023 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7d3a27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: All In (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41820335 + posZ: -43.400013 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: de40c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Copycat (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.63346 + posY: 3.282604 + posZ: -69.29911 + rotX: 0.0208113231 + rotY: 269.9931 + rotZ: 0.0167662259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 719a45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "D\xE9j\xE0 Vu (5)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.63066 + posY: 3.28594518 + posZ: -70.2820053 + rotX: 0.0208004341 + rotY: 270.027527 + rotZ: 0.01678116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545209 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -10909,10 +4159,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Permanent DragSelectable: true GMNotes: '' - GUID: 8dda2d + GUID: 2ebdf1 Grid: true GridProjection: false Hands: true @@ -10923,24 +4173,2499 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Colt Vest Pocket (2) + Nickname: On Your Own (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -52.0583534 - posY: 3.16848969 - posZ: -77.61848 - rotX: 0.0208065715 + posX: -51.24509 + posY: 3.16501665 + posZ: -90.3928757 + rotX: 0.0208078139 rotY: 270.0092 - rotZ: 0.0167740323 + rotZ: 0.0167691819 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 379929 + CardID: 368800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.4491959 + posY: 1.36816967 + posZ: -59.8729668 + rotX: 0.02079764 + rotY: 270.040222 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 23c3e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hyperawareness (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40770531 + posZ: 7.49002075 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230361 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7a33b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shrivelling (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.75998 + posY: 1.37819648 + posZ: -45.41002 + rotX: 0.0208078716 + rotY: 269.999878 + rotZ: 0.0167721286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 2204cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Self-Destructive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.36467 + posY: 3.17273164 + posZ: -82.1646347 + rotX: 0.0208081584 + rotY: 270.000977 + rotZ: 0.0167709664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2777': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Aspiring Actor + DragSelectable: true + GMNotes: '' + GUID: 9df9df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Henry Wan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.642086 + posY: 1.33200514 + posZ: 73.6239853 + rotX: 0.020809764 + rotY: 269.999359 + rotZ: 0.0167665128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68744b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35220218 + posZ: 73.65 + rotX: 0.02081169 + rotY: 269.98877 + rotZ: 0.0167679638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce1b89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: High Roller (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40827727 + posZ: -6.60000229 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527552 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 16ad5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baron Samedi + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.214624 + posY: 1.37499976 + posZ: -84.58808 + rotX: 0.0183348916 + rotY: 269.969818 + rotZ: 0.016028095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da207b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 538728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0ee874 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Azure Flame (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.0980644 + posY: 3.284184 + posZ: -70.91383 + rotX: 0.020808937 + rotY: 270.001343 + rotZ: 0.0167690348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 39452d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fine Print + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.3330345 + posY: 3.16976333 + posZ: -76.16513 + rotX: 0.02080835 + rotY: 269.999878 + rotZ: 0.0167706367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Survivor + DragSelectable: true + GMNotes: '' + GUID: 5fae20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grisly Totem (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.07575 + posY: 1.36818731 + posZ: -54.3571167 + rotX: 0.0208107289 + rotY: 270.0 + rotZ: 0.0167712681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0db666 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Borrowed Time (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41324031 + posZ: -25.0000019 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368429 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d6771f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fieldwork + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000225 + posY: 1.33803678 + posZ: 64.45 + rotX: 0.02081346 + rotY: 269.978821 + rotZ: 0.0167630222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Let Your Arrow Fly True + DragSelectable: true + GMNotes: '' + GUID: c4d436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ace of Swords (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40354943 + posZ: 16.5300255 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Untranslated + DragSelectable: true + GMNotes: '' + GUID: 0a4d22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Forbidden Tome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.8815346 + posY: 3.28267622 + posZ: -78.03018 + rotX: 0.0208091978 + rotY: 269.997253 + rotZ: 0.0167690925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 869d4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trial by Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.71913 + posY: 1.365251 + posZ: 65.1638641 + rotX: 0.0208075251 + rotY: 269.9998 + rotZ: 0.01677034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5558f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mists of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33069563 + posZ: 62.15 + rotX: 0.020798916 + rotY: 270.0313 + rotZ: 0.01678454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd130e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hiding Spot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.7834854 + posY: 1.36334467 + posZ: -68.49766 + rotX: 0.0207973365 + rotY: 270.040466 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ef062 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Improvisation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.76934 + posY: 0.6104428 + posZ: -82.43481 + rotX: 358.873474 + rotY: 269.987366 + rotZ: 359.992035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4224db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Time Warp (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41054726 + posZ: 2.89002085 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '591789' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Recharge (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.2989578 + posY: 3.28354979 + posZ: -72.02704 + rotX: 0.02080917 + rotY: 270.001343 + rotZ: 0.0167687181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3586e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Occult Evidence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.41361 + posY: 1.363961 + posZ: -67.13534 + rotX: 0.0208034515 + rotY: 270.0197 + rotZ: 0.01677786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8cc0a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -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: 450622 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Seeker + DragSelectable: true + GMNotes: '' + GUID: a2136a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.10896 + posY: 1.30628693 + posZ: -47.3140564 + rotX: 0.0208085272 + rotY: 269.999664 + rotZ: 0.016770415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a973aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Streetwise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.8479958 + posY: 3.283511 + posZ: -70.64353 + rotX: 0.0208132938 + rotY: 269.9931 + rotZ: 0.01676096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '276477' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Money Talks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500023 + posY: 1.35747635 + posZ: 87.45 + rotX: 0.02081571 + rotY: 269.9749 + rotZ: 0.016764652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: 'Lookin'' Out For #1' + DragSelectable: true + GMNotes: '' + GUID: b51688 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Joey "The Rat" Vigil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500065 + posY: 1.34748948 + posZ: 57.5500031 + rotX: 0.0208110325 + rotY: 269.9888 + rotZ: 0.0167695936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c859f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Painkillers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36663294 + posZ: 82.85 + rotX: 0.0208111759 + rotY: 269.99408 + rotZ: 0.01677131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ffa4f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 368408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8cf335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23999333 + posY: 1.343311 + posZ: 78.25001 + rotX: 0.02081162 + rotY: 269.986359 + rotZ: 0.016769629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Stamina + DragSelectable: true + GMNotes: '' + GUID: ffe4dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Empower Self (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.621273 + posY: 1.57495975 + posZ: 9.329683 + rotX: 359.9201 + rotY: 270.008545 + rotZ: 0.0168651175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450616 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '308967' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Quick Thinking (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8120155 + posY: 1.43324757 + posZ: -51.2351761 + rotX: 0.328339547 + rotY: 270.0354 + rotZ: 0.2912413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 15643b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hard Knocks (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40579569 + posZ: 2.59999871 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: He Was Never There + DragSelectable: true + GMNotes: '' + GUID: ad18a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Red-Gloved Man (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.40019763 + posZ: 11.8000021 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07001 + posY: 1.370449 + posZ: 87.4500046 + rotX: 0.02080942 + rotY: 269.9973 + rotZ: 0.016771527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c803ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Infighting (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41099477 + posZ: -22.7000084 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5f19e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sneak Attack (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40703642 + posZ: -2.00000238 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2e93fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 449037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4490': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4f5f0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sawed-Off Shotgun (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.9328461 + posY: 1.299728 + posZ: -73.765686 + rotX: 0.02080911 + rotY: 270.0 + rotZ: 0.0167716872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f91ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.640003 + posY: 1.34005642 + posZ: 71.35 + rotX: 0.0208149925 + rotY: 269.978821 + rotZ: 0.0167664737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448936 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4489': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Abandoned by the Gods + DragSelectable: true + GMNotes: '' + GUID: c0d236 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Empty Vessel (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6764164 + posY: 1.68283987 + posZ: -11.5100527 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168763418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2779': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a57f19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Meat Cleaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.6913071 + posY: 1.33000863 + posZ: 66.8643341 + rotX: 0.020810809 + rotY: 269.9992 + rotZ: 0.0167672466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 491c09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Righteous Hunt (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45762 + posY: 3.52424741 + posZ: -65.76757 + rotX: 0.0166513 + rotY: 270.0 + rotZ: 180.192642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9c32e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sword Cane + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -66.9723053 + posY: 3.28151178 + posZ: -76.17098 + rotX: 0.0208084118 + rotY: 269.999878 + rotZ: 0.0167712439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: b2e5b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arrogance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.2983665 + posY: 3.28459358 + posZ: -71.865715 + rotX: 0.0208144076 + rotY: 269.9931 + rotZ: 0.01675927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ef43db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Robes of Endless Night (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.73192 + posY: 3.28469062 + posZ: -74.45363 + rotX: 0.0208100285 + rotY: 270.001343 + rotZ: 0.0167669561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 546917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Monster. Nightgaunt. Power. + DragSelectable: true + GMNotes: '' + GUID: cf96b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Summoned Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.42212 + posY: 2.36338925 + posZ: -96.24052 + rotX: 0.02081042 + rotY: 270.000031 + rotZ: 0.0167689342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Professor of Archaeology + DragSelectable: true + GMNotes: '' + GUID: f03306 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Francis Morgan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.4931259 + posY: 2.37332487 + posZ: -69.13057 + rotX: 0.02081106 + rotY: 269.998016 + rotZ: 0.0167686362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3146324 + posY: 1.3624531 + posZ: -65.92177 + rotX: 0.020795932 + rotY: 270.040283 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3788': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 785f68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hoods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.60880375 + posY: 1.4786005 + posZ: -49.8665657 + rotX: 0.0228390861 + rotY: 269.882355 + rotZ: 4.91904736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8d6ae6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Safeguard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.90727 + posY: 3.285945 + posZ: -71.23404 + rotX: 0.02081431 + rotY: 269.979553 + rotZ: 0.0167632084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c1ce8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.38262 + posY: 2.36265874 + posZ: -70.43153 + rotX: 0.0208098218 + rotY: 270.0 + rotZ: 359.983521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 334f03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Resourceful + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 553215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4f3142 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cryptographic Cipher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.14944 + posY: 3.16606 + posZ: -83.30329 + rotX: 0.0208085272 + rotY: 270.0 + rotZ: 0.0167710166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379931 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -10957,7 +6682,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6ad46b + GUID: 98c5af Grid: true GridProjection: false Hands: true @@ -10968,33 +6693,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Essence of the Dream + Nickname: Dream-Enhancing Serum 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 + 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: 266328 + CardID: 277606 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '2776': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -11002,7 +6727,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8b46b2 + GUID: a20887 Grid: true GridProjection: false Hands: true @@ -11013,33 +6738,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Keep Faith + Nickname: Grisly Totem SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -61.5964127 - posY: 1.3651222 - posZ: -58.195 - rotX: 0.0208016783 - rotY: 269.999939 - rotZ: 0.016794458 + 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: 430810 + CardID: 545303 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2732': + '2662': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -11047,7 +6772,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: b9bb2a + GUID: db4a43 Grid: true GridProjection: false Hands: true @@ -11058,24 +6783,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Fingerprint Kit + Nickname: Boxing Gloves SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -10.0399933 - posY: 1.34218788 - posZ: 82.8500061 - rotX: 0.0208109729 - rotY: 269.984833 - rotZ: 0.01676825 + posX: -53.2505722 + posY: 3.170734 + posZ: -68.2703 + rotX: 0.020815758 + rotY: 269.979553 + rotZ: 0.01676286 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 450614 + CardID: 450625 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -11089,10 +6814,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Professor of Entomology + Description: '' DragSelectable: true GMNotes: '' - GUID: 8ae314 + GUID: f98f6f Grid: true GridProjection: false Hands: true @@ -11103,18 +6828,1278 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dr. Milan Christopher (Taboo) + Nickname: Double or Nothing (Taboo) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -48.49287 - posY: 1.43936789 - posZ: -51.0247459 - rotX: 0.0208014939 - rotY: 269.999573 - rotZ: 0.0167931467 + posX: -48.68891 + posY: 1.30677831 + posZ: -51.11917 + rotX: 0.0208085719 + rotY: 269.999664 + rotZ: 0.01677095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 090fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Glimpse the Unthinkable (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.20668 + posY: 1.49268472 + posZ: 46.0736732 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2ee50e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Decoy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.5756035 + posY: 1.54699683 + posZ: -53.2420578 + rotX: 0.0201706048 + rotY: 270.0111 + rotZ: 0.00609406969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '213853' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500027 + posY: 1.35422194 + posZ: 80.55 + rotX: 0.0208109 + rotY: 269.988831 + rotZ: 0.0167680886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 017e1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.30965 + posY: 3.16701269 + posZ: -73.01712 + rotX: 0.0208083242 + rotY: 270.0 + rotZ: 0.0167706329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 96a440 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gravedigger's Shovel (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.45989 + posY: 1.56187952 + posZ: 37.3573074 + rotX: 359.9887 + rotY: 269.9923 + rotZ: 359.98288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230347 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ba1460 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bind Monster (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41364908 + posZ: -8.609983 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368434 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Professor of Entomology + DragSelectable: true + GMNotes: '' + GUID: 9934d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Milan Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3597 + posY: 3.53139567 + posZ: -65.68798 + rotX: 0.0124389669 + rotY: 270.0 + rotZ: 180.0142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1fe462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Last Chance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36241734 + posZ: 78.25 + rotX: 0.02081953 + rotY: 269.9588 + rotZ: 0.0167597178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a8298f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33731639 + posZ: 80.55 + rotX: 0.020818064 + rotY: 269.96698 + rotZ: 0.01676225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cc6b14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daring Maneuver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500023 + posY: 1.35612988 + posZ: 82.85 + rotX: 0.0208152272 + rotY: 269.974884 + rotZ: 0.01676414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3796': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f57a6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wither (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3716354 + posY: 1.53616381 + posZ: -13.6336412 + rotX: 359.988 + rotY: 270.833679 + rotZ: 353.443756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2928': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Guardian + DragSelectable: true + GMNotes: '' + GUID: b492cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Thompson (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.9860268 + posY: 1.36414373 + posZ: -55.87514 + rotX: 0.02081064 + rotY: 270.0 + rotZ: 0.01677142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 552421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3697': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ca25bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cover Up + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 86.76924 + posY: 1.37650609 + posZ: -58.61718 + rotX: 0.0202569962 + rotY: 270.007629 + rotZ: 0.0163947754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: edd34a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Quantum Flux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33529663 + posZ: 73.65 + rotX: 0.02081925 + rotY: 269.967 + rotZ: 0.016761573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1cd2bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 368852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Big Man on Campus + DragSelectable: true + GMNotes: '' + GUID: e1e098 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Peter Sylvestre (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40913355 + posZ: -15.8000059 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.6330948 + posY: 1.51341081 + posZ: 71.33267 + rotX: 0.020565819 + rotY: 270.0009 + rotZ: 0.01678212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 466112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4661': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Exotic Morgana + DragSelectable: true + GMNotes: '' + GUID: 692ced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Molly Maxwell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.0150757 + posY: 1.30660939 + posZ: 55.5211258 + rotX: 0.01782124 + rotY: 269.9919 + rotZ: 0.016412884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4fbdb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arbiter of Fates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.617424 + posY: 3.278408 + posZ: -72.10753 + rotX: 0.0208098311 + rotY: 270.001343 + rotZ: 0.01677073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 8b68f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crisis of Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.67489 + posY: 3.16815019 + posZ: -79.05465 + rotX: 0.0208086632 + rotY: 269.999329 + rotZ: 0.0167705454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 406ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Your Worst Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.45674 + posY: 1.52149308 + posZ: 51.4070473 + rotX: 0.019881621 + rotY: 269.999634 + rotZ: 180.018326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3136': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4f2668 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rite of Seeking (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.4130286 + posZ: -6.3099823 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: a5be8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Oath (Bloodthirst) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.77216 + posY: 1.37203252 + posZ: 51.6075249 + rotX: 0.0207682457 + rotY: 269.999329 + rotZ: 180.022034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d29be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Burning the Midnight Oil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.2948837 + posY: 3.284804 + posZ: -75.21793 + rotX: 0.0208093766 + rotY: 269.997253 + rotZ: 0.01676911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2778': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5ada0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hawk-Eye Folding Camera + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.4610023 + posY: 1.32776082 + posZ: 58.8984222 + rotX: 0.0208074246 + rotY: 269.998047 + rotZ: 0.0167737659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 00af4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fight or Flight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.35848963 + posZ: 69.05 + rotX: 0.02080343 + rotY: 270.012878 + rotZ: 0.0167783517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Doomed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 78.9933 + posY: 1.51519966 + posZ: 71.2607346 + rotX: 0.0213949829 + rotY: 269.999878 + rotZ: 0.0158619713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3bbc0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Quick Learner (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.58581 + posY: 3.28476167 + posZ: -70.34595 + rotX: 0.0144211575 + rotY: 270.0191 + rotZ: 0.0116325384 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -11165,97 +8150,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430647 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 19ab7c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Otherworldly Compass (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.4095664 - posZ: 0.590019166 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230603 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2306': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 00b6c3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: To Fight the Black Wind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.0920258 - posY: 3.39960217 - posZ: -65.15591 - rotX: 0.0208092 - rotY: 270.006958 - rotZ: 0.01676712 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545314 + CardID: 545322 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -11272,7 +8167,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 63b3e5 + GUID: 037b2e Grid: true GridProjection: false Hands: true @@ -11283,41 +8178,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Monster Slayer + Nickname: Lesson Learned (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -55.5310669 - posY: 3.28567147 - posZ: -71.8129654 - rotX: 0.0208143331 - rotY: 269.979553 - rotZ: 0.0167633239 + posX: -53.48458 + posY: 3.169242 + posZ: -72.9249 + rotX: 0.02080837 + rotY: 270.0 + rotZ: 0.0167705752 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 538725 + CardID: 449035 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5387': + '4490': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Syndicate Assassin DragSelectable: true GMNotes: '' - GUID: '943332' + GUID: 97a795 Grid: true GridProjection: false Hands: true @@ -11328,249 +8223,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Ineffable Truth (3) + Nickname: Delilah O'Rourke (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -61.2550964 - posY: 3.28405976 - posZ: -71.59284 - rotX: 0.0208090339 - rotY: 270.001343 - rotZ: 0.01676817 + 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: 230323 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fa1d67 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Holy Rosary - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0 - posY: 1.33271539 - posZ: 69.05 - rotX: 0.0207979213 - rotY: 270.0313 - rotZ: 0.0167850684 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3135': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b94d12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shards of the Void (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.41737127 - posZ: -22.4099979 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230311 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 30f860 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blinding Light - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6 - posY: 1.33260369 - posZ: 64.45 - rotX: 0.0208177511 - rotY: 269.96698 - rotZ: 0.0167625658 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368825 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9da37c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fire Axe - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.57 - posY: 1.35927451 - posZ: 75.95 - rotX: 0.02081681 - rotY: 269.9702 - rotZ: 0.0167647749 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374419 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3744': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eaaee9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Eucatastrophe (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 111.842651 - posY: 1.39317536 - posZ: 41.98588 - rotX: 359.987427 - rotY: 270.0001 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368431 + CardID: 368418 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -11587,7 +8257,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 063fd8 + GUID: acd0da Grid: true GridProjection: false Hands: true @@ -11598,198 +8268,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Old Book of Lore + Nickname: '"I''ve got a plan!"' 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: 314002 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3140': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cf4f15 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Flamethrower (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41967952 - posZ: -43.2699928 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 552011 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5520': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '041012' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dog Monocle - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.1418762 - posY: 1.567957 - posZ: -23.9889088 - rotX: 359.920135 - rotY: 269.986145 - rotZ: 0.0168946683 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277911 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2779': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dffa9d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Belly of the Beast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -31.2078037 - posY: 1.32907391 - posZ: 64.31217 - rotX: 0.0208104178 - rotY: 269.9969 - rotZ: 0.0167667456 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 441025 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4410': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7686cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Astounding Revelation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.23474 - posY: 1.60116971 - posZ: 13.8044615 - rotX: 359.978638 - rotY: 270.006348 - rotZ: 359.946381 + 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 @@ -11840,13 +8330,103 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 372011 + CardID: 368524 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3720': + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bca49e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 430908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2728': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8aa0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deny Existence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000042 + posY: 1.339336 + posZ: 87.45 + rotX: 0.0208175164 + rotY: 269.96698 + rotZ: 0.0167635437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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/ @@ -11857,7 +8437,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2c901b + GUID: 9aee7f Grid: true GridProjection: false Hands: true @@ -11868,41 +8448,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Final Rhapsody + Nickname: Improvisation 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 + 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: 447835 + CardID: 430640 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4478': + '2915': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Dreams of a Madman + Description: '' DragSelectable: true GMNotes: '' - GUID: e5f9cb + GUID: 7b42b6 Grid: true GridProjection: false Hands: true @@ -11913,24 +8493,159 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dream Diary (3) + Nickname: In the Know (1) 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 + 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: 266323 + CardID: 226341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d2e026 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vicious Blow (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40541053 + posZ: 9.630022 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cc9563 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pilfer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.16951 + posY: 3.28556275 + posZ: -70.02059 + rotX: 0.020811623 + rotY: 269.9931 + rotZ: 0.0167679768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 840ba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Covenant (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.2758179 + posY: 1.31858635 + posZ: -54.7640839 + rotX: 0.0207295977 + rotY: 269.9976 + rotZ: 359.274384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553214 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -11947,7 +8662,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 9c32e2 + GUID: 1ad931 Grid: true GridProjection: false Hands: true @@ -11958,24 +8673,2859 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Sword Cane + Nickname: Hand of Fate SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -66.9723053 - posY: 3.28151178 - posZ: -76.17098 - rotX: 0.0208084118 - rotY: 269.999878 - rotZ: 0.0167712439 + posX: -60.4219437 + posY: 3.16233158 + posZ: -88.09052 + rotX: 0.02080869 + rotY: 269.999 + rotZ: 0.0167701226 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266330 + CardID: 551303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: bc4a74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Foul Odor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7847195 + posY: 1.475488 + posZ: 8.0802145 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01687402 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430645 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 092e92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Quick Study (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40832567 + posZ: 5.19001961 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3121': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: "What\u2019s in the Box?" + DragSelectable: true + GMNotes: '' + GUID: 0e39c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Council's Coffer (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.4600334 + posY: 1.52728856 + posZ: -53.46696 + rotX: 0.0193714 + rotY: 270.016724 + rotZ: 0.0191046689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: My Muse + DragSelectable: true + GMNotes: '' + GUID: ea0007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Patrice's Violin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.38859 + posY: 1.48937368 + posZ: -50.0725479 + rotX: 0.0202874634 + rotY: 270.019684 + rotZ: 0.0154213235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0b963c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cheap Shot (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.01796 + posY: 3.28449917 + posZ: -73.74907 + rotX: 0.0208121 + rotY: 269.9931 + rotZ: 0.0167641789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Regalia Dementia + DragSelectable: true + GMNotes: '' + GUID: 5d30a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Tattered Cloak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.11173 + posY: 2.37783718 + posZ: -74.3121262 + rotX: 0.0208091661 + rotY: 270.000061 + rotZ: 0.0167705119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2928': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Guardian + DragSelectable: true + GMNotes: '' + GUID: 84b918 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enchanted Blade (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.7760849 + posY: 1.51176524 + posZ: -49.1228828 + rotX: 0.0195764955 + rotY: 269.98288 + rotZ: 0.009112052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3153': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 620b6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Contraband (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.5215378 + posY: 2.36745119 + posZ: -94.6365662 + rotX: 0.0208076537 + rotY: 270.000671 + rotZ: 0.0167719889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1186a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tony's .38 Long Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.5642548 + posY: 1.37087488 + posZ: -49.5318451 + rotX: 0.02080342 + rotY: 270.019775 + rotZ: 0.0167778078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '857238' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hatchet Man + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.35534489 + posZ: 75.95 + rotX: 0.020807296 + rotY: 270.0001 + rotZ: 0.016773833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3786': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0ab574 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mk 1 Grenades (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.6650848 + posY: 1.29916561 + posZ: -73.53806 + rotX: 0.0208087023 + rotY: 270.000061 + rotZ: 0.01677142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226355 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3b6834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "\"I've had worse\u2026\" (4)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3595657 + posY: 3.52342 + posZ: -65.6875458 + rotX: 0.0109348232 + rotY: 270.0 + rotZ: 180.018341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b65011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Investments + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.4359 + posY: 1.56717479 + posZ: -53.5249176 + rotX: 0.0196301043 + rotY: 270.007874 + rotZ: 0.00258995965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315248 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f57af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .41 Derringer (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.409518 + posZ: -11.2000046 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d4fd4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shortcut + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23999429 + posY: 1.34533072 + posZ: 85.15001 + rotX: 0.0208120123 + rotY: 269.986359 + rotZ: 0.0167688522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fab3a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Library Docent (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.804512 + posY: 3.16686463 + posZ: -83.314 + rotX: 0.0208091158 + rotY: 269.997253 + rotZ: 0.0167693384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bc4788 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Feed the Mind (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41452944 + posZ: -17.8099861 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 819aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sleight of Hand + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.353437 + posZ: 73.65 + rotX: 0.0208148733 + rotY: 269.974884 + rotZ: 0.0167639721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1f3f16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 278846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2788': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Key to the Gate of Dreams + DragSelectable: true + GMNotes: '' + GUID: 61fd07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Silver Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.46796 + posY: 3.47810078 + posZ: -50.62324 + rotX: 0.0125573976 + rotY: 270.0 + rotZ: 180.024521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 016b72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The King in Yellow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.2623863 + posY: 2.183923 + posZ: -93.89774 + rotX: 0.02080724 + rotY: 270.004761 + rotZ: 0.016775541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3148': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3dc82f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Try and Try Again (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.39982784 + posZ: 18.7000046 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3149': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bb501b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rise to the Occasion (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40975392 + posZ: -18.1000061 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Lost in a Dream + DragSelectable: true + GMNotes: '' + GUID: 9f76ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twila Katherine Price (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4830484 + posY: 1.57222378 + posZ: 0.6929285 + rotX: 359.920135 + rotY: 270.005066 + rotZ: 0.0168688241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 452300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4523': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Expert Dreamer + DragSelectable: true + GMNotes: '' + GUID: b04c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Randolph Carter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3781948 + posY: 2.37428141 + posZ: -83.49261 + rotX: 0.02080912 + rotY: 270.000031 + rotZ: 0.0167708285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: b9fbff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Siren Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.31337 + posY: 3.167749 + posZ: -78.3915558 + rotX: 0.0208085366 + rotY: 269.999329 + rotZ: 0.0167706981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5272': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ad58aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind's Eye (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.7199135 + posY: 1.29997373 + posZ: -68.2275848 + rotX: 0.0208084621 + rotY: 270.000061 + rotZ: 0.0167708471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4476': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b3cad4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daredevil (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.17774 + posY: 1.29656863 + posZ: -83.01471 + rotX: 0.0208081063 + rotY: 270.0001 + rotZ: 0.0167712811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Knowledge of the Elders + DragSelectable: true + GMNotes: '' + GUID: 863f91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Stone (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41887212 + posZ: -33.9099922 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2732': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 13413d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Connect the Dots + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.24000168 + posY: 1.33590531 + posZ: 52.95 + rotX: 0.02081261 + rotY: 269.9864 + rotZ: 0.0167691931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a927c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.33540833 + posZ: 78.25 + rotX: 0.0207991749 + rotY: 270.031281 + rotZ: 0.0167850573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 344e90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"I''ve got a plan!" (2)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.7697029 + posY: 3.16668463 + posZ: -83.9721756 + rotX: 0.0208092015 + rotY: 269.997253 + rotZ: 0.0167694557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 53d103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Sophist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.68433 + posY: 1.30284011 + posZ: -54.6536446 + rotX: 0.0208088122 + rotY: 269.999451 + rotZ: 0.01677146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3df5fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Evidence! (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.7155762 + posY: 3.17010212 + posZ: -72.3316956 + rotX: 0.02080834 + rotY: 270.0 + rotZ: 0.0167695936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Esteemed Eschatologist + DragSelectable: true + GMNotes: '' + GUID: 1f8539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: David Renfield + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33136892 + posZ: 64.45 + rotX: 0.0207990743 + rotY: 270.0313 + rotZ: 0.016784329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 256da2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eavesdrop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.35276365 + posZ: 71.35 + rotX: 0.0208145473 + rotY: 269.974884 + rotZ: 0.0167638231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3749': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 367aac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crisis of Identity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.4951439 + posY: 3.299623 + posZ: -50.0249023 + rotX: 359.920135 + rotY: 270.0012 + rotZ: 0.8290588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5cd622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34783983 + posZ: 78.25 + rotX: 0.02081828 + rotY: 269.9694 + rotZ: 0.016761452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c1365d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seeking Answers (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.3109856 + posY: 3.16338754 + posZ: -84.2678757 + rotX: 0.0208092984 + rotY: 269.997253 + rotZ: 0.0167696457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3772': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86feae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Call of the Unknown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6113453 + posY: 3.17495871 + posZ: -96.34451 + rotX: 0.0208080951 + rotY: 270.0 + rotZ: 0.0167711359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe2db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500065 + posY: 1.34816265 + posZ: 59.8500023 + rotX: 0.0208115634 + rotY: 269.9888 + rotZ: 0.0167687647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3799': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6ad46b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Essence of the Dream + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.46684 + posY: 1.68849742 + posZ: 2.97275424 + rotX: 359.9218 + rotY: 269.9981 + rotZ: 0.0143287377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230354 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 296dc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Book of Shadows (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41923249 + posZ: -29.3099937 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9bcdee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Newspaper (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40541124 + posZ: -2.00000286 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448937 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4489': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Jewel of the Gods + DragSelectable: true + GMNotes: '' + GUID: 464ca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wish Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4576378 + posY: 3.521088 + posZ: -65.76698 + rotX: 0.0166528169 + rotY: 270.000031 + rotZ: 180.070023 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30f860 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6 + posY: 1.33260369 + posZ: 64.45 + rotX: 0.0208177511 + rotY: 269.96698 + rotZ: 0.0167625658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1165db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 368626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ddee79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stealth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35018241 + posZ: 66.75 + rotX: 0.0208121948 + rotY: 269.988831 + rotZ: 0.0167690367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5e808d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Self-Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0898914 + posY: 1.5271982 + posZ: 6.91475 + rotX: 359.920441 + rotY: 270.003418 + rotZ: 0.0135479523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9c46da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300068 + posY: 1.34301531 + posZ: 57.5500031 + rotX: 0.0207952857 + rotY: 270.027039 + rotZ: 0.0167731363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d40f4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chainsaw (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.24956 + posY: 3.28480458 + posZ: -68.9724 + rotX: 0.0144211613 + rotY: 270.0191 + rotZ: 0.0116326967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4485': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 3bf831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: False Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.374157 + posY: 3.52493143 + posZ: -65.7005 + rotX: 0.0124949375 + rotY: 270.0 + rotZ: 180.220673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Poision. + DragSelectable: true + GMNotes: '' + GUID: 819f52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.88728 + posY: 3.174081 + posZ: -64.36427 + rotX: 0.0208086278 + rotY: 270.0 + rotZ: 0.0167710856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b0f86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Get over here!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.1554565 + posY: 3.28587174 + posZ: -70.16612 + rotX: 0.0208143238 + rotY: 269.979553 + rotZ: 0.016763214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d6e57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind Wipe (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40434325 + posZ: 25.8900242 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44cf4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: No Stone Unturned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3596878 + posY: 3.53277922 + posZ: -65.68791 + rotX: 0.0166730285 + rotY: 269.999664 + rotZ: 180.035721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8254d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blinding Light (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40992677 + posZ: 5.190022 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e21200 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clairvoyance (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.8509979 + posY: 3.276063 + posZ: -70.98741 + rotX: 0.0208088625 + rotY: 270.001343 + rotZ: 0.0167694334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0027f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Will to Survive (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41533744 + posZ: -38.8000031 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Psychosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.05512 + posY: 1.54381335 + posZ: 81.50433 + rotX: 0.0185714755 + rotY: 269.999481 + rotZ: 0.0229028482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: John Dee Translation + DragSelectable: true + GMNotes: '' + GUID: 6b2550 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 447632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4476': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bd139 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Haste (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.716 + posY: 1.30109835 + posZ: -65.63145 + rotX: 0.0208085626 + rotY: 269.999969 + rotZ: 0.0167710073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450615 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d4a68a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Delve Too Deep (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.3972664 + posY: 1.42967761 + posZ: -51.38582 + rotX: 0.0208060946 + rotY: 269.999664 + rotZ: 0.0167728066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553230 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -12020,7 +11570,907 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430652 + CardID: 380949 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3809': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce3a1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vengeful Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.62743974 + posY: 1.87950075 + posZ: -44.0202332 + rotX: 0.0293578617 + rotY: 269.9289 + rotZ: 338.761932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5537': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632620/1C7C9B898C919EDAD757709C161F0DFFF3FA9238/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c21c1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Signum Crucis (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.7455063 + posY: 1.32700038 + posZ: -57.0168457 + rotX: 0.02080867 + rotY: 270.000061 + rotZ: 0.01677112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2611': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d2663c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hemispheric Map (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39895689 + posZ: 16.4000015 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 454100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4541': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: 74840a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bear Trap + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.3778458 + posY: 2.36909652 + posZ: -86.7653351 + rotX: 0.0208093915 + rotY: 270.0 + rotZ: 0.01677069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232941 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Madness. + DragSelectable: true + GMNotes: '' + GUID: fb943f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.3010674 + posY: 1.36172926 + posZ: -55.04807 + rotX: 0.02080917 + rotY: 270.0 + rotZ: 0.0167706218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: a3bc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Atychiphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.50702 + posY: 3.28463626 + posZ: -72.20162 + rotX: 0.0147334673 + rotY: 270.0195 + rotZ: 0.0118836816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b7c503 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ghastly Revelation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8512068 + posY: 1.34525955 + posZ: 63.70211 + rotX: 0.0208136924 + rotY: 269.981 + rotZ: 0.01676558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3442f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: False Covenant (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45762 + posY: 3.52372 + posZ: -65.76752 + rotX: 0.0166536365 + rotY: 270.0 + rotZ: 180.169678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: From the Brink + DragSelectable: true + GMNotes: '' + GUID: 46187b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Five of Pentacles (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.4004482 + posZ: 16.4 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 26398a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pet Oozeling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.6435547 + posY: 1.3010807 + posZ: -68.26276 + rotX: 0.02080807 + rotY: 270.0001 + rotZ: 0.0167711359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 603e29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Smoking Pipe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36595976 + posZ: 80.55 + rotX: 0.02080983 + rotY: 269.99408 + rotZ: 0.0167723168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 452504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4525': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Chained to the Waking World + DragSelectable: true + GMNotes: '' + GUID: d253a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Randolph Carter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.5121937 + posY: 2.37383485 + posZ: -80.5855255 + rotX: 0.0208091475 + rotY: 270.0 + rotZ: 0.0167707652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 375016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3750': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a33470 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spirit-Speaker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.6619034 + posY: 1.68719435 + posZ: -45.7441521 + rotX: 0.158040836 + rotY: 270.026367 + rotZ: 0.0115280962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Cat General of Ulthar + DragSelectable: true + GMNotes: '' + GUID: e1aedf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Miss Doyle (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.43 + posY: 1.54419959 + posZ: 37.4258842 + rotX: 359.974884 + rotY: 269.9931 + rotZ: 359.982422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 55fc3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Riot Whistle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45762 + posY: 3.52957821 + posZ: -65.76726 + rotX: 0.01633934 + rotY: 270.0 + rotZ: 180.205978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Oath (Cowardice) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.3509445 + posY: 1.51659238 + posZ: 51.50479 + rotX: 0.0444448479 + rotY: 269.9969 + rotZ: 180.044754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 99800f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dogcatchers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.937418 + posY: 1.4728533 + posZ: -0.14389053 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 0.01687217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36528647 + posZ: 78.25 + rotX: 0.0208097659 + rotY: 269.99408 + rotZ: 0.0167725012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7e7873 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Prescient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.1686325 + posY: 3.2845335 + posZ: -71.113884 + rotX: 0.02081002 + rotY: 270.001343 + rotZ: 0.0167657565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8ffa44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: One-Two Punch (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.994278 + posY: 3.16984415 + posZ: -72.63637 + rotX: 0.0208082423 + rotY: 270.0 + rotZ: 0.016771188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430654 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -12034,10 +12484,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Guiding Stones + Description: Freezing Variant DragSelectable: true GMNotes: '' - GUID: a14a11 + GUID: 9afe23 Grid: true GridProjection: false Hands: true @@ -12048,33 +12498,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Archaic Glyphs (3) + Nickname: Strange Solution (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 88.05002 - posY: 1.41328871 - posZ: -13.2099848 + posX: 88.0500259 + posY: 1.41514981 + posZ: -20.11004 rotX: 359.987427 - rotY: 269.999969 + rotY: 270.0011 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 380230 + CardID: 538708 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3802': + '5387': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -12082,7 +12532,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fb9b7e + GUID: 971d52 Grid: true GridProjection: false Hands: true @@ -12093,33 +12543,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Brute Force (1) + Nickname: Familiar Spirit 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 + posX: -61.0962448 + posY: 3.284114 + posZ: -71.60461 + rotX: 0.0208114013 + rotY: 270.001343 + rotZ: 0.0167635661 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226314 + CardID: 379828 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2263': + '3798': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -12127,7 +12577,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a13ca4 + GUID: 0bb3da Grid: true GridProjection: false Hands: true @@ -12138,24 +12588,249 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: On the Hunt + Nickname: First Watch 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 + 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: 266334 + CardID: 448029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8e8a14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spectral Razor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.78683 + posY: 2.84537172 + posZ: -122.14035 + rotX: 0.0208078939 + rotY: 270.002258 + rotZ: 0.0167717487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 375129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 79b4af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandoned and Alone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 87.96376 + posY: 1.37863719 + posZ: -52.84543 + rotX: 0.0208916031 + rotY: 270.023865 + rotZ: 0.0165571664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5c3dd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Say Your Prayers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07001 + posY: 1.36977577 + posZ: 85.15001 + rotX: 0.0208101626 + rotY: 269.9973 + rotZ: 0.0167729165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '725690' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mauser C96 (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.11079 + posY: 3.285394 + posZ: -71.70106 + rotX: 0.0208120719 + rotY: 269.9931 + rotZ: 0.0167635214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a92a90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grit Your Teeth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.812542 + posY: 3.43617344 + posZ: -72.99728 + rotX: 0.0215979125 + rotY: 270.004822 + rotZ: 7.9804945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553202 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -12169,10 +12844,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Basic Weakness + Description: '' DragSelectable: true GMNotes: '' - GUID: a9d77d + GUID: c5d8a9 Grid: true GridProjection: false Hands: true @@ -12183,24 +12858,339 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Day of Reckoning + Nickname: Obscure Studies SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -52.6806946 - posY: 1.30510676 - posZ: -51.877182 - rotX: 0.0208085384 - rotY: 270.0 - rotZ: 0.0167706478 + posX: -53.8592148 + posY: 3.16668487 + posZ: -81.36013 + rotX: 0.02081001 + rotY: 269.999329 + rotZ: 0.0167705044 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230344 + CardID: 447932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4479': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ebdd78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .35 Winchester + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4082336 + posY: 1.300362 + posZ: -71.00999 + rotX: 0.0208086018 + rotY: 270.000061 + rotZ: 0.01677047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3153': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3e0653 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Think on Your Feet (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.404555 + posZ: 7.20000029 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e2bc49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypnotic Gaze (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.14337 + posY: 3.28516364 + posZ: -73.03294 + rotX: 0.020809602 + rotY: 270.001343 + rotZ: 0.01676751 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1c7a00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 379618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3796': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 060943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sixth Sense (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.56764 + posY: 1.41171122 + posZ: -11.039938 + rotX: 359.987427 + rotY: 269.999329 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368430 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Acquisitions and Solicitation + DragSelectable: true + GMNotes: '' + GUID: 4a2a36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Charles Ross, Esq. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000225 + posY: 1.33736348 + posZ: 62.1499977 + rotX: 0.02081471 + rotY: 269.978821 + rotZ: 0.0167644937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f8a977 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .18 Derringer (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.5310936 + posY: 3.28489327 + posZ: -71.11179 + rotX: 0.0144211408 + rotY: 270.0191 + rotZ: 0.0116323065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230349 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -12217,7 +13207,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a06aa7 + GUID: 65b30d Grid: true GridProjection: false Hands: true @@ -12228,33 +13218,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Recall the Future (2) + Nickname: Arcane Initiate (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 80.76001 - posY: 1.4111675 - posZ: 0.590019047 + posX: 80.76 + posY: 1.41488981 + posZ: -13.210041 rotX: 359.987427 - rotY: 269.999939 + rotY: 270.0008 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 440622 + CardID: 440721 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4406': + '4407': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -12262,7 +13252,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 96a440 + GUID: 0ec9bf Grid: true GridProjection: false Hands: true @@ -12273,18 +13263,198 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Gravedigger's Shovel (2) + Nickname: Suggestion (1) 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 + 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: 550500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5505': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843945794/C608E9B39B1E0B4267BCCC9A5B308495278702C0/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 27ff2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Third Time's a Charm (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.545 + posY: 3.28549743 + posZ: -71.2842255 + rotX: 0.02080856 + rotY: 269.999969 + rotZ: 0.0167710539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dbb0e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Encyclopedia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.7133255 + posY: 3.72821236 + posZ: -77.05741 + rotX: 0.02080956 + rotY: 269.997284 + rotZ: 0.0167706888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '273584' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Glory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.24709 + posY: 3.28623486 + posZ: -70.02708 + rotX: 0.0208144039 + rotY: 269.979553 + rotZ: 0.0167632941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 010509 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Occult Invocation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.44707 + posY: 3.167505 + posZ: -75.83863 + rotX: 0.0208092984 + rotY: 269.997253 + rotZ: 0.016769344 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -12380,13 +13550,13 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 376938 + CardID: 373819 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3769': + '3738': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ @@ -12397,7 +13567,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 1f3880 + GUID: 80b7c6 Grid: true GridProjection: false Hands: true @@ -12408,564 +13578,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Smuggled Goods + Nickname: Graveyard Ghouls 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 + 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: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bca49e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 368514 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 603e29 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Smoking Pipe - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36595976 - posZ: 80.55 - rotX: 0.02080983 - rotY: 269.99408 - rotZ: 0.0167723168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368624 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c607c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky Cigarette Case - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35152888 - posZ: 71.35 - rotX: 0.02081083 - rotY: 269.98877 - rotZ: 0.01677086 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230330 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Speaker to the Dead - DragSelectable: true - GMNotes: '' - GUID: 53867b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alyssa Graham - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.4000015 - posY: 1.3361932 - posZ: 85.15 - rotX: 0.0208057817 - rotY: 270.006378 - rotZ: 0.01677696 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315236 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 18927e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Treasure Hunter (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40083265 - posZ: 21.0000038 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230318 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7307c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Initiate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.6670818 - posY: 2.845372 - posZ: -145.168243 - rotX: 0.0208097361 - rotY: 269.99588 - rotZ: 0.0167698245 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550818 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5a2b49 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cherished Keepsake (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.4778328 - posY: 3.28506732 - posZ: -71.9391556 - rotX: 0.01442241 - rotY: 270.0191 - rotZ: 0.0116333654 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226342 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fc2629 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Eat lead!" (2)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.406031 - posZ: 7.33001947 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368623 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 68744b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hard Knocks - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35220218 - posZ: 73.65 - rotX: 0.02081169 - rotY: 269.98877 - rotZ: 0.0167679638 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380026 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d753d7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Momentum (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.0951538 - posY: 1.67418337 - posZ: -0.8636197 - rotX: 359.909546 - rotY: 270.009155 - rotZ: 0.006574045 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312109 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3121': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: "What\u2019s in the Box?" - DragSelectable: true - GMNotes: '' - GUID: 0e39c2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Council's Coffer (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.4600334 - posY: 1.52728856 - posZ: -53.46696 - rotX: 0.0193714 - rotY: 270.016724 - rotZ: 0.0191046689 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545316 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7ec473 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stand Together - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.39431 - posY: 3.16995716 - posZ: -69.50964 - rotX: 0.0208143611 - rotY: 269.979553 - rotZ: 0.0167634916 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538701 + CardID: 538710 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -12979,10 +13609,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Weakness + Description: '' DragSelectable: true GMNotes: '' - GUID: 3aa40e + GUID: d9292f Grid: true GridProjection: false Hands: true @@ -12993,288 +13623,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dark Future + Nickname: Robes of Endless Night SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -65.60581 - posY: 3.283627 - posZ: -68.9708 - rotX: 0.0208119676 + posX: -61.59802 + posY: 3.28473163 + posZ: -70.11515 + rotX: 0.0208108351 rotY: 270.001343 - rotZ: 0.01676205 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368424 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e5dd39 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hyperawareness - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000368 - posY: 1.34140289 - posZ: 75.95 - rotX: 0.0208141617 - rotY: 269.978821 - rotZ: 0.0167653561 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368832 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Big Man on Campus - DragSelectable: true - GMNotes: '' - GUID: ffdeb5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Peter Sylvestre - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35456181 - posZ: 59.8500023 - rotX: 0.0208163559 - rotY: 269.9702 - rotZ: 0.0167621151 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226308 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d5cac6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Taunt - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300049 - posY: 1.34974778 - posZ: 80.55 - rotX: 0.0207943153 - rotY: 270.027039 - rotZ: 0.0167732947 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379827 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 91e53c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daring - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1511784 - posY: 1.67444432 - posZ: 7.094112 - rotX: 359.921478 - rotY: 270.000641 - rotZ: 0.0153285637 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230348 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 64e131 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blood Pact (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41426945 - posZ: -10.9099836 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266319 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a5087b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .25 Automatic - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.6913071 - posY: 3.28392243 - posZ: -72.74665 - rotX: 0.0208082013 - rotY: 269.999817 - rotZ: 0.0167705584 + rotZ: 0.0167642124 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -13325,142 +13685,7 @@ ContainedObjects: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 99d061 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 266320 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b2b554 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Ritual - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.0262833 - posY: 3.28368235 - posZ: -73.3182 - rotX: 0.0208091456 - rotY: 269.999817 - rotZ: 0.0167693086 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374935 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3749': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 367aac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crisis of Identity - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 27.4951439 - posY: 3.299623 - posZ: -50.0249023 - rotX: 359.920135 - rotY: 270.0012 - rotZ: 0.8290588 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368840 + CardID: 368857 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -13474,10 +13699,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Lost Son of Earth + Description: '' DragSelectable: true GMNotes: '' - GUID: a7358f + GUID: f1b0f9 Grid: true GridProjection: false Hands: true @@ -13488,30 +13713,300 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Yaotl (1) + Nickname: Try and Try Again (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 110.15 - posY: 1.40106857 - posZ: 14.1000023 + posY: 1.41285586 + posZ: -29.6000061 rotX: 359.987427 - rotY: 269.999969 + rotY: 269.999939 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 379616 + CardID: 297101 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3796': + '2971': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 569b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curse of the Rougarou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.49299 + posY: 1.78174841 + posZ: 6.4157424 + rotX: 2.12603521 + rotY: 269.862244 + rotZ: 4.248013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Murder Weapon + DragSelectable: true + GMNotes: '' + GUID: d71f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bloodstained Dagger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.4621468 + posY: 2.36952639 + posZ: -73.6884155 + rotX: 0.0211172719 + rotY: 270.0 + rotZ: 0.0169384666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 88ee43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypochondria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 75.0673 + posY: 1.53452182 + posZ: 81.82477 + rotX: 0.0157311484 + rotY: 269.999634 + rotZ: 0.018423602 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 370422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3704': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 321cb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daisy's Tote Bag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.1865 + posY: 1.29897082 + posZ: -74.796936 + rotX: 0.0208084341 + rotY: 270.0 + rotZ: 0.0167711563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: eeb330 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.0520859 + posY: 1.485057 + posZ: 71.99658 + rotX: 0.0327025428 + rotY: 270.0003 + rotZ: 0.000334777724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2306': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 00b6c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: To Fight the Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0920258 + posY: 3.39960217 + posZ: -65.15591 + rotX: 0.0208092 + rotY: 270.006958 + rotZ: 0.01676712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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/ @@ -13519,10 +14014,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Deals with "Devils" + Description: '' DragSelectable: true GMNotes: '' - GUID: 4f2489 + GUID: 75eca5 Grid: true GridProjection: false Hands: true @@ -13533,41 +14028,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dayana Esperence (3) + Nickname: Read the Signs 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 + 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: 314105 + CardID: 549600 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3141': + '5496': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 + BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843934735/BFCEAE686380A770B52AAFB4710A0AB3043E02EE/ + NumHeight: 1 + NumWidth: 1 Type: 0 UniqueBack: false Description: '' DragSelectable: true GMNotes: '' - GUID: 37a2b5 + GUID: 9103a5 Grid: true GridProjection: false Hands: true @@ -13577,256 +14072,31 @@ ContainedObjects: LuaScript: '' LuaScriptState: '' MeasureMovement: false - Name: Card - Nickname: Blackjack (2) + Name: CardCustom + Nickname: Radiant Smite (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 95.87002 - posY: 1.40913284 - posZ: -4.169983 - rotX: 359.987427 + posX: -58.5725822 + posY: 3.27131367 + posZ: -71.1542358 + rotX: 0.0208085589 rotY: 270.000031 - rotZ: 359.984528 + rotZ: 0.0167722 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368712 + CardID: 380025 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '833305' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Elusive - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35209048 - posZ: 69.05 - rotX: 0.0208152477 - rotY: 269.974854 - rotZ: 0.0167662222 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226336 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 102fad - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Reliable (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.40671 - posY: 3.51911259 - posZ: -65.72932 - rotX: 0.0208095815 - rotY: 270.017 - rotZ: 180.016769 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368717 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b4ad29 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Contraband - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500061 - posY: 1.348051 - posZ: 55.2500038 - rotX: 0.0208157171 - rotY: 269.9749 - rotZ: 0.0167655777 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226302 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '889121' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Vicious Blow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.3516556 - posZ: 82.85 - rotX: 0.0208114255 - rotY: 269.987427 - rotZ: 0.0167701989 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450621 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 19b705 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.74354 - posY: 1.37190509 - posZ: -50.9488258 - rotX: 0.0166471563 - rotY: 270.0 - rotZ: 0.0134154055 - 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': + '3800': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ @@ -13837,7 +14107,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: bf5a5f + GUID: 0cc3e7 Grid: true GridProjection: false Hands: true @@ -13848,165 +14118,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Small Favor + Nickname: Followed 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 + 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: 551404 + CardID: 368414 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ed4256 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Take the Wheel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.2317638 - posY: 1.51399493 - posZ: 0.0367458239 - rotX: 359.920135 - rotY: 270.000061 - rotZ: 0.0168725774 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450615 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d4a68a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Delve Too Deep (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.3972664 - posY: 1.42967761 - posZ: -51.38582 - rotX: 0.0208060946 - rotY: 269.999664 - rotZ: 0.0167728066 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551507 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 1e6cae - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: No Sense of Space or Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.8583241 - posY: 1.47067189 - posZ: -7.926416 - rotX: 359.920135 - rotY: 270.000122 - rotZ: 0.0168734919 - 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': + '2304': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ @@ -14017,7 +14152,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 7b42b6 + GUID: 1b0235 Grid: true GridProjection: false Hands: true @@ -14028,108 +14163,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: In the Know (1) + Nickname: Persuasion 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: 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 842d41 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Switchblade (2) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.4471359 - posY: 1.30509317 - posZ: -50.972744 - rotX: 0.0208083689 - rotY: 269.999664 - rotZ: 0.01677047 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440621 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bda4fd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lantern (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.32716 - posY: 1.5488534 - posZ: 37.4422379 - rotX: 359.989349 - rotY: 269.992371 - rotZ: 359.982239 + 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 @@ -14180,7 +14225,97 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230357 + CardID: 314905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3149': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 70772b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oops! (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40665209 + posZ: -6.60000372 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 83d8d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leadership + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.35098243 + posZ: 80.55 + rotX: 0.0208123475 + rotY: 269.987427 + rotZ: 0.0167667661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230353 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -14197,7 +14332,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 68fce2 + GUID: 8f871b Grid: true GridProjection: false Hands: true @@ -14208,123 +14343,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Mists of R'lyeh (4) + Nickname: Crystalline Elder Sign (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 80.76001 - posY: 1.42109358 - posZ: -36.2099876 + posY: 1.41861212 + posZ: -27.0099945 rotX: 359.987427 - rotY: 270.000183 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538726 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ca23d4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Studies (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.8508453 - posY: 3.28354359 - posZ: -73.28051 - rotX: 0.0208091922 - rotY: 270.001343 - rotZ: 0.01676852 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378019 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3780': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0e0530 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Double, Double (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.103218 - posY: 1.3954078 - posZ: 33.496376 - rotX: 359.987427 - rotY: 270.000122 + rotY: 270.000366 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 431425 + CardID: 431007 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4314': + '2737': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -14332,7 +14377,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 527f1c + GUID: '683937' Grid: true GridProjection: false Hands: true @@ -14343,4923 +14388,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Hospital Debts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -45.1214066 - posY: 1.30226815 - posZ: -71.05752 - rotX: 0.0208089035 - rotY: 270.000061 - rotZ: 0.0167712178 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 097dcc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blackjack - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230005 - posY: 1.3498596 - posZ: 85.15 - rotX: 0.0208169557 - rotY: 269.9694 - rotZ: 0.0167641137 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551714 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5517': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 87f6b9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Shoe - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.1416931 - posY: 1.31019628 - posZ: -47.5659332 - rotX: 0.0208086874 - rotY: 269.998779 - rotZ: 0.0167704076 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226313 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e0dff3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dodge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300058 - posY: 1.34638155 - posZ: 69.05001 - rotX: 0.0207969118 - rotY: 270.027039 - rotZ: 0.0167740118 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315250 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f2508d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hot Streak (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.4113791 - posZ: -18.1000061 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379617 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3796': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d24531 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deny Existence (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.68603 - posY: 1.41275847 - posZ: -14.9164782 - rotX: 359.987061 - rotY: 270.0 - rotZ: 359.985779 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 369945 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3699': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fe68c6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Dirge of Reason - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 85.22855 - posY: 1.54189241 - posZ: -58.0838356 - rotX: 6.124808 - rotY: 269.9939 - rotZ: 0.005484572 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 372110 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3721': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 03c6a7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jim's Trumpet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.8095436 - posY: 2.18439317 - posZ: -93.41783 - rotX: 0.02080927 - rotY: 270.001282 - rotZ: 0.01677108 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538702 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: fc4168 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nihilism - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.2335472 - posY: 3.284022 - posZ: -71.82146 - rotX: 0.0208121873 - rotY: 270.001343 - rotZ: 0.0167624224 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274010 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: My Muse - DragSelectable: true - GMNotes: '' - GUID: ea0007 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Patrice's Violin - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.38859 - posY: 1.48937368 - posZ: -50.0725479 - rotX: 0.0202874634 - rotY: 270.019684 - rotZ: 0.0154213235 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538626 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e503ce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pilfer (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.7308273 - posY: 3.28553247 - posZ: -71.91625 - rotX: 0.0208110027 - rotY: 269.9931 - rotZ: 0.0167684164 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447633 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4476': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b3cad4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daredevil (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.17774 - posY: 1.29656863 - posZ: -83.01471 - rotX: 0.0208081063 - rotY: 270.0001 - rotZ: 0.0167712811 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368828 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mysterious Benefactress - DragSelectable: true - GMNotes: '' - GUID: 1ee492 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Madame Labranche - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35725486 - posZ: 69.05 - rotX: 0.0208162181 - rotY: 269.970184 - rotZ: 0.0167627446 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368627 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5690d1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Knuckleduster - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.34950924 - posZ: 64.45 - rotX: 0.0208122581 - rotY: 269.98877 - rotZ: 0.0167700984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527607 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2742': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '276477' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Money Talks - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500023 - posY: 1.35747635 - posZ: 87.45 - rotX: 0.02081571 - rotY: 269.9749 - rotZ: 0.016764652 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3c0249 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guardian Angel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.198864 - posY: 3.166678 - posZ: -88.62286 - rotX: 0.020808557 - rotY: 269.999329 - rotZ: 0.01677081 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379931 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3799': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 98c5af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream-Enhancing Serum - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.3515034 - posY: 1.525713 - posZ: 3.167102 - rotX: 359.920624 - rotY: 269.986816 - rotZ: 0.0123827262 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450610 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Dealer in Secrets - DragSelectable: true - GMNotes: '' - GUID: a8afba - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mr. "Rook" (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8497238 - posY: 1.47770345 - posZ: -51.25452 - rotX: 0.0208078567 - rotY: 269.999756 - rotZ: 0.0167897772 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315304 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3153': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 620b6e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Contraband (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -36.5215378 - posY: 2.36745119 - posZ: -94.6365662 - rotX: 0.0208076537 - rotY: 270.000671 - rotZ: 0.0167719889 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315252 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 074858 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ace in the Hole (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41262 - posZ: -22.7000065 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226307 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 84ba9d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''ll see you in hell!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300039 - posY: 1.350421 - posZ: 82.85 - rotX: 0.02079607 - rotY: 270.027039 - rotZ: 0.0167730115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545208 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9e4e11 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alter Fate (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.9760551 - posY: 3.28508377 - posZ: -73.30521 - rotX: 0.0208075289 - rotY: 270.0092 - rotZ: 0.016770035 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261701 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: efb09b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Double or Nothing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.35736465 - posZ: 82.85 - rotX: 0.0208079945 - rotY: 270.000122 - rotZ: 0.0167725533 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368519 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8948c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Emergency Cache (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39523458 - posZ: 30.2000065 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538601 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: b2e5b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arrogance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.2983665 - posY: 3.28459358 - posZ: -71.865715 - rotX: 0.0208144076 - rotY: 269.9931 - rotZ: 0.01675927 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 276200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2762': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2240f9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "Coup de Gr\xE2ce" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.34939754 - posZ: 59.8500023 - rotX: 0.0208155029 - rotY: 269.974884 - rotZ: 0.0167655852 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444260 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3799': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f08934 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Insight - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 4.14029932 - posY: 1.58196938 - posZ: -77.8714752 - rotX: 7.61785269 - rotY: 269.935059 - rotZ: 0.0212708171 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450608 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f170b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Flamethrower (5) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.5497971 - posY: 1.58908463 - posZ: -51.07922 - rotX: 356.358124 - rotY: 269.9749 - rotZ: 0.0204766355 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538819 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6e4d54 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Glimpse the Unthinkable (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.7147179 - posY: 3.163674 - posZ: -85.7649 - rotX: 0.0208091736 - rotY: 269.997253 - rotZ: 0.0167692658 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450619 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Let the Storm Rage - DragSelectable: true - GMNotes: '' - GUID: 244d61 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Key of Ys (5) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.6845245 - posY: 1.3909651 - posZ: -51.78406 - rotX: 0.0208023489 - rotY: 269.999664 - rotZ: 0.0167920664 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450625 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f98f6f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Double or Nothing (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.68891 - posY: 1.30677831 - posZ: -51.11917 - rotX: 0.0208085719 - rotY: 269.999664 - rotZ: 0.01677095 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538713 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 47bdba - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Parallel Fates - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.19831 - posY: 3.28503919 - posZ: -70.7977 - rotX: 0.0208103936 - rotY: 270.001343 - rotZ: 0.0167649258 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315248 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f57af7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .41 Derringer (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.409518 - posZ: -11.2000046 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266305 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 9be144 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shadow Agents - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.39515 - posY: 3.1665554 - posZ: -82.36551 - rotX: 0.0208085366 - rotY: 269.999329 - rotZ: 0.0167704988 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277811 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2778': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1339b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mr. "Rook" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.8864021 - posY: 2.368725 - posZ: -89.90842 - rotX: 0.0208068751 - rotY: 270.00296 - rotZ: 180.016769 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226316 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: baef55 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Second Wind + Nickname: Delay the Inevitable SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 12.6300068 - posY: 1.34436178 - posZ: 62.1500053 - rotX: 0.0207944941 + posY: 1.34368849 + posZ: 59.8500023 + rotX: 0.0207936484 rotY: 270.027039 - rotZ: 0.0167757757 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235648 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Forgotten Guardian - DragSelectable: true - GMNotes: '' - GUID: 29fc24 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ichtaca - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.62483 - posY: 3.17204762 - posZ: -63.4302139 - rotX: 0.020808531 - rotY: 269.999847 - rotZ: 0.0167708434 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550823 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0c433b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dumb Luck (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.9844 - posY: 3.28493977 - posZ: -71.77057 - rotX: 0.0147311278 - rotY: 270.0195 - rotZ: 0.0118826525 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538630 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: O'Bannion Driver - DragSelectable: true - GMNotes: '' - GUID: 0e72b6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chuck Fergus (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.83603 - posY: 3.28583312 - posZ: -69.89671 - rotX: 0.020810334 - rotY: 269.9931 - rotZ: 0.0167687237 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230302 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 59b24f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Defiance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000027 - posY: 1.33855116 - posZ: 80.55 - rotX: 0.0208174158 - rotY: 269.971 - rotZ: 0.016762618 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368820 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 593deb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leather Coat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.69558 - posY: 1.366081 - posZ: -59.2587624 - rotX: 0.020795757 - rotY: 270.0401 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: Ally - DragSelectable: true - GMNotes: '' - GUID: 3c1944 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 440627 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dacbf0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fortuitous Discovery - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.31382 - posY: 1.5461663 - posZ: 37.3481064 - rotX: 359.984924 - rotY: 269.992371 - rotZ: 359.9843 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440724 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4407': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cdbb37 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Easy Mark (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 93.19893 - posY: 1.56512642 - posZ: 29.48283 - rotX: 359.987854 - rotY: 269.9784 - rotZ: 359.9843 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368809 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c2d9a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bait and Switch - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.36118257 - posZ: 78.25 - rotX: 0.0208049417 - rotY: 270.012939 - rotZ: 0.0167780388 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377244 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3772': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 86feae - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Call of the Unknown - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -19.6113453 - posY: 3.17495871 - posZ: -96.34451 - rotX: 0.0208080951 - rotY: 270.0 - rotZ: 0.0167711359 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230314 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9c922f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Storm of Spirits - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6 - posY: 1.33058393 - posZ: 57.55 - rotX: 0.0208180714 - rotY: 269.96698 - rotZ: 0.01676364 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226334 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bb640d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ever Vigilant (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.39982712 - posZ: 30.3300285 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450620 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ff1dfe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: All In (5) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.35118 - posY: 1.38161 - posZ: -51.1732025 - rotX: 0.0208080132 - rotY: 269.999664 - rotZ: 0.0167661514 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368810 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ce0dd5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky! - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.5178833 - posY: 1.36590815 - posZ: -66.2731552 - rotX: 0.0207964685 - rotY: 270.040344 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538607 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Feisty Mechanic - DragSelectable: true - GMNotes: '' - GUID: ad0ef0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lonnie Ritter - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.9314423 - posY: 3.28531146 - posZ: -69.8925552 - rotX: 0.0208135452 - rotY: 269.9931 - rotZ: 0.0167604648 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538718 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e84eff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Eldritch Inspiration (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.8112869 - posY: 3.284758 - posZ: -69.80476 - rotX: 0.0208098479 - rotY: 270.001343 - rotZ: 0.01676624 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430641 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7f99cc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pathfinder (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40584409 - posZ: 14.3900223 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 369816 - 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/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Knows Too Much - DragSelectable: true - GMNotes: '' - GUID: 7e2896 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Elina Harper - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.4537659 - posY: 3.52636623 - posZ: -65.7639 - rotX: 0.0125333974 - rotY: 270.0003 - rotZ: 179.7309 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226323 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1165db - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Physical Training - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 266304 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2561b9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: In the Shadows - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.32988 - posY: 3.167284 - posZ: -82.43804 - rotX: 0.020808626 - rotY: 269.999329 - rotZ: 0.0167706925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368619 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dc3b07 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lone Wolf - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500027 - posY: 1.35556841 - posZ: 85.15 - rotX: 0.0208101571 - rotY: 269.9888 - rotZ: 0.01676966 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545326 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Purifier - DragSelectable: true - GMNotes: '' - GUID: b39b78 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grete Wagner (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.3079376 - posY: 3.170257 - posZ: -72.36504 - rotX: 0.0208083745 - rotY: 270.0 - rotZ: 0.01677083 - 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eca1c8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 277606 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a20887 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grisly Totem - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -31.1001987 - posY: 1.32403064 - posZ: 46.94928 - rotX: 0.0208084043 - rotY: 269.998535 - rotZ: 0.0167739969 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293217 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2932': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Seeker - DragSelectable: true - GMNotes: '' - GUID: 1433eb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grisly Totem (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.7730675 - posY: 1.36253119 - posZ: -55.4446869 - rotX: 0.020809114 - rotY: 270.0 - rotZ: 0.0167707428 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266332 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: ef91a9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Accursed Follower - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.6153374 - posY: 1.30231833 - posZ: -55.28093 - rotX: 0.0208085831 - rotY: 269.999939 - rotZ: 0.0167706572 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313603 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3136': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a53344 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clarity of Mind (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76001 - posY: 1.41675091 - posZ: -20.109993 - rotX: 359.987427 - rotY: 270.000183 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293314 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2933': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mystic - DragSelectable: true - GMNotes: '' - GUID: d0de54 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Enchanted Blade (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.77679 - posY: 1.52551687 - posZ: -49.1203079 - rotX: 0.013238864 - rotY: 269.99353 - rotZ: 0.00522407331 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292915 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2929': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Rogue - DragSelectable: true - GMNotes: '' - GUID: d4dbc7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .45 Thompson (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.28594 - posY: 1.36603451 - posZ: -55.2474 - rotX: 0.0208098963 - rotY: 270.000031 - rotZ: 0.0167697147 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368630 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Unscrupulous Investor - DragSelectable: true - GMNotes: '' - GUID: 5ec1a2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dario El-Amin - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500065 - posY: 1.34681618 - posZ: 55.2500038 - rotX: 0.0208117589 - rotY: 269.9888 - rotZ: 0.016770687 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368837 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4cfcc7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Test of Will (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.39796674 - posZ: 25.6000061 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5ab9f4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Overpower - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.367756 - posZ: 78.25 - rotX: 0.0208083075 - rotY: 269.997284 - rotZ: 0.0167704355 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: be33f5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tennessee Sour Mash - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.6968155 - posY: 1.32354212 - posZ: 49.7424278 - rotX: 0.02080729 - rotY: 269.998566 - rotZ: 0.0167727023 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226305 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 36c0cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Let me handle this!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300039 - posY: 1.35176742 - posZ: 87.45 - rotX: 0.0207943413 - rotY: 270.027039 - rotZ: 0.01677379 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448033 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Acuity - DragSelectable: true - GMNotes: '' - GUID: 3d22c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empower Self (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.2720909 - posY: 1.57276511 - posZ: 3.53009033 - rotX: 359.9201 - rotY: 270.0217 - rotZ: 0.01684677 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226340 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Pure of Spirit - DragSelectable: true - GMNotes: '' - GUID: 3c9617 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Brother Xavier (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40479016 - posZ: 11.9300222 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '812175' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Logical Reasoning - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.240002 - posY: 1.33725178 - posZ: 57.5499954 - rotX: 0.0208138786 - rotY: 269.986359 - rotZ: 0.016766822 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 537609 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 6cbc01 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Bell Tolls - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.8913 - posY: 1.30483675 - posZ: -55.12381 - rotX: 0.0208084658 - rotY: 269.999969 - rotZ: 0.01677108 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379831 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5e808d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Self-Sacrifice - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.0898914 - posY: 1.5271982 - posZ: 6.91475 - rotX: 359.920441 - rotY: 270.003418 - rotZ: 0.0135479523 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368419 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 658d38 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shrewd Analysis - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.63999367 - posY: 1.34476912 - posZ: 87.4500046 - rotX: 0.02081338 - rotY: 269.978821 - rotZ: 0.0167668 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368631 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3686': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Louisiana Lion - DragSelectable: true - GMNotes: '' - GUID: eaa415 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leo De Luca - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.11792 - posY: 2.18863821 - posZ: -89.20177 - rotX: 359.9792 - rotY: 270.0 - rotZ: 180.003784 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368418 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: acd0da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''ve got a plan!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.24000216 - posY: 1.33657849 - posZ: 55.25 - rotX: 0.0208124332 - rotY: 269.9864 - rotZ: 0.0167701915 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a92a90 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grit Your Teeth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.812542 - posY: 3.43617344 - posZ: -72.99728 - rotX: 0.0215979125 - rotY: 270.004822 - rotZ: 7.9804945 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230312 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 31d087 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Astral Travel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6 - posY: 1.3319304 - posZ: 62.15 - rotX: 0.020817386 - rotY: 269.96698 - rotZ: 0.0167596154 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368620 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c33a10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Liquid Courage - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500027 - posY: 1.35489511 - posZ: 82.85 - rotX: 0.0208108556 - rotY: 269.98877 - rotZ: 0.0167696662 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266331 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 33f906 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tempt Fate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.5000648 - posY: 1.33136272 - posZ: -57.75174 - rotX: 0.0208095517 - rotY: 269.999939 - rotZ: 0.0167844351 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551201 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 29bafb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: More Bark Than Bite - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.11447 - posY: 1.47629988 - posZ: 12.3989725 - rotX: 359.920135 - rotY: 269.999939 - rotZ: 0.0168736614 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 454741 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4547': - BackIsHidden: true - BackURL: https://i.imgur.com/r6F1mt2.jpg - FaceURL: https://i.imgur.com/CN9PXUd.jpg - NumHeight: 5 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Item. Relic. - DragSelectable: true - GMNotes: '' - GUID: 0ce113 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Ankh - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.99787 - posY: 2.36574912 - posZ: -93.55096 - rotX: 0.0208107159 - rotY: 269.999939 - rotZ: 0.01676894 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315238 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2423e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fence (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40207338 - posZ: 16.4000072 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551506 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Nightmares, I Tell You - DragSelectable: true - GMNotes: '' - GUID: bbf1af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chew Toy of Nightmares - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.7711954 - posY: 1.50236475 - posZ: -7.66155148 - rotX: 359.920135 - rotY: 269.9999 - rotZ: 0.0168895219 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230343 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4224db - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Time Warp (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41054726 - posZ: 2.89002085 - rotX: 359.987427 - rotY: 270.000244 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261702 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a88392 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Opportunist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500038 - posY: 1.35669148 - posZ: 80.55 - rotX: 0.0208076444 - rotY: 270.000122 - rotZ: 0.0167729724 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447933 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4479': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7dc42a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Safeguard (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.1557045 - posY: 1.29952526 - posZ: -70.459816 - rotX: 0.0208098479 - rotY: 269.9981 - rotZ: 0.016770659 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538628 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: de40c8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Copycat (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.63346 - posY: 3.282604 - posZ: -69.29911 - rotX: 0.0208113231 - rotY: 269.9931 - rotZ: 0.0167662259 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368841 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Forgotten Daughter - DragSelectable: true - GMNotes: '' - GUID: 9393ec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Aquinnah (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40168893 - posZ: 11.8 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266313 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 88865b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rite of Sanctification - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.3946571 - posY: 3.16200924 - posZ: -90.46195 - rotX: 0.0208087657 - rotY: 269.999 - rotZ: 0.0167703237 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292914 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2929': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2ee50e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Decoy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.5756035 - posY: 1.54699683 - posZ: -53.2420578 - rotX: 0.0201706048 - rotY: 270.0111 - rotZ: 0.00609406969 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447833 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3dc25c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Extensive Research (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.69135 - posY: 1.29797947 - posZ: -83.76117 - rotX: 0.0208081 - rotY: 270.0 - rotZ: 0.0167707074 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430643 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9bd7cf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shortcut (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40708482 - posZ: 9.790022 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 546917 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/NSozoRe.jpg - FaceURL: https://i.imgur.com/HLQOkvy.jpg - NumHeight: 5 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Monster. Nightgaunt. Power. - DragSelectable: true - GMNotes: '' - GUID: cf96b9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Summoned Nightgaunt - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.42212 - posY: 2.36338925 - posZ: -96.24052 - rotX: 0.02081042 - rotY: 270.000031 - rotZ: 0.0167689342 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447733 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4477': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f21109 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Glimmer of Hope - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.2737465 - posY: 2.84284782 - posZ: -111.100708 - rotX: 0.020808937 - rotY: 270.0 - rotZ: 0.0167718567 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 552110 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5521': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6012db - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiked Collar - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.5202332 - posY: 1.47732294 - posZ: -59.0333748 - rotX: 0.0208220333 - rotY: 269.985535 - rotZ: 0.0168014336 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368706 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cc6b14 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daring Maneuver - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500023 - posY: 1.35612988 - posZ: 82.85 - rotX: 0.0208152272 - rotY: 269.974884 - rotZ: 0.01676414 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545204 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Doom Begets Doom - DragSelectable: true - GMNotes: '' - GUID: 946a58 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Decorated Skull (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.5000725 - posY: 3.16913486 - posZ: -87.17431 - rotX: 0.0208039563 - rotY: 270.0092 - rotZ: 0.0167778078 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448738 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4487': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f0389b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nothing Left to Lose (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.3847427 - posY: 1.30081713 - posZ: -67.00287 - rotX: 0.0208080914 - rotY: 270.0001 - rotZ: 0.01677122 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2742': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Message from Your Inner Self - DragSelectable: true - GMNotes: '' - GUID: e80bd8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "The Moon \u2022 XVIII (1)" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41013837 - posZ: -13.5000048 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313905 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3139': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Empowering Elixir - DragSelectable: true - GMNotes: '' - GUID: d96e4b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.417011 - posZ: -27.0099945 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438127 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 57e648 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Narcolepsy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.20527 - posY: 1.5186789 - posZ: 51.2058372 - rotX: 0.0206013937 - rotY: 270.002258 - rotZ: 180.0141 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230304 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a8298f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Drawn to the Flame - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33731639 - posZ: 80.55 - rotX: 0.020818064 - rotY: 269.96698 - rotZ: 0.01676225 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551405 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 99800f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dogcatchers - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.937418 - posY: 1.4728533 - posZ: -0.14389053 - rotX: 359.920135 - rotY: 270.000153 - rotZ: 0.01687217 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232904 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Professor of Languages - DragSelectable: true - GMNotes: '' - GUID: 42806b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Professor Warren Rice - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.05947 - posY: 2.373765 - posZ: -66.9028549 - rotX: 0.0208103973 - rotY: 270.000031 - rotZ: 0.0167690516 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226359 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e21854 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monster Slayer (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41843867 - posZ: -38.66999 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538609 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a973aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Streetwise - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.8479958 - posY: 3.283511 - posZ: -70.64353 - rotX: 0.0208132938 - rotY: 269.9931 - rotZ: 0.01676096 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440625 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 695bb7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Zeal - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.16347 - posY: 1.56949711 - posZ: 37.4911728 - rotX: 359.9874 - rotY: 269.9922 - rotZ: 359.9842 + rotZ: 0.0167745743 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -19310,958 +14450,13 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 440922 + CardID: 376938 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4409': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c026c9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .32 Colt (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.7927551 - posY: 1.36278141 - posZ: -59.5280762 - rotX: 0.020805249 - rotY: 270.017761 - rotZ: 0.0167758446 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3148': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44a37f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Hunting Rifle (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41471708 - posZ: -36.5000038 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 295502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2955': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0f54e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Medico Della Peste - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.5321274 - posY: 1.29888833 - posZ: -75.8911 - rotX: 0.0208082646 - rotY: 270.0001 - rotZ: 0.0167710669 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230305 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 45d2d2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Uncage the Soul - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.3366431 - posZ: 78.25 - rotX: 0.02081758 - rotY: 269.967 - rotZ: 0.0167609118 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450623 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mystic - DragSelectable: true - GMNotes: '' - GUID: 5839e4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.63492 - posY: 1.30829561 - posZ: -44.7619629 - rotX: 0.0208089389 - rotY: 269.999634 - rotZ: 0.01677007 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368429 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d6771f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fieldwork - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000225 - posY: 1.33803678 - posZ: 64.45 - rotX: 0.02081346 - rotY: 269.978821 - rotZ: 0.0167630222 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430638 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3a0df6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scientific Theory (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.403983 - posZ: 21.2900238 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274606 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2746': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '051742' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Able Bodied - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36039758 - posZ: 71.35 - rotX: 0.0208197385 - rotY: 269.9588 - rotZ: 0.0167587847 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Renowned Historian - DragSelectable: true - GMNotes: '' - GUID: c49b4b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alejandro Vela - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.8602333 - posY: 3.17244 - posZ: -61.7880058 - rotX: 0.0208084844 - rotY: 269.999847 - rotZ: 0.0167707447 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293013 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2930': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Survivor - DragSelectable: true - GMNotes: '' - GUID: cbe256 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tennessee Sour Mash (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.6885529 - posY: 1.65134215 - posZ: -48.9234848 - rotX: 359.90155 - rotY: 269.982483 - rotZ: 359.886169 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538829 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b4121c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Farsight (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.5906525 - posY: 3.16649461 - posZ: -81.15508 - rotX: 0.0208091084 - rotY: 269.997253 - rotZ: 0.0167697426 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: I Guess His Name is "Pete?" - DragSelectable: true - GMNotes: '' - GUID: 448d3a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Friendly Human - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.128437 - posY: 1.49981213 - posZ: -14.769701 - rotX: 359.9201 - rotY: 269.999817 - rotZ: 0.01682643 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368830 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 48e103 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Baseball Bat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.75805 - posY: 1.36662269 - posZ: -56.0895958 - rotX: 0.02079865 - rotY: 270.04 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449359 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3797': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Sanctum's Reward - DragSelectable: true - GMNotes: '' - GUID: 223ba3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Twilight Blade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.766281 - posY: 1.376472 - posZ: -79.3358841 - rotX: 0.0199582744 - rotY: 269.996155 - rotZ: 0.0131309 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: c54d7e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dread Curse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.7849045 - posY: 1.30583155 - posZ: -49.2717628 - rotX: 0.0208085217 - rotY: 269.999939 - rotZ: 0.0167706348 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 415ca2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Get over here!" (2)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.5655479 - posY: 3.28498816 - posZ: -74.21584 - rotX: 0.0208084416 - rotY: 270.0 - rotZ: 0.0167704467 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368829 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3fe6de - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gravedigger's Shovel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35658157 - posZ: 66.75 - rotX: 0.020816626 - rotY: 269.9702 - rotZ: 0.016764015 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538619 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '725690' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mauser C96 (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.11079 - posY: 3.285394 - posZ: -71.70106 - rotX: 0.0208120719 - rotY: 269.9931 - rotZ: 0.0167635214 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274005 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1186a1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tony's .38 Long Colt - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -33.5642548 - posY: 1.37087488 - posZ: -49.5318451 - rotX: 0.02080342 - rotY: 270.019775 - rotZ: 0.0167778078 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368625 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: da7c01 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pickpocketing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35085571 - posZ: 69.05 - rotX: 0.0208106581 - rotY: 269.98877 - rotZ: 0.0167695228 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 078efb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Survival Instinct - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -40.4491959 - posY: 1.36816967 - posZ: -59.8729668 - rotX: 0.02079764 - rotY: 270.040222 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380949 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3809': + '3769': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ @@ -20272,7 +14467,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ce3a1a + GUID: 1f3880 Grid: true GridProjection: false Hands: true @@ -20283,1953 +14478,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Vengeful Hound + Nickname: Smuggled Goods 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: 541109 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5411': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/775107869050061525/A759DF697FFB26F0F5B75E116A923E33F88FCA7B/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fa4c1e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream-Gate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.9905357 - posY: 3.16472745 - posZ: -83.01713 - rotX: 359.91983 - rotY: 269.9864 - rotZ: 0.0154172564 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368705 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dcdcea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"You handle this one!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500023 - posY: 1.35680318 - posZ: 85.15 - rotX: 0.0208152775 - rotY: 269.9749 - rotZ: 0.0167649742 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368407 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f69e10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seeking Answers - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.23999381 - posY: 1.34398425 - posZ: 80.55001 - rotX: 0.0208114088 - rotY: 269.986359 - rotZ: 0.0167681742 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368709 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6fec31 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Think on Your Feet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35411012 - posZ: 75.95 - rotX: 0.020815298 - rotY: 269.9749 - rotZ: 0.016764313 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c6509 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .45 Thompson - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.922472 - posY: 1.324889 - posZ: 49.66081 - rotX: 0.0208094623 - rotY: 269.993744 - rotZ: 0.016770605 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538618 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5065a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Liquid Courage (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.5539131 - posY: 3.28516722 - posZ: -70.53557 - rotX: 0.0208124164 - rotY: 269.9931 - rotZ: 0.01676321 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230307 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: edd34a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quantum Flux - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33529663 - posZ: 73.65 - rotX: 0.02081925 - rotY: 269.967 - rotZ: 0.016761573 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545308 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8d6ae6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Safeguard - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.90727 - posY: 3.285945 - posZ: -71.23404 - rotX: 0.02081431 - rotY: 269.979553 - rotZ: 0.0167632084 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378617 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3786': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0ab574 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mk 1 Grenades (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.6650848 - posY: 1.29916561 - posZ: -73.53806 - rotX: 0.0208087023 - rotY: 270.000061 - rotZ: 0.01677142 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379018 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b7c503 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ghastly Revelation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 13.8512068 - posY: 1.34525955 - posZ: 63.70211 - rotX: 0.0208136924 - rotY: 269.981 - rotZ: 0.01676558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226346 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: da46e0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Police Badge (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.4097532 - posZ: -6.469983 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368406 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bbfe9b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guidance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.239994 - posY: 1.34465742 - posZ: 82.8500061 - rotX: 0.0208123866 - rotY: 269.986359 - rotZ: 0.0167671517 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266318 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 96fd5d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Plan of Action - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.736805 - posY: 3.165655 - posZ: -83.77747 - rotX: 0.0208086949 - rotY: 269.999 - rotZ: 0.0167706273 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545324 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 017e1f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Overpower (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.30965 - posY: 3.16701269 - posZ: -73.01712 - rotX: 0.0208083242 - rotY: 270.0 - rotZ: 0.0167706329 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4fbdb2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arbiter of Fates - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.617424 - posY: 3.278408 - posZ: -72.10753 - rotX: 0.0208098311 - rotY: 270.001343 - rotZ: 0.01677073 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374420 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3744': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1a90a4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lure (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.262115 - posY: 1.37650943 - posZ: 48.36173 - rotX: 0.020808477 - rotY: 270.0 - rotZ: 0.01677365 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0e2987 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 313906 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3139': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5e32a5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Preposterous Sketches (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40336251 - posZ: 23.590023 - rotX: 359.987427 + posX: -63.3596954 + posY: 3.53167915 + posZ: -65.68801 + rotX: 0.0124424817 rotY: 270.0001 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545201 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c1d796 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Survival Knife (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.05881 - posY: 3.16396856 - posZ: -94.18238 - rotX: 0.020808924 - rotY: 269.999939 - rotZ: 0.01677181 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266307 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 6aea76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Occult Scraps - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.53872 - posY: 3.16745186 - posZ: -79.12552 - rotX: 0.0208098 - rotY: 269.999329 - rotZ: 0.01677202 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4167c0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: True Understanding - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.160006255 - posY: 1.34454572 - posZ: 78.25001 - rotX: 0.02081884 - rotY: 269.9646 - rotZ: 0.0167625323 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368516 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 756a35 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Kukri - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36461318 - posZ: 75.95 - rotX: 0.020810049 - rotY: 269.99408 - rotZ: 0.0167692974 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226345 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eea4ef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Well Prepared (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40789211 - posZ: 0.4300183 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444021 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4408': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1e9213 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Storm of Spirits (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.9545746 - posY: 1.56445456 - posZ: 24.95834 - rotX: 359.985535 - rotY: 270.028625 - rotZ: 359.981476 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266306 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ad63bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Showmanship - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.29559 - posY: 3.167245 - posZ: -81.13954 - rotX: 0.0208086949 - rotY: 269.999329 - rotZ: 0.016770551 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430644 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 23c3e5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hyperawareness (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40770531 - posZ: 7.49002075 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538723 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c5fb42 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Azure Flame (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.5975952 - posY: 3.28375673 - posZ: -72.29174 - rotX: 0.0208092667 - rotY: 270.001343 - rotZ: 0.0167678669 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538807 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a614de - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Feed the Mind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.1284676 - posY: 3.285403 - posZ: -72.11149 - rotX: 0.0208092984 - rotY: 269.997253 - rotZ: 0.0167689845 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538614 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d099f4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sneak By - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -45.104393 - posY: 2.842704 - posZ: -102.308365 - rotX: 0.020808693 - rotY: 270.000061 - rotZ: 0.0167713556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368427 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c18ebe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Laboratory Assistant - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000273 - posY: 1.33938324 - posZ: 69.05 - rotX: 0.02081406 - rotY: 269.978821 - rotZ: 0.01676627 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368823 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f34090 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rabbit's Foot - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.3146324 - posY: 1.3624531 - posZ: -65.92177 - rotX: 0.020795932 - rotY: 270.040283 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431205 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: b2ef43 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Indebted - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.12614 - posY: 1.52719057 - posZ: 71.0024948 - rotX: 0.0208145846 - rotY: 270.0049 - rotZ: 0.0171645433 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293313 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2933': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Signs of the Black Stars - DragSelectable: true - GMNotes: '' - GUID: b40b98 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: De Vermis Mysteriis (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.93073 - posY: 1.58519077 - posZ: -53.4560623 - rotX: 0.0240930859 - rotY: 270.008118 - rotZ: 0.00300934631 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230329 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 29b842 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rite of Seeking - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.4000015 - posY: 1.33686638 - posZ: 87.45 - rotX: 0.0208066311 - rotY: 270.0064 - rotZ: 0.01677684 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368622 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bc3451 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Burglary - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35354865 - posZ: 78.25 - rotX: 0.020810673 - rotY: 269.98877 - rotZ: 0.0167701356 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232941 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Madness. - DragSelectable: true - GMNotes: '' - GUID: fb943f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Across Space and Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.3010674 - posY: 1.36172926 - posZ: -55.04807 - rotX: 0.02080917 - rotY: 270.0 - rotZ: 0.0167706218 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230355 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b3ce16 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shrivelling (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41985285 - posZ: -31.6099911 - rotX: 359.987427 - rotY: 270.000153 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314003 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3140': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 25ad44 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Kerosene (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.4041698 - posZ: 14.2300215 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368434 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3684': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Professor of Entomology - DragSelectable: true - GMNotes: '' - GUID: 9934d2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Milan Christopher - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3597 - posY: 3.53139567 - posZ: -65.68798 - rotX: 0.0124389669 - rotY: 270.0 - rotZ: 180.0142 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371112 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3711': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '876557' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Duke - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.51822 - posY: 1.49823117 - posZ: -57.04474 - rotX: 0.02328792 - rotY: 270.0 - rotZ: 0.0151858637 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4477': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4d9a97 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sharp Vision (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.5191231 - posY: 1.29761434 - posZ: -81.5001 - rotX: 0.0208087079 - rotY: 269.999939 - rotZ: 0.01677183 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233607 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2336': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Logistical Genius - DragSelectable: true - GMNotes: '' - GUID: 4120f3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lt. Wilson Stewart - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3919563 - posY: 1.31971157 - posZ: -46.01424 - rotX: 359.394073 - rotY: 270.001282 - rotZ: 0.016761262 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378017 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3780': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 006d44 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Another Day, Another Dollar (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.317162 - posY: 1.39417815 - posZ: 37.881134 - rotX: 359.987427 - rotY: 270.0001 - rotZ: 359.984558 + rotZ: 180.005081 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -22280,322 +14540,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 444022 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4408': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 968a26 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stargazing (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 93.17623 - posY: 1.5469203 - posZ: 25.128376 - rotX: 359.989166 - rotY: 270.027618 - rotZ: 359.9685 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230308 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6656ad - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ward of Protection - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33462334 - posZ: 71.35 - rotX: 0.0208182335 - rotY: 269.966949 - rotZ: 0.01676331 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277812 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2778': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8dce44 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crack the Case - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.2288666 - posY: 1.32635069 - posZ: 58.7566338 - rotX: 0.0208084267 - rotY: 269.999451 - rotZ: 0.0167746413 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315249 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f8dc01 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Skeleton Key (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41075873 - posZ: -15.8000069 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266301 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 8b68f4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crisis of Faith - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.67489 - posY: 3.16815019 - posZ: -79.05465 - rotX: 0.0208086632 - rotY: 269.999329 - rotZ: 0.0167705454 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292816 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2928': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: db2c81 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Telescopic Sight (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.501873 - posY: 1.51489115 - posZ: -53.5625954 - rotX: 0.02066103 - rotY: 270.0146 - rotZ: 0.015778644 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545330 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8ffa44 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: One-Two Punch (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.994278 - posY: 3.16984415 - posZ: -72.63637 - rotX: 0.0208082423 - rotY: 270.0 - rotZ: 0.016771188 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277711 + CardID: 277710 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -22612,7 +14557,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: c2d211 + GUID: 5115d9 Grid: true GridProjection: false Hands: true @@ -22623,474 +14568,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Swift Reflexes + Nickname: Intel Report 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 + 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: 368835 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '812685' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Devil's Luck (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.149994 - posY: 1.39610553 - posZ: 32.50001 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444024 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4408': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a33acd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Open Gate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 93.43073 - posY: 1.5662576 - posZ: 25.0269451 - rotX: 359.986816 - rotY: 270.027649 - rotZ: 359.9844 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371704 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3717': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 66d810 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Zoey's Cross - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.3385239 - posY: 1.35815763 - posZ: -56.8936729 - rotX: 0.0154275233 - rotY: 270.0 - rotZ: 0.01495364 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448736 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4487': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: ae16e8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Parasite - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.6763325 - posY: 1.6884582 - posZ: 7.569965 - rotX: 359.9201 - rotY: 269.999939 - rotZ: 0.0168768261 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368409 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a8e495 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Anatomical Diagrams - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.239993 - posY: 1.34263766 - posZ: 75.9500046 - rotX: 0.0208109878 - rotY: 269.986359 - rotZ: 0.0167700239 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274609 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2746': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: From the Brink - DragSelectable: true - GMNotes: '' - GUID: 46187b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Five of Pentacles (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.4004482 - posZ: 16.4 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450607 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a7da13 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Springfield M1903 (4) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.4735565 - posY: 1.50676835 - posZ: -51.0385246 - rotX: 0.0208019074 - rotY: 269.9996 - rotZ: 0.0167924613 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368839 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 017821 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Flare (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.39920747 - posZ: 21.0000057 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450616 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '308967' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quick Thinking (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8120155 - posY: 1.43324757 - posZ: -51.2351761 - rotX: 0.328339547 - rotY: 270.0354 - rotZ: 0.2912413 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230341 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4d74f6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ward of Protection (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40930641 - posZ: 7.490021 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368515 + CardID: 368523 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -23107,7 +14602,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: bb1cce + GUID: 3c959c Grid: true GridProjection: false Hands: true @@ -23118,30 +14613,120 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Flashlight + Nickname: Relic Hunter (3) 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 + 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: 527401 + CardID: 450611 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5274': + '4506': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eccb8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Knowledge is Power (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.9288673 + posY: 1.46812129 + posZ: -50.9870834 + rotX: 0.0208068173 + rotY: 269.999664 + rotZ: 0.016770646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bd3ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Combat Training (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40044749 + posZ: 28.0300274 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ @@ -23152,7 +14737,7 @@ ContainedObjects: Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: c17498 + GUID: 249d83 Grid: true GridProjection: false Hands: true @@ -23163,33 +14748,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Paranoia + Nickname: Haunted SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -54.3827248 - posY: 3.28183174 - posZ: -72.54614 - rotX: 359.9788 - rotY: 270.0022 - rotZ: 174.093964 + 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: 261704 + CardID: 450600 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2617': + '4506': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -23197,7 +14782,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: '857238' + GUID: 6411d5 Grid: true GridProjection: false Hands: true @@ -23208,24 +14793,114 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Hatchet Man + Nickname: Machete (Taboo) 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 + posX: -53.21384 + posY: 1.30519938 + posZ: -50.8994 + rotX: 0.0208084155 + rotY: 269.999664 + rotZ: 0.016770497 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 550801 + CardID: 553229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ec7702 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Predestined + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.19639 + posY: 1.42133653 + posZ: -57.25017 + rotX: 0.0208085 + rotY: 270.000061 + rotZ: 0.016771175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0edef1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Chance Encounter (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40355015 + posZ: 4.899999 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550824 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -23239,10 +14914,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Weakness + Description: '' DragSelectable: true GMNotes: '' - GUID: e628de + GUID: 2f2190 Grid: true GridProjection: false Hands: true @@ -23253,33 +14928,78 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Called by the Mists + Nickname: Unexpected Courage (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -53.19686 - posY: 3.16954231 - posZ: -71.48272 - rotX: 0.0144210625 - rotY: 270.0191 - rotZ: 0.0116316061 + posX: -59.0424232 + posY: 3.285307 + posZ: -69.20315 + rotX: 0.0147311278 + rotY: 270.0195 + rotZ: 0.011882782 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430908 + CardID: 538804 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2728': + '2662': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Book of Books + DragSelectable: true + GMNotes: '' + GUID: d287bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Celaeno Fragments + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.0273056 + posY: 3.28247786 + posZ: -74.3872757 + rotX: 0.0208099969 + rotY: 269.997284 + rotZ: 0.0167706665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4477': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -23287,7 +15007,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8aa0c3 + GUID: 4d9a97 Grid: true GridProjection: false Hands: true @@ -23298,30 +15018,255 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Deny Existence + Nickname: Sharp Vision (1) 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 + posX: -49.5191231 + posY: 1.29761434 + posZ: -81.5001 + rotX: 0.0208087079 + rotY: 269.999939 + rotZ: 0.01677183 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230502 + CardID: 226349 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2305': + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e35bc2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dynamite Blast (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41161442 + posZ: -13.3699875 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4488': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d6085d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Eye of Truth (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.90797 + posY: 1.296707 + posZ: -82.87657 + rotX: 0.0208083577 + rotY: 270.0 + rotZ: 0.01677057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2779': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dffa9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Belly of the Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.2078037 + posY: 1.32907391 + posZ: 64.31217 + rotX: 0.0208104178 + rotY: 269.9969 + rotZ: 0.0167667456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.8579521 + posY: 1.36627233 + posZ: -63.36624 + rotX: 0.0207980759 + rotY: 270.040222 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 541200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5412': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830597915335413/F6B6100F5713A33245CFBB6F1D7316AA2DD0F760/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Advanced + DragSelectable: true + GMNotes: '' + GUID: 9c4900 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: On the Lam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.8911133 + posY: 1.29766488 + posZ: -80.86572 + rotX: 0.0208081119 + rotY: 270.000061 + rotZ: 0.01677094 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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/ @@ -23332,7 +15277,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fa777f + GUID: b80459 Grid: true GridProjection: false Hands: true @@ -23343,18 +15288,3843 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Foolishness + Nickname: The Home Front SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -48.8825455 - posY: 3.39966679 - posZ: -65.17031 - rotX: 0.0208071936 - rotY: 270.010773 - rotZ: 0.0167639218 + 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: 274006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d6f8d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tony's Quarry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.39597 + posY: 1.36798072 + posZ: -49.70266 + rotX: 0.0208089426 + rotY: 269.999939 + rotZ: 0.016770659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b9e8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Calling in Favors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.6699944 + posY: 1.368541 + posZ: 85.15 + rotX: 0.0208100677 + rotY: 270.000732 + rotZ: 0.0167711955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4479': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 93381d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Heroic Rescue (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.9259224 + posY: 1.29796028 + posZ: -78.57276 + rotX: 0.0208088644 + rotY: 270.000061 + rotZ: 0.0167711973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.5178833 + posY: 1.36590815 + posZ: -66.2731552 + rotX: 0.0207964685 + rotY: 270.040344 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 17319c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Azure Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.417305 + posY: 3.28208518 + posZ: -69.3757858 + rotX: 0.020811379 + rotY: 270.001343 + rotZ: 0.01676319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230362 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f2877e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sacrifice (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40248215 + posZ: 32.7900238 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 14e212 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Delve Too Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.08289 + posY: 1.86691129 + posZ: -105.318573 + rotX: 0.0208076313 + rotY: 270.000061 + rotZ: 0.0167738479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Head Librarian + DragSelectable: true + GMNotes: '' + GUID: 66197b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Henry Armitage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.2092628 + posY: 2.37336755 + posZ: -67.14607 + rotX: 0.020810511 + rotY: 270.000031 + rotZ: 0.0167691223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Survivor + DragSelectable: true + GMNotes: '' + GUID: cbe256 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tennessee Sour Mash (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.6885529 + posY: 1.65134215 + posZ: -48.9234848 + rotX: 359.90155 + rotY: 269.982483 + rotZ: 359.886169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 552220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 49a91e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Roland's .38 Special + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 86.96031 + posY: 1.51700377 + posZ: -58.5377922 + rotX: 0.00607056357 + rotY: 269.999817 + rotZ: 0.0136969965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315259 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e7f37b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Suggestion (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.749992 + posY: 1.41696262 + posZ: -38.80001 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f9de4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keen Eye (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41285515 + posZ: -17.969986 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450612 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 922d4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Segment of Onyx (1) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5141525 + posY: 1.45858431 + posZ: -51.151886 + rotX: 0.0208085477 + rotY: 269.999664 + rotZ: 0.0167702287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4408': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1e9213 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Storm of Spirits (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.9545746 + posY: 1.56445456 + posZ: 24.95834 + rotX: 359.985535 + rotY: 270.028625 + rotZ: 359.981476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450620 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ff1dfe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: All In (5) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.35118 + posY: 1.38161 + posZ: -51.1732025 + rotX: 0.0208080132 + rotY: 269.999664 + rotZ: 0.0167661514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4479': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7dc42a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Safeguard (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.1557045 + posY: 1.29952526 + posZ: -70.459816 + rotX: 0.0208098479 + rotY: 269.9981 + rotZ: 0.016770659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e69708 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Enlightenment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.78602 + posY: 3.28266287 + posZ: -75.9813461 + rotX: 0.0208097789 + rotY: 269.997223 + rotZ: 0.0167707633 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3799': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Untranslated + DragSelectable: true + GMNotes: '' + GUID: b81dcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2744427 + posY: 1.67508531 + posZ: 2.87569213 + rotX: 359.9198 + rotY: 269.9968 + rotZ: 0.01500414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.09517 + posY: 1.505425 + posZ: 82.26855 + rotX: 0.02296656 + rotY: 270.017578 + rotZ: 0.002943524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b4121c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Farsight (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.5906525 + posY: 3.16649461 + posZ: -81.15508 + rotX: 0.0208091084 + rotY: 269.997253 + rotZ: 0.0167697426 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eca1c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 368705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcdcea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"You handle this one!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500023 + posY: 1.35680318 + posZ: 85.15 + rotX: 0.0208152775 + rotY: 269.9749 + rotZ: 0.0167649742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 45c582 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 275733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Spell. + DragSelectable: true + GMNotes: '' + GUID: 863f1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.35961 + posY: 3.6559422 + posZ: -65.68756 + rotX: 0.0124424249 + rotY: 269.999939 + rotZ: 180.020645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bba97a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Words + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3107014 + posY: 1.67212927 + posZ: -4.16523552 + rotX: 359.9424 + rotY: 269.991333 + rotZ: -0.005215286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a4673 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fire Extinguisher (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.37135 + posY: 3.51983881 + posZ: -65.69757 + rotX: 0.0124902874 + rotY: 270.0 + rotZ: 180.027863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Two Days Until Retirement + DragSelectable: true + GMNotes: '' + GUID: 5630c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sergeant Monroe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.17111 + posY: 2.37525 + posZ: -70.6252747 + rotX: 0.0211165547 + rotY: 270.0 + rotZ: 0.0169378966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Feisty Mechanic + DragSelectable: true + GMNotes: '' + GUID: ad0ef0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lonnie Ritter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.9314423 + posY: 3.28531146 + posZ: -69.8925552 + rotX: 0.0208135452 + rotY: 269.9931 + rotZ: 0.0167604648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: deea7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Catling Gun + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.15583 + posY: 1.50774717 + posZ: 12.3576326 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168947745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4407': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cdbb37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Easy Mark (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.19893 + posY: 1.56512642 + posZ: 29.48283 + rotX: 359.987854 + rotY: 269.9784 + rotZ: 359.9843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ff9f23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Segment of Onyx (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.24019 + posY: 1.40603662 + posZ: 12.822814 + rotX: 359.987183 + rotY: 270.0061 + rotZ: 359.986481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b0c61c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On Your Own (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41347623 + posZ: -31.9000053 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '889121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.3516556 + posZ: 82.85 + rotX: 0.0208114255 + rotY: 269.987427 + rotZ: 0.0167701989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430648 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Protective Amulet + DragSelectable: true + GMNotes: '' + GUID: b00b76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Disc of Itzamna (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41018677 + posZ: -1.7099812 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 97986a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6299963 + posY: 1.34099555 + posZ: 50.6499977 + rotX: 0.0207956564 + rotY: 270.027039 + rotZ: 0.0167747736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c33a10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Liquid Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500027 + posY: 1.35489511 + posZ: 82.85 + rotX: 0.0208108556 + rotY: 269.98877 + rotZ: 0.0167696662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3135': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Over the Threshold and Beyond + DragSelectable: true + GMNotes: '' + GUID: 05da68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seal of the Seventh Sign (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.75998 + posY: 1.3775233 + posZ: -47.71002 + rotX: 0.02080785 + rotY: 269.999878 + rotZ: 0.0167682189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ba16cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.640003 + posY: 1.34072971 + posZ: 73.65 + rotX: 0.0208145548 + rotY: 269.978821 + rotZ: 0.0167659223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 29bafb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: More Bark Than Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.11447 + posY: 1.47629988 + posZ: 12.3989725 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168736614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.970005 + posY: 1.35377693 + posZ: 52.9500046 + rotX: 0.0208033528 + rotY: 270.012939 + rotZ: 0.01677898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f91e14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guiding Spirit (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.3563347 + posY: 1.51768577 + posZ: -53.4520569 + rotX: 0.0219245274 + rotY: 270.0133 + rotZ: 0.016176559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9956d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Taunt (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40727174 + posZ: 2.73001885 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b8843c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nimble + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.6080437 + posY: 3.28531933 + posZ: -73.05481 + rotX: 0.0208127331 + rotY: 269.9931 + rotZ: 0.0167625137 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f59085 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 368502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.367756 + posZ: 78.25 + rotX: 0.0208083075 + rotY: 269.997284 + rotZ: 0.0167704355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.69558 + posY: 1.366081 + posZ: -59.2587624 + rotX: 0.020795757 + rotY: 270.0401 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: It Discombobulates Felines + DragSelectable: true + GMNotes: '' + GUID: 7031aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Feline Discombobulator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8887768 + posY: 1.50694323 + posZ: 8.303365 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168491043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d64c99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Truth from Fiction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.24000382 + posY: 1.340618 + posZ: 69.05 + rotX: 0.02081118 + rotY: 269.986359 + rotZ: 0.0167688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4ea716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Studious (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.560387 + posY: 1.51067376 + posZ: 48.3394127 + rotX: 0.01354435 + rotY: 270.000061 + rotZ: 0.0102723185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 373910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3739': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mysterious Soothsayer + DragSelectable: true + GMNotes: '' + GUID: 03a4de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Anna Kaslow (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3030281 + posY: 1.72431636 + posZ: 5.39502954 + rotX: 359.9199 + rotY: 270.0 + rotZ: 0.0164847765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3141': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 37a2b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blackjack (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40913284 + posZ: -4.169983 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5a2b49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cherished Keepsake (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.4778328 + posY: 3.28506732 + posZ: -71.9391556 + rotX: 0.01442241 + rotY: 270.0191 + rotZ: 0.0116333654 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d88407 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 379021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eafd12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Rite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5311451 + posY: 1.33218 + posZ: 61.67714 + rotX: 0.02081183 + rotY: 269.995056 + rotZ: 0.0167690534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '599209' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Protective Incantation (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40372288 + posZ: 28.1900234 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 29b842 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rite of Seeking + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4000015 + posY: 1.33686638 + posZ: 87.45 + rotX: 0.0208066311 + rotY: 270.0064 + rotZ: 0.01677684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.58142 + posY: 1.364494 + posZ: -63.58151 + rotX: 0.0207989458 + rotY: 270.040161 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 295504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f3b3a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gilded Volto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.8639259 + posY: 3.18059015 + posZ: -97.1056061 + rotX: 359.503632 + rotY: 269.998138 + rotZ: 0.0167150069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3773': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7c958e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jake Williams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.09009 + posY: 2.18708086 + posZ: -86.02005 + rotX: 0.0208045971 + rotY: 270.0133 + rotZ: 0.0167789925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d5cac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Taunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300049 + posY: 1.34974778 + posZ: 80.55 + rotX: 0.0207943153 + rotY: 270.027039 + rotZ: 0.0167732947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Self-Centered + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.28279 + posY: 1.52067816 + posZ: 50.95579 + rotX: 0.02054261 + rotY: 270.00177 + rotZ: 180.013779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 295502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0f54e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Medico Della Peste + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.5321274 + posY: 1.29888833 + posZ: -75.8911 + rotX: 0.0208082646 + rotY: 270.0001 + rotZ: 0.0167710669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2933': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Signs of the Black Stars + DragSelectable: true + GMNotes: '' + GUID: b40b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: De Vermis Mysteriis (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.93073 + posY: 1.58519077 + posZ: -53.4560623 + rotX: 0.0240930859 + rotY: 270.008118 + rotZ: 0.00300934631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Transient Thoughts + DragSelectable: true + GMNotes: '' + GUID: 3289b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Stone (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.2151833 + posY: 3.174882 + posZ: -77.24949 + rotX: 0.0208067745 + rotY: 270.0092 + rotZ: 0.0167708267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e99f0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stirring Up Trouble (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45762 + posY: 3.524239 + posZ: -65.76757 + rotX: 0.0166529622 + rotY: 270.0 + rotZ: 180.192642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430652 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Guiding Stones + DragSelectable: true + GMNotes: '' + GUID: a14a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Archaic Glyphs (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41328871 + posZ: -13.2099848 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371565 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3715': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hour of the Huntress + DragSelectable: true + GMNotes: '' + GUID: c729ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Green Man Medallion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.55286 + posY: 1.52031779 + posZ: -49.5625725 + rotX: 0.0170907769 + rotY: 270.023438 + rotZ: 0.0156170158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Signed in Blood + DragSelectable: true + GMNotes: '' + GUID: ae3775 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Black Book + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.35961 + posY: 3.65594316 + posZ: -65.68756 + rotX: 0.0124454033 + rotY: 269.999939 + rotZ: 180.02034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3133': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5f33be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Handcuffs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34649336 + posZ: 73.65001 + rotX: 0.0208175331 + rotY: 269.969421 + rotZ: 0.0167613383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: acf2b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"If it bleeds..."' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300058 + posY: 1.34705472 + posZ: 71.3500061 + rotX: 0.0207952652 + rotY: 270.027039 + rotZ: 0.01677259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c2d9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bait and Switch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.36118257 + posZ: 78.25 + rotX: 0.0208049417 + rotY: 270.012939 + rotZ: 0.0167780388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0ce005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Esoteric Atlas (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.42852 + posY: 1.51032472 + posZ: -53.8481 + rotX: 0.0210976042 + rotY: 270.016876 + rotZ: 0.0175880175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Stygian Waymark + DragSelectable: true + GMNotes: '' + GUID: 698fcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Chthonian Stone (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.721096 + posY: 3.28535 + posZ: -72.75358 + rotX: 0.0208072979 + rotY: 270.0092 + rotZ: 0.0167705286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 308be1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sure Gamble (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41386068 + posZ: -27.300005 + rotX: 359.987427 + rotY: 269.999725 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Untranslated + DragSelectable: true + GMNotes: '' + GUID: cbfc12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Archaic Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.63999367 + posY: 1.344096 + posZ: 85.15001 + rotX: 0.0208136719 + rotY: 269.978821 + rotZ: 0.0167661384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450602 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ecbea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pathfinder (1) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.1718178 + posY: 1.30479944 + posZ: -51.0767 + rotX: 0.0208092015 + rotY: 269.999664 + rotZ: 0.0167714041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3d57b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mists of R'lyeh (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.62183 + posY: 3.284762 + posZ: -72.6944351 + rotX: 0.0208067857 + rotY: 270.0092 + rotZ: 0.0167715121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450605 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 88a481 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Streetwise (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.9213829 + posY: 1.30494022 + posZ: -50.9067345 + rotX: 0.0208083633 + rotY: 269.999664 + rotZ: 0.0167705156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.16000621 + posY: 1.345219 + posZ: 80.55001 + rotX: 0.02081996 + rotY: 269.9646 + rotZ: 0.016761994 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: In Way Over His Head + DragSelectable: true + GMNotes: '' + GUID: d99735 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jerome Davids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.5597267 + posY: 1.354802 + posZ: 64.40544 + rotX: 0.0208125934 + rotY: 269.988464 + rotZ: 0.0167639647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2ea0d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Token of Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.658844 + posY: 1.2999934 + posZ: -58.2065773 + rotX: 0.0208082758 + rotY: 270.0 + rotZ: 0.0167708118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5690d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Knuckleduster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.34950924 + posZ: 64.45 + rotX: 0.0208122581 + rotY: 269.98877 + rotZ: 0.0167700984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71a760 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Test of Will (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.65601 + posY: 3.28511643 + posZ: -70.35067 + rotX: 0.0147328787 + rotY: 270.0195 + rotZ: 0.0118839992 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 180b5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sell Your Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.9590836 + posY: 3.16908 + posZ: -74.77038 + rotX: 0.0208086688 + rotY: 269.999756 + rotZ: 0.0167709328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368433 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Assistant Curator + DragSelectable: true + GMNotes: '' + GUID: 27e7b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Elli Horowitz + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0399933 + posY: 1.34353435 + posZ: 87.4500046 + rotX: 0.0208115932 + rotY: 269.984833 + rotZ: 0.0167669188 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -23404,6 +19174,276 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 315243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2fba3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Switchblade (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.406416 + posZ: 0.299998581 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450610 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Dealer in Secrets + DragSelectable: true + GMNotes: '' + GUID: a8afba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mr. "Rook" (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8497238 + posY: 1.47770345 + posZ: -51.25452 + rotX: 0.0208078567 + rotY: 269.999756 + rotZ: 0.0167897772 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 99d061 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 230313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f3c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypnotic Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6 + posY: 1.3312571 + posZ: 59.85 + rotX: 0.0208162144 + rotY: 269.96698 + rotZ: 0.0167607628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1258c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Logical Reasoning (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.24739 + posY: 1.45532513 + posZ: 13.47808 + rotX: 359.984955 + rotY: 270.006531 + rotZ: 359.941345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a06aa7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Recall the Future (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76001 + posY: 1.4111675 + posZ: 0.590019047 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 380229 ColorDiffuse: @@ -23449,11436 +19489,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 315251 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d7dbac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Streetwise (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41199958 - posZ: -20.4000072 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371013 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3710': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 97781f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wracked by Nightmares - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.6226044 - posY: 1.37552524 - posZ: -49.2005348 - rotX: 0.0178489313 - rotY: 269.9939 - rotZ: 0.015755007 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ffa4f9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 430636 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c17f2c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Forewarned (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40212178 - posZ: 28.1900234 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368824 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f474b1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stray Cat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.8579521 - posY: 1.36627233 - posZ: -63.36624 - rotX: 0.0207980759 - rotY: 270.040222 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538719 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6b2e97 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grotesque Statue (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.40162 - posY: 3.28469515 - posZ: -73.7900848 - rotX: 0.0208099112 - rotY: 270.001343 - rotZ: 0.0167665463 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230340 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 644af9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Studies (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40868592 - posZ: 9.790023 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538802 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: a2e7d7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Obsessive - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.1068153 - posY: 3.28374267 - posZ: -75.74227 - rotX: 0.0208097342 - rotY: 269.997223 - rotZ: 0.0167702455 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440925 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4409': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Treachery - DragSelectable: true - GMNotes: '' - GUID: aafc17 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bloodlust - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.1916046 - posY: 1.36471915 - posZ: -64.52677 - rotX: 0.0206168424 - rotY: 270.022461 - rotZ: 0.009735803 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377537 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3775': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 14c396 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Serpents of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 27.3039474 - posY: 1.45803213 - posZ: -82.09155 - rotX: 0.02075481 - rotY: 270.056458 - rotZ: 5.80825233 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440722 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4407': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e3bd71 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crystallizer of Dreams - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.95309 - posY: 1.40061021 - posZ: 29.4435387 - rotX: 359.9884 - rotY: 269.9784 - rotZ: 359.978058 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 290321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2903': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c1ce8e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The 13th Vision - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -68.38262 - posY: 2.36265874 - posZ: -70.43153 - rotX: 0.0208098218 - rotY: 270.0 - rotZ: 359.983521 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444451 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3801': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3b8cb7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mystifying Song - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 4.54795074 - posY: 1.51128662 - posZ: -84.96509 - rotX: 5.05340624 - rotY: 270.0641 - rotZ: 0.0321298726 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368505 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0f32e8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Run For Your Life - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.36573625 - posZ: 71.35 - rotX: 0.0208081417 - rotY: 269.997284 - rotZ: 0.01677328 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274011 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6945f7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Watcher from Another Dimension - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.8951149 - posY: 1.36539435 - posZ: -57.9189568 - rotX: 0.0208037551 - rotY: 270.0197 - rotZ: 0.0167778321 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368843 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 06228f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stroke of Luck (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40292978 - posZ: 7.200001 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368508 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: acb83a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unexpected Courage - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.36506307 - posZ: 69.05 - rotX: 0.02081015 - rotY: 269.997284 - rotZ: 0.0167725924 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315242 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 15643b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hard Knocks (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40579569 - posZ: 2.59999871 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378618 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3786': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d6eda3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Agency Backup (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.024666 - posY: 1.39823854 - posZ: 23.0658474 - rotX: 359.987427 - rotY: 269.999481 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545325 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 54293e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Boxing Gloves (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.8833427 - posY: 3.169314 - posZ: -73.31997 - rotX: 0.0208083354 - rotY: 270.0 - rotZ: 0.0167705938 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226353 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bc80ab - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: First Aid (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41471636 - posZ: -24.86999 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538603 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cc11e4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lockpicks - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.46911 - posY: 3.28525186 - posZ: -70.1147461 - rotX: 0.0208143983 - rotY: 269.9931 - rotZ: 0.0167597141 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447932 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4479': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ebdd78 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .35 Winchester - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.4082336 - posY: 1.300362 - posZ: -71.00999 - rotX: 0.0208086018 - rotY: 270.000061 - rotZ: 0.01677047 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550822 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fd393b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Look what I found!" (2)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.85212 - posY: 3.2834022 - posZ: -74.7243 - rotX: 0.0147321578 - rotY: 270.0195 - rotZ: 0.01188326 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266326 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d8b64b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Promise of Power - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.8023376 - posY: 3.283064 - posZ: -74.32583 - rotX: 0.0208089463 - rotY: 269.999878 - rotZ: 0.0167692434 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c563c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Anything You Can Do, Better - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.02157 - posY: 3.285268 - posZ: -72.7382355 - rotX: 0.02081092 - rotY: 269.9931 - rotZ: 0.0167650357 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230328 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '914053' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shrivelling - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -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: 431115 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2698': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Enemy - DragSelectable: true - GMNotes: '' - GUID: da227d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Thing That Follows - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.6971741 - posY: 1.516075 - posZ: 71.10236 - rotX: 0.02737251 - rotY: 269.988983 - rotZ: 0.00684426632 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2fdcc9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Vault of Knowledge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.2160721 - posY: 5.37988853 - posZ: -67.6042252 - rotX: 0.020809019 - rotY: 269.997284 - rotZ: 0.0167697947 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 441024 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4410': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Markings of Isis - DragSelectable: true - GMNotes: '' - GUID: 66d5a3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Archaic Glyphs (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.97676 - posY: 1.36161959 - posZ: -63.2690926 - rotX: 0.0208061747 - rotY: 270.0178 - rotZ: 0.0167769343 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 276300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2763': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e470cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Premonition - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33798957 - posZ: 82.85 - rotX: 0.02081856 - rotY: 269.96698 - rotZ: 0.0167606138 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 370926 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3709': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 576d70 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Heirloom of Hyperborea - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.5228539 - posY: 2.19076967 - posZ: -89.842 - rotX: 359.9792 - rotY: 270.0 - rotZ: 180.005737 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274007 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Worlds within Worlds - DragSelectable: true - GMNotes: '' - GUID: b8c891 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gate Box - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.39115 - posY: 1.52415013 - posZ: -50.30054 - rotX: 0.0206940472 - rotY: 270.019836 - rotZ: 0.0163330827 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368845 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0414b4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dig Deep (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40417051 - posZ: 2.59999847 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0cc3e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 230333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '599209' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Protective Incantation (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40372288 - posZ: 28.1900234 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379021 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eafd12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blood-Rite - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -20.5311451 - posY: 1.33218 - posZ: 61.67714 - rotX: 0.02081183 - rotY: 269.995056 - rotZ: 0.0167690534 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550805 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5888da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Keyring - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.5689125 - posY: 3.28526974 - posZ: -69.90754 - rotX: 0.0144240744 - rotY: 270.0191 - rotZ: 0.0116343489 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368846 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 439af2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky! (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40479088 - posZ: 0.299998045 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545328 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 85fe46 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Taunt (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.2340546 - posY: 3.169604 - posZ: -75.87329 - rotX: 0.0208084155 - rotY: 270.0 - rotZ: 0.0167709012 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368629 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: 'Lookin'' Out For #1' - DragSelectable: true - GMNotes: '' - GUID: b51688 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Joey "The Rat" Vigil - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500065 - posY: 1.34748948 - posZ: 57.5500031 - rotX: 0.0208110325 - rotY: 269.9888 - rotZ: 0.0167695936 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 296704 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2967': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 96ae32 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monstrous Transformation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.55273 - posY: 1.30414021 - posZ: -57.92313 - rotX: 0.0208086055 - rotY: 270.0 - rotZ: 0.016771147 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380125 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3801': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d926f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Prophecies - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.18582 - posY: 1.68684137 - posZ: -4.21236 - rotX: 359.933044 - rotY: 270.002258 - rotZ: 0.0111596575 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274002 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3586e6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Occult Evidence - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.41361 - posY: 1.363961 - posZ: -67.13534 - rotX: 0.0208034515 - rotY: 270.0197 - rotZ: 0.01677786 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538827 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Dark Knowledge - DragSelectable: true - GMNotes: '' - GUID: 2f4507 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Forbidden Tome (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.5784874 - posY: 3.16400886 - posZ: -82.2701 - rotX: 0.0208092239 - rotY: 269.997253 - rotZ: 0.0167695917 - 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1f3f16 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 538806 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dbb0e0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Encyclopedia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.7133255 - posY: 3.72821236 - posZ: -77.05741 - rotX: 0.02080956 - rotY: 269.997284 - rotZ: 0.0167706888 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374330 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3743': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b80459 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Home Front - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.7368431 - posY: 1.64680672 - posZ: -44.52075 - rotX: 0.15098621 - rotY: 269.994263 - rotZ: 359.33197 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 60b353 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Preposterous Sketches - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.24000239 - posY: 1.337925 - posZ: 59.8499947 - rotX: 0.0208115336 - rotY: 269.986359 - rotZ: 0.0167706627 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: edb554 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Barricade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.23999453 - posY: 1.34600389 - posZ: 87.4500046 - rotX: 0.02081109 - rotY: 269.986359 - rotZ: 0.0167644043 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226347 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fe0cc0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .45 Automatic (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41037369 - posZ: -8.769983 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314905 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3149': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 70772b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Oops! (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40665209 - posZ: -6.60000372 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292815 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2928': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Guardian - DragSelectable: true - GMNotes: '' - GUID: 84b918 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Enchanted Blade (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.7760849 - posY: 1.51176524 - posZ: -49.1228828 - rotX: 0.0195764955 - rotY: 269.98288 - rotZ: 0.009112052 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226311 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bb0f6a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Heroic Rescue - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300049 - posY: 1.347728 - posZ: 73.65001 - rotX: 0.0207946822 - rotY: 270.027039 - rotZ: 0.0167737771 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538727 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '591789' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Recharge (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.2989578 - posY: 3.28354979 - posZ: -72.02704 - rotX: 0.02080917 - rotY: 270.001343 - rotZ: 0.0167687181 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545206 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3d57b4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mists of R'lyeh (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.62183 - posY: 3.284762 - posZ: -72.6944351 - rotX: 0.0208067857 - rotY: 270.0092 - rotZ: 0.0167715121 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431818 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3739': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e6efe6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bury Them Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.9744873 - posY: 1.4029851 - posZ: -45.9182663 - rotX: 0.652829766 - rotY: 269.939 - rotZ: 359.007477 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447734 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4477': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ea8324 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Expeditious Retreat (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.8898125 - posY: 1.29929137 - posZ: -71.58855 - rotX: 0.0208090525 - rotY: 269.999939 - rotZ: 0.0167720746 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230353 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f871b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crystalline Elder Sign (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76001 - posY: 1.41861212 - posZ: -27.0099945 - rotX: 359.987427 - rotY: 270.000366 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266309 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4f11a2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Silas's Net - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.57681 - posY: 3.17013431 - posZ: -78.59785 - rotX: 0.020808639 - rotY: 269.999329 - rotZ: 0.016770402 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226320 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d4eb9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trench Knife - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230004 - posY: 1.35053277 - posZ: 87.45 - rotX: 0.0208162982 - rotY: 269.9694 - rotZ: 0.0167616438 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235603 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: "\u2026A Device, of Some Sort" - DragSelectable: true - GMNotes: '' - GUID: e27a30 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.374157 - posY: 3.52680039 - posZ: -65.70076 - rotX: 0.0117934821 - rotY: 269.999969 - rotZ: 180.384445 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266310 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: b9fbff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Siren Call - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.31337 - posY: 3.167749 - posZ: -78.3915558 - rotX: 0.0208085366 - rotY: 269.999329 - rotZ: 0.0167706981 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230349 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 65b30d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Initiate (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.41488981 - posZ: -13.210041 - rotX: 359.987427 - rotY: 270.0008 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368523 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3c959c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic Hunter (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.3970958 - posZ: 23.3000031 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368628 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fe2db3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .41 Derringer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500065 - posY: 1.34816265 - posZ: 59.8500023 - rotX: 0.0208115634 - rotY: 269.9888 - rotZ: 0.0167687647 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448613 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4486': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: A Liar, or a Prophet, or Both - DragSelectable: true - GMNotes: '' - GUID: 16e57b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Black Cat (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.2241611 - posY: 1.69086015 - posZ: -15.2800369 - rotX: 359.9201 - rotY: 269.999878 - rotZ: 0.0168764312 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 552421 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3697': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ca25bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cover Up - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 86.76924 - posY: 1.37650609 - posZ: -58.61718 - rotX: 0.0202569962 - rotY: 270.007629 - rotZ: 0.0163947754 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431110 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2698': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 88a9b3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Overzealous - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.34387 - posY: 1.521027 - posZ: 71.2091 - rotX: 0.0200308 - rotY: 269.999939 - rotZ: 0.0167929437 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440924 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4409': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: "Calamitous Blade of Celepha\xEFs" - DragSelectable: true - GMNotes: '' - GUID: bbd11b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Hungering Blade (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.6895256 - posY: 1.509287 - posZ: -64.4644852 - rotX: 0.04871207 - rotY: 270.0308 - rotZ: 359.983429 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378018 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3780': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d27d12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"You owe me one!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 46.0198975 - posY: 1.3575114 - posZ: 65.64583 - rotX: 0.0208127461 - rotY: 269.982056 - rotZ: 0.01676411 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368521 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c4cf62 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bulletproof Vest (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39771616 - posZ: 21.0000038 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368856 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 83c86b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alter Fate (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.4122355 - posZ: -27.3000031 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444020 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4408': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 283e54 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alchemical Transmutation (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.6973 - posY: 1.364044 - posZ: -55.3335571 - rotX: 0.0208053179 - rotY: 270.017761 - rotZ: 0.016775595 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 00af4f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fight or Flight - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.35848963 - posZ: 69.05 - rotX: 0.02080343 - rotY: 270.012878 - rotZ: 0.0167783517 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Enemy - DragSelectable: true - GMNotes: '' - GUID: b239d7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mob Enforcer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.1295853 - posY: 1.57301271 - posZ: 81.96535 - rotX: 0.0202451628 - rotY: 269.998047 - rotZ: 0.017438814 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315235 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5fe780 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Moxie (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40021229 - posZ: 23.300005 - rotX: 359.987427 - rotY: 269.999725 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274004 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4d9b32 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bounty Contracts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.42096 - posY: 1.49901617 - posZ: -49.8807373 - rotX: 0.0231439564 - rotY: 270.0193 - rotZ: 0.0126447231 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277607 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c7d9b5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Enchanted Blade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.748642 - posY: 1.32271636 - posZ: 46.98568 - rotX: 0.0208090227 - rotY: 269.998566 - rotZ: 0.0167730749 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 546916 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/NSozoRe.jpg - FaceURL: https://i.imgur.com/HLQOkvy.jpg - NumHeight: 5 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Item. Weapon. Relic. Melee. - DragSelectable: true - GMNotes: '' - GUID: dc674e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Khopesh of the Abyss - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -35.6707649 - posY: 2.041185 - posZ: -100.924431 - rotX: 0.020810727 - rotY: 270.0 - rotZ: 0.0167692 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3716': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e68658 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Smite the Wicked - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.515625 - posY: 1.52500629 - posZ: -50.03807 - rotX: 0.037379235 - rotY: 269.966217 - rotZ: 0.06762503 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 275732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2757': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Signed in Blood - DragSelectable: true - GMNotes: '' - GUID: ae3775 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Black Book - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.35961 - posY: 3.65594316 - posZ: -65.68756 - rotX: 0.0124454033 - rotY: 269.999939 - rotZ: 180.02034 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266314 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1ad931 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hand of Fate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.4219437 - posY: 3.16233158 - posZ: -88.09052 - rotX: 0.02080869 - rotY: 269.999 - rotZ: 0.0167701226 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538722 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 219c78 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guts (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.1411438 - posY: 3.283662 - posZ: -74.34069 - rotX: 0.02080953 - rotY: 270.001343 - rotZ: 0.0167674515 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315243 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2fba3b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Switchblade (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.406416 - posZ: 0.299998581 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371209 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3712': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cd94e3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Searching for Izzie - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.87588 - posY: 1.533313 - posZ: -49.37355 - rotX: 0.0206230525 - rotY: 270.0019 - rotZ: 0.0398144238 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2928': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Guardian - DragSelectable: true - GMNotes: '' - GUID: b492cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .45 Thompson (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.9860268 - posY: 1.36414373 - posZ: -55.87514 - rotX: 0.02081064 - rotY: 270.0 - rotZ: 0.01677142 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379555 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3795': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f4bac6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Detective's Colt 1911s - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.403568 - posY: 1.378892 - posZ: -71.7250748 - rotX: 0.0207481515 - rotY: 269.99942 - rotZ: 0.0167482235 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447632 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4476': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1bd139 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Haste (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.716 - posY: 1.30109835 - posZ: -65.63145 - rotX: 0.0208085626 - rotY: 269.999969 - rotZ: 0.0167710073 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: da207b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 292912 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2929': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Rogue - DragSelectable: true - GMNotes: '' - GUID: b5e5f1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tennessee Sour Mash (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.25424 - posY: 1.5068202 - posZ: -48.776722 - rotX: 359.875 - rotY: 269.98233 - rotZ: 359.889984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8cc0a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Magnifying Glass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -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: 379618 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3796': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 060943 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sixth Sense (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.56764 - posY: 1.41171122 - posZ: -11.039938 - rotX: 359.987427 - rotY: 269.999329 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315259 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e7f37b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Suggestion (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749992 - posY: 1.41696262 - posZ: -38.80001 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368805 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 58c435 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stunning Blow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.361744 - posZ: 75.95 - rotX: 0.0208197571 - rotY: 269.9588 - rotZ: 0.0167563129 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551302 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: It Discombobulates Felines - DragSelectable: true - GMNotes: '' - GUID: 7031aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Feline Discombobulator - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.8887768 - posY: 1.50694323 - posZ: 8.303365 - rotX: 359.920135 - rotY: 270.000061 - rotZ: 0.0168491043 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447630 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4476': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 30062e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Three Aces (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8546753 - posY: 1.29860055 - posZ: -78.9555054 - rotX: 0.0208080355 - rotY: 270.0001 - rotZ: 0.01677129 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 2210c1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Amnesia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.09517 - posY: 1.505425 - posZ: 82.26855 - rotX: 0.02296656 - rotY: 270.017578 - rotZ: 0.002943524 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380029 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Muckraker - DragSelectable: true - GMNotes: '' - GUID: 90bf93 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gregory Gry - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.0830517 - posY: 1.524828 - posZ: -0.8738573 - rotX: 359.919342 - rotY: 270.000336 - rotZ: 0.0119857425 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538821 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hunter of Rare Books - DragSelectable: true - GMNotes: '' - GUID: 854c79 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Whitton Greene (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.42091 - posY: 3.16698813 - posZ: -83.21507 - rotX: 0.02080918 - rotY: 269.997253 - rotZ: 0.0167694315 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430906 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2728': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 493b03 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prophesy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000046 - posY: 1.33989763 - posZ: 85.15 - rotX: 0.0208171364 - rotY: 269.970978 - rotZ: 0.0167635083 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 294203 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2942': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Ally. Sorcerer. - DragSelectable: true - GMNotes: '' - GUID: 37a76b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lady Esprit - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.02124 - posY: 1.761565 - posZ: 6.88063335 - rotX: 359.381683 - rotY: 269.978363 - rotZ: 359.9881 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2746': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6fa7fa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Track Shoes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35321534 - posZ: 55.2500038 - rotX: 0.0208173972 - rotY: 269.9702 - rotZ: 0.0167611558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538714 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0988b2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Voice of Ra - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -65.57103 - posY: 3.28240466 - posZ: -68.8954 - rotX: 0.0208105743 - rotY: 270.001343 - rotZ: 0.0167652871 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 546500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5457': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1597044073918730883/0E7FEB9CC85CD11EB5194774E90A73163EDACBEC/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 10b087 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Blasphemous Covenant (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -1.21409059 - posY: 0.973596036 - posZ: -3.568445 - rotX: 5.9898407e-06 - rotY: 270.0 - rotZ: 1.02087542e-05 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 295501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2955': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a42f33 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bauta - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.87838 - posY: 3.16514683 - posZ: -98.8938751 - rotX: 0.0208086148 - rotY: 269.999634 - rotZ: 0.01677102 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538622 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4a45c6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Slip Away (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.1784477 - posY: 3.285562 - posZ: -70.44782 - rotX: 0.0208119359 - rotY: 269.9931 - rotZ: 0.0167640112 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226327 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 86ee68 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Machete - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230006 - posY: 1.34514689 - posZ: 69.05001 - rotX: 0.0208164584 - rotY: 269.9694 - rotZ: 0.0167631 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226317 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9c46da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Emergency Aid - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300068 - posY: 1.34301531 - posZ: 57.5500031 - rotX: 0.0207952857 - rotY: 270.027039 - rotZ: 0.0167731363 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538613 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cc9563 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pilfer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.16951 - posY: 3.28556275 - posZ: -70.02059 - rotX: 0.020811623 - rotY: 269.9931 - rotZ: 0.0167679768 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 231709 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537091085/26A674065298A59068E1D6BA3804D03554C234A3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Skilled Botanist - DragSelectable: true - GMNotes: '' - GUID: a0c2da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Veda Whitsley - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.36957 - posY: 1.30220938 - posZ: -48.6176262 - rotX: 0.0208126362 - rotY: 269.985657 - rotZ: 0.0167656019 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368812 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3f3488 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Chance Encounter - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.35916281 - posZ: 71.35 - rotX: 0.02080517 - rotY: 270.012939 - rotZ: 0.0167774316 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b265c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deduction - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.16000621 - posY: 1.345219 - posZ: 80.55001 - rotX: 0.02081996 - rotY: 269.9646 - rotZ: 0.016761994 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440626 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cf9ca8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Augur - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.34123 - posY: 1.54816771 - posZ: 37.5141525 - rotX: 359.989624 - rotY: 269.9923 - rotZ: 359.9818 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368847 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9bcdee - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Newspaper (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40541124 - posZ: -2.00000286 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545315 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 22bb1e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: One-Two Punch - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.29341 - posY: 3.286482 - posZ: -69.44972 - rotX: 0.0208144 - rotY: 269.979553 - rotZ: 0.0167634841 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226335 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bd3ecc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Combat Training (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40044749 - posZ: 28.0300274 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233604 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2336': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2f1166 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Universal Solvent - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.1666946 - posY: 1.302138 - posZ: -64.00173 - rotX: 0.0208088867 - rotY: 270.0 - rotZ: 0.0167715326 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374014 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dfd48b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Painted World - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.31871462 - posY: 0.622307062 - posZ: -49.1846924 - rotX: -5.89429e-06 - rotY: 269.999939 - rotZ: 359.991943 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550811 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 48e516 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Test of Will - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.1363754 - posY: 3.28423262 - posZ: -71.51533 - rotX: 0.0147310011 - rotY: 270.0195 - rotZ: 0.0118820174 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377436 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3774': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0e4a82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Codex of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.3793259 - posY: 2.1848042 - posZ: -94.20157 - rotX: 0.02080714 - rotY: 270.000854 - rotZ: 0.0167760067 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 296500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2965': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Ally. Believer. - DragSelectable: true - GMNotes: '' - GUID: 1e7f1b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Abbess Allegria Di Biase - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.02915 - posY: 1.77067351 - posZ: 4.416883 - rotX: 2.0594604 - rotY: 270.102448 - rotZ: 3.75599837 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368851 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c6c260 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cornered (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40851319 - posZ: -13.5000057 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235667 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Forestalling the Future - DragSelectable: true - GMNotes: '' - GUID: 7667ef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.0404434 - posY: 1.31665075 - posZ: -74.18784 - rotX: 0.0245627742 - rotY: 270.0043 - rotZ: 0.8296155 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 373910 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3739': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mysterious Soothsayer - DragSelectable: true - GMNotes: '' - GUID: 03a4de - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Anna Kaslow (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.3030281 - posY: 1.72431636 - posZ: 5.39502954 - rotX: 359.9199 - rotY: 270.0 - rotZ: 0.0164847765 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 549300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5493': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/766099859120034153/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373727958826520/EE54EF6510734FC86ADD47E84DB253493A2F87B7/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f6b1b6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Eldritch Sophist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.61196 - posY: 3.284188 - posZ: -74.24138 - rotX: 0.020808626 - rotY: 270.0 - rotZ: 0.0167713128 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: d83baf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Psychosis - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.05512 - posY: 1.54381335 - posZ: 81.50433 - rotX: 0.0185714755 - rotY: 269.999481 - rotZ: 0.0229028482 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374014 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '170538' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Painted World - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.31871462 - posY: 0.6395771 - posZ: -49.1846924 - rotX: -5.89429e-06 - rotY: 269.999939 - rotZ: 359.991943 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5c3dd0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Say Your Prayers - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07001 - posY: 1.36977577 - posZ: 85.15001 - rotX: 0.0208101626 - rotY: 269.9973 - rotZ: 0.0167729165 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dfbc13 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leather Jacket - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.20998 - posY: 3.28602529 - posZ: -69.89087 - rotX: 0.0208133571 - rotY: 269.9931 - rotZ: 0.01676065 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374014 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '170538' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Painted World - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.05049372 - posY: 0.475667953 - posZ: -49.01768 - rotX: -4.56944e-06 - rotY: 269.999939 - rotZ: 359.991943 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545203 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Transient Thoughts - DragSelectable: true - GMNotes: '' - GUID: 3289b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Stone (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.2151833 - posY: 3.174882 - posZ: -77.24949 - rotX: 0.0208067745 - rotY: 270.0092 - rotZ: 0.0167708267 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368861 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Forgotten Daughter - DragSelectable: true - GMNotes: '' - GUID: fb9dbb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Aquinnah (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.149994 - posY: 1.41595781 - posZ: -41.1000137 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538623 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '982716' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Manual Dexterity (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.4477119 - posY: 3.28514123 - posZ: -70.45213 - rotX: 0.0208119471 - rotY: 269.9931 - rotZ: 0.0167645179 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430655 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Acidic Ichor - DragSelectable: true - GMNotes: '' - GUID: fa61ba - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.41577017 - posZ: -22.40999 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230362 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f2877e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sacrifice (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40248215 - posZ: 32.7900238 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 370827 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3708': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7275bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Memory - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.1921158 - posY: 1.37513125 - posZ: -65.1841354 - rotX: 0.0197697822 - rotY: 269.863434 - rotZ: 0.0104709994 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538804 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Book of Books - DragSelectable: true - GMNotes: '' - GUID: d287bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Celaeno Fragments - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.0273056 - posY: 3.28247786 - posZ: -74.3872757 - rotX: 0.0208099969 - rotY: 269.997284 - rotZ: 0.0167706665 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430653 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Prophecy Foretold - DragSelectable: true - GMNotes: '' - GUID: 3d35aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Archaic Glyphs (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41390908 - posZ: -15.509985 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449034 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4490': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b45c82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Garrote Wire (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.2366447 - posY: 1.30114961 - posZ: -71.01385 - rotX: 0.0208082478 - rotY: 270.000031 - rotZ: 0.0167703424 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368432 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mortal Reminder - DragSelectable: true - GMNotes: '' - GUID: c1a687 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tooth of Eztli - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.640002 - posY: 1.336017 - posZ: 57.55 - rotX: 0.020814199 - rotY: 269.978821 - rotZ: 0.0167644545 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232951 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Seeing Things Unseen - DragSelectable: true - GMNotes: '' - GUID: f96ed0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Powder of Ibn Ghazi - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.4629173 - posY: 1.36626446 - posZ: -46.7977753 - rotX: 0.0208089761 - rotY: 270.0 - rotZ: 0.0167704951 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374115 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3741': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1890d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stars of Hyades - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.30492 - posY: 2.19019938 - posZ: -81.69471 - rotX: 0.02080839 - rotY: 270.000031 - rotZ: 0.0167755783 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230320 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 54832d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alchemical Transmutation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.334735 - posZ: 75.95 - rotX: 0.0207990371 - rotY: 270.0313 - rotZ: 0.0167850517 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2742': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 66b7d5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Well Connected - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35287535 - posZ: 75.95 - rotX: 0.02081098 - rotY: 269.988831 - rotZ: 0.0167695135 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368801 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '358387' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rise to the Occasion - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36443722 - posZ: 85.15 - rotX: 0.0208204873 - rotY: 269.9588 - rotZ: 0.0167588126 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550806 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Tough Old Bird - DragSelectable: true - GMNotes: '' - GUID: 1cccfe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Granny Orne - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.7423134 - posY: 3.28557158 - posZ: -71.1751556 - rotX: 0.0147321494 - rotY: 270.0195 - rotZ: 0.0118827978 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c55160 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mano a Mano (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.39920676 - posZ: 32.6300278 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230309 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: da7613 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Prophecy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33395016 - posZ: 69.05 - rotX: 0.0208175573 - rotY: 269.96698 - rotZ: 0.01676294 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450600 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6411d5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Machete (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.21384 - posY: 1.30519938 - posZ: -50.8994 - rotX: 0.0208084155 - rotY: 269.999664 - rotZ: 0.016770497 - 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ec38db - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 549600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5496': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843934735/BFCEAE686380A770B52AAFB4710A0AB3043E02EE/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9103a5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Radiant Smite (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.5725822 - posY: 3.27131367 - posZ: -71.1542358 - rotX: 0.0208085589 - rotY: 270.000031 - rotZ: 0.0167722 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431007 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2737': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '683937' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Delay the Inevitable - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300068 - posY: 1.34368849 - posZ: 59.8500023 - rotX: 0.0207936484 - rotY: 270.027039 - rotZ: 0.0167745743 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450605 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 88a481 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Streetwise (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.9213829 - posY: 1.30494022 - posZ: -50.9067345 - rotX: 0.0208083633 - rotY: 269.999664 - rotZ: 0.0167705156 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230317 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0a4db3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ritual Candles - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.3367548 - posZ: 82.85 - rotX: 0.0207984913 - rotY: 270.0313 - rotZ: 0.01678511 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 552309 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0de10c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: False Awakening - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3814354 - posY: 3.52287769 - posZ: -65.7089539 - rotX: 0.0125160087 - rotY: 270.000122 - rotZ: 179.900925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368428 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 07a8f0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Art Student - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000273 - posY: 1.33871 - posZ: 66.75 - rotX: 0.0208162684 - rotY: 269.978821 - rotZ: 0.0167661086 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2758': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: aa3984 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Winging It - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.35781634 - posZ: 66.75 - rotX: 0.02080432 - rotY: 270.012939 - rotZ: 0.0167804044 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450611 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eccb8a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Knowledge is Power (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.9288673 - posY: 1.46812129 - posZ: -50.9870834 - rotX: 0.0208068173 - rotY: 269.999664 - rotZ: 0.016770646 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368852 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Big Man on Campus - DragSelectable: true - GMNotes: '' - GUID: e1e098 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Peter Sylvestre (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40913355 - posZ: -15.8000059 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: deea7a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Catling Gun - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.15583 - posY: 1.50774717 - posZ: 12.3576326 - rotX: 359.920135 - rotY: 270.000122 - rotZ: 0.0168947745 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 466112 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4661': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Exotic Morgana - DragSelectable: true - GMNotes: '' - GUID: 692ced - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Molly Maxwell - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.0150757 - posY: 1.30660939 - posZ: 55.5211258 - rotX: 0.01782124 - rotY: 269.9919 - rotZ: 0.016412884 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 452300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4523': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Expert Dreamer - DragSelectable: true - GMNotes: '' - GUID: b04c8e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Randolph Carter - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.3781948 - posY: 2.37428141 - posZ: -83.49261 - rotX: 0.02080912 - rotY: 270.000031 - rotZ: 0.0167708285 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527552 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 16ad5d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Baron Samedi - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.214624 - posY: 1.37499976 - posZ: -84.58808 - rotX: 0.0183348916 - rotY: 269.969818 - rotZ: 0.016028095 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 7502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '75': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: c7b748 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fishing Net - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.2526932 - posY: 2.35122013 - posZ: -85.8765945 - rotX: 0.0208091941 - rotY: 270.0 - rotZ: 0.0167707223 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380228 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3802': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Wrong Place, Wrong Time - DragSelectable: true - GMNotes: '' - GUID: b8380d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jessica Hyde (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.11804 - posY: 1.68581808 - posZ: -7.75991 - rotX: 359.9265 - rotY: 270.0019 - rotZ: 0.0105229123 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: Chalice of the Heart - DragSelectable: true - GMNotes: '' - GUID: dd4e2a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 368826 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ee20c9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Newspaper - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.57 - posY: 1.35860133 - posZ: 73.65 - rotX: 0.0208154488 - rotY: 269.9702 - rotZ: 0.01676301 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450624 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 41e560 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .35 Winchester (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.5040245 - posY: 1.34825277 - posZ: -50.91714 - rotX: 0.0124848755 - rotY: 270.000031 - rotZ: 0.0100587066 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226358 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b1ad65 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: M1918 BAR (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41781831 - posZ: -36.36999 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550819 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b1550 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leather Coat (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.7273674 - posY: 3.28407264 - posZ: -71.29579 - rotX: 0.0144219482 - rotY: 270.0191 - rotZ: 0.0116329836 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538721 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e2bc49 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hypnotic Gaze (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.14337 - posY: 3.28516364 - posZ: -73.03294 - rotX: 0.020809602 - rotY: 270.001343 - rotZ: 0.01676751 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527238 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5272': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b4b991 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shining Trapezohedron (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.4998856 - posY: 1.297716 - posZ: -78.69504 - rotX: 0.0208082087 - rotY: 270.000061 - rotZ: 0.01677083 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431731 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3744': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bcf406 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shell Shock - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.7654457 - posY: 1.66001654 - posZ: -46.2021942 - rotX: 0.167903721 - rotY: 270.0219 - rotZ: 0.438815027 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 549900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5499': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843937651/74845294CAEB3908414DAE31A5BC8A6683FEBF20/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 34e9f8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Gaze of Ouraxsh (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.0887566 - posY: 3.2843976 - posZ: -73.28977 - rotX: 0.02080861 - rotY: 269.999969 - rotZ: 0.0167707726 - 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d88407 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 369815 - 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/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Soldier in a New War - DragSelectable: true - GMNotes: '' - GUID: 1f7e6e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Thomas Dawson - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.4537773 - posY: 3.51925826 - posZ: -65.76391 - rotX: 0.010968118 - rotY: 270.644318 - rotZ: 180.0133 - 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e567ff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 226355 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3b6834 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "\"I've had worse\u2026\" (4)" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3595657 - posY: 3.52342 - posZ: -65.6875458 - rotX: 0.0109348232 - rotY: 270.0 - rotZ: 180.018341 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230346 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2236f6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Counterspell (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41240823 - posZ: -4.00998259 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450604 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '833501' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Higher Education (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.6853371 - posY: 1.3050797 - posZ: -50.7233467 - rotX: 0.02080844 - rotY: 269.999664 - rotZ: 0.0167704634 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 278846 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2788': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Key to the Gate of Dreams - DragSelectable: true - GMNotes: '' - GUID: 61fd07 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Silver Key - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.46796 - posY: 3.47810078 - posZ: -50.62324 - rotX: 0.0125573976 - rotY: 270.0 - rotZ: 180.024521 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444147 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3805': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 13eaf0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dreams of the Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.149692 - posY: 2.06653118 - posZ: -46.2199059 - rotX: 0.0160595868 - rotY: 270.0005 - rotZ: 0.0145351663 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230310 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 14e212 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Delve Too Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.08289 - posY: 1.86691129 - posZ: -105.318573 - rotX: 0.0208076313 - rotY: 270.000061 - rotZ: 0.0167738479 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312510 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mysterious Device - DragSelectable: true - GMNotes: '' - GUID: 44334c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Puzzle Box - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.31332 - posY: 1.36443675 - posZ: -54.4657478 - rotX: 0.0208098013 - rotY: 270.0 - rotZ: 0.016772978 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266317 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b176fc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deep Knowledge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.9516678 - posY: 3.16666675 - posZ: -85.02927 - rotX: 0.0208086651 - rotY: 269.999 - rotZ: 0.0167703424 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230334 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5d6e57 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind Wipe (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40434325 - posZ: 25.8900242 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449037 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4490': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4f5f0f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sawed-Off Shotgun (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.9328461 - posY: 1.299728 - posZ: -73.765686 - rotX: 0.02080911 - rotY: 270.0 - rotZ: 0.0167716872 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368857 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f1b0f9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Try and Try Again (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41285586 - posZ: -29.6000061 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230359 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 91e890 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seal of the Elder Sign (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.42233443 - posZ: -40.80999 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368621 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '213853' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Switchblade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500027 - posY: 1.35422194 - posZ: 80.55 - rotX: 0.0208109 - rotY: 269.988831 - rotZ: 0.0167680886 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226354 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f03baa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Custom Ammunition (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41533685 - posZ: -27.1699924 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431206 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 4fb446 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Internal Injury - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.15498 - posY: 1.49438834 - posZ: 72.1812439 - rotX: 0.03946274 - rotY: 269.999573 - rotZ: 359.9925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545329 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ab51ce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Physical Training (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.10324 - posY: 3.1667304 - posZ: -77.90403 - rotX: 0.0208082441 - rotY: 270.0 - rotZ: 0.0167709123 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bc4788 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Feed the Mind (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41452944 - posZ: -17.8099861 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368425 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba16cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Medical Texts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.640003 - posY: 1.34072971 - posZ: 73.65 - rotX: 0.0208145548 - rotY: 269.978821 - rotZ: 0.0167659223 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266329 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ec7702 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Predestined - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.19639 - posY: 1.42133653 - posZ: -57.25017 - rotX: 0.0208085 - rotY: 270.000061 - rotZ: 0.016771175 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293215 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2932': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6de21b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Knowledge is Power - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.55411 - posY: 1.53692091 - posZ: -53.7382545 - rotX: 0.0209390428 - rotY: 270.015747 - rotZ: 0.0191810168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 318703 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3187': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Fateful Step - DragSelectable: true - GMNotes: '' - GUID: 52a677 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ace of Rods (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39461422 - posZ: 32.5000076 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293315 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2933': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mystic - DragSelectable: true - GMNotes: '' - GUID: 194d88 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.73687 - posY: 1.50124466 - posZ: -49.17045 - rotX: 0.05648235 - rotY: 270.0217 - rotZ: -0.002907931 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232934 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Olaus Wormius Translation - DragSelectable: true - GMNotes: '' - GUID: d45f10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Necronomicon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.2950974 - posY: 1.36349916 - posZ: -51.4901772 - rotX: 0.0208088756 - rotY: 270.0 - rotZ: 0.0167707372 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314204 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3142': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e8b7ad - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bandolier (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40851247 - posZ: -1.86998224 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368411 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2f9ab1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Vantage Point - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.240004 - posY: 1.34129119 - posZ: 71.35 - rotX: 0.02081259 - rotY: 269.986359 - rotZ: 0.0167654455 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368707 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 62cf25 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''m outta here!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500023 - posY: 1.35545671 - posZ: 80.55 - rotX: 0.02081474 - rotY: 269.974884 - rotZ: 0.01676473 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368708 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f6ff32 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Narrow Escape - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35478342 - posZ: 78.25 - rotX: 0.0208150763 - rotY: 269.9749 - rotZ: 0.0167657565 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277710 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2777': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5115d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Intel Report - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.1022224 - posY: 1.332592 - posZ: 71.23809 - rotX: 0.0208069868 - rotY: 269.998962 - rotZ: 0.01677785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368714 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cf1d4e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Slip Away - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.350744 - posZ: 64.45 - rotX: 0.0208153985 - rotY: 269.974854 - rotZ: 0.0167630762 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Enemy - DragSelectable: true - GMNotes: '' - GUID: 16a89d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Silver Twilight Acolyte - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.44922 - posY: 1.56336081 - posZ: 81.83084 - rotX: 0.020568762 - rotY: 269.999268 - rotZ: 0.0177706 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378621 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3786': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 53f076 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Soothing Melody - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -20.3991413 - posY: 1.33330619 - posZ: 65.36043 - rotX: 0.0208107736 - rotY: 269.991425 - rotZ: 0.0167647582 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368838 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a4673 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fire Extinguisher (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.37135 - posY: 3.51983881 - posZ: -65.69757 - rotX: 0.0124902874 - rotY: 270.0 - rotZ: 180.027863 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312514 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Took You Long Enough - DragSelectable: true - GMNotes: '' - GUID: 726d1d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Valentino Rivas - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 39.88332 - posY: 1.35615063 - posZ: 68.6109161 - rotX: 0.02080685 - rotY: 269.9994 - rotZ: 0.0167702865 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262203 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 77f92c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Expose Weakness (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.412048 - posZ: -8.60998249 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431207 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: eeb330 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chronophobia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.0520859 - posY: 1.485057 - posZ: 71.99658 - rotX: 0.0327025428 - rotY: 270.0003 - rotZ: 0.000334777724 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538620 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fc82a5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daring Maneuver (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.19061 - posY: 3.28441215 - posZ: -73.52365 - rotX: 0.0208122823 - rotY: 269.9931 - rotZ: 0.0167636927 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312511 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Not Going Down That Easily - DragSelectable: true - GMNotes: '' - GUID: 2237f4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gavriella Mizrah - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.35406 - posY: 1.62373781 - posZ: -52.944416 - rotX: 0.0179333128 - rotY: 270.007782 - rotZ: 0.028359253 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371466 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3714': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 46812e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sacrificial Beast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.95408 - posY: 1.51747715 - posZ: -49.6841774 - rotX: 0.018425867 - rotY: 270.021179 - rotZ: 0.02911497 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538615 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b8843c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nimble - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.6080437 - posY: 3.28531933 - posZ: -73.05481 - rotX: 0.0208127331 - rotY: 269.9931 - rotZ: 0.0167625137 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 381050 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3810': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 67e006 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Split the Angle - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -1.436187 - posY: 2.09197116 - posZ: -46.23643 - rotX: 0.03567951 - rotY: 270.066925 - rotZ: 0.0572711229 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 375016 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3750': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a33470 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spirit-Speaker - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.6619034 - posY: 1.68719435 - posZ: -45.7441521 - rotX: 0.158040836 - rotY: 270.026367 - rotZ: 0.0115280962 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527236 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4491': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Monster. Extradimensional. Tindalos. - DragSelectable: true - GMNotes: '' - GUID: 86cf9c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unbound Beast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -17.1196747 - posY: 1.67481875 - posZ: -7.70004559 - rotX: 359.9201 - rotY: 269.999939 - rotZ: 0.0168745462 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430660 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8b0193 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deciphered Reality (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.42073345 - posZ: -40.80999 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226344 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9956d5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Taunt (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40727174 - posZ: 2.73001885 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368842 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: be4abe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Survival Instinct (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40230942 - posZ: 9.500001 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527418 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Enemy - DragSelectable: true - GMNotes: '' - GUID: 4ea68b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 315261 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3add54 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cheat Death (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749962 - posY: 1.38609779 - posZ: -45.70004 - rotX: 0.02080863 - rotY: 269.9999 - rotZ: 0.0167719424 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538824 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9b1c5b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind Over Matter (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.3897552 - posY: 3.18030715 - posZ: -81.2347946 - rotX: 0.0208092984 - rotY: 269.997253 - rotZ: 0.0167696085 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266303 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: dd4a25 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Whispers from the Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.5333481 - posY: 3.16565585 - posZ: -93.58446 - rotX: 0.020808652 - rotY: 269.999329 - rotZ: 0.0167703945 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368854 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c803ba - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Infighting (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41099477 - posZ: -22.7000084 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538706 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b67371 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clairvoyance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.44816 - posY: 3.28275824 - posZ: -70.06975 - rotX: 0.0208116267 - rotY: 270.001343 - rotZ: 0.0167635847 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368811 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 30f90b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Improvised Weapon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.3598361 - posZ: 73.65 - rotX: 0.0208048522 - rotY: 270.012939 - rotZ: 0.0167763215 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538801 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 3eef18 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Thrice-Damned Curiosity - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.80547 - posY: 3.285487 - posZ: -69.0229645 - rotX: 0.0208092257 - rotY: 269.997253 - rotZ: 0.0167695954 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438125 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: eff3c8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Self-Centered - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.28279 - posY: 1.52067816 - posZ: 50.95579 - rotX: 0.02054261 - rotY: 270.00177 - rotZ: 180.013779 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379022 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 090fcf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Glimpse the Unthinkable (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.20668 - posY: 1.49268472 - posZ: 46.0736732 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262201 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Minds in Harmony - DragSelectable: true - GMNotes: '' - GUID: 9c56d3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Stone (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.41825175 - posZ: -31.609993 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545319 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9e7f6a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Galvanize (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.24345 - posY: 3.16879225 - posZ: -73.3449 - rotX: 0.0208083782 - rotY: 270.0 - rotZ: 0.01676988 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230336 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 35166c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Book of Shadows (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.40620458 - posZ: 18.99002 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f59085 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 368401 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5c3aea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Inquiring Mind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.160006061 - posY: 1.34589219 - posZ: 82.8500061 - rotX: 0.0208204687 - rotY: 269.9646 - rotZ: 0.0167588983 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368413 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eb6165 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Working a Hunch - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.24000335 - posY: 1.33994472 - posZ: 66.75 - rotX: 0.0208135787 - rotY: 269.986359 - rotZ: 0.0167685822 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368808 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dd130e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hiding Spot - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.7834854 - posY: 1.36334467 - posZ: -68.49766 - rotX: 0.0207973365 - rotY: 270.040466 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379828 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0bb3da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: First Watch - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.2650452 - posY: 1.67629635 - posZ: 7.016553 - rotX: 359.922668 - rotY: 270.003845 - rotZ: 0.0136328405 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371308 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3713': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d87128 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jenny's Twin .45s - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.6732559 - posY: 1.52007174 - posZ: -48.314106 - rotX: 0.04478311 - rotY: 270.017731 - rotZ: 359.920624 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3135': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Over the Threshold and Beyond - DragSelectable: true - GMNotes: '' - GUID: 05da68 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seal of the Seventh Sign (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.75998 - posY: 1.3775233 - posZ: -47.71002 - rotX: 0.02080785 - rotY: 269.999878 - rotZ: 0.0167682189 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 265502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2655': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7d3a27 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: All In (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41820335 - posZ: -43.400013 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448737 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4487': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ff4aea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scavenging (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.56107 - posY: 2.483187 - posZ: -84.9376 - rotX: 0.0 - rotY: 270.0 - rotZ: 22.62915 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438123 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: f6aba5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unspeakable Oath (Curiosity) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.0862484 - posY: 2.377057 - posZ: -75.92746 - rotX: 0.0 - rotY: 270.0 - rotZ: 0.0 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 549400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5494': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843930220/4B448C6C7009864D4D1E4FBB57F48A40AF5F9136/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bcc255 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Manipulate Destiny (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.0734825 - posY: 3.28528285 - posZ: -70.7434 - rotX: 0.02080836 - rotY: 270.0 - rotZ: 0.0167710688 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438122 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: ea0fa1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unspeakable Oath (Cowardice) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.3509445 - posY: 1.51659238 - posZ: 51.50479 - rotX: 0.0444448479 - rotY: 269.9969 - rotZ: 180.044754 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261703 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 99989c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quick Thinking - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.35601819 - posZ: 78.25 - rotX: 0.0208088942 - rotY: 270.000122 - rotZ: 0.0167740677 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226343 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d708d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Physical Training (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40665138 - posZ: 5.03001928 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230315 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e425d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Research - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.33810127 - posZ: 87.45 - rotX: 0.020799011 - rotY: 270.0313 - rotZ: 0.01678507 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226301 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 80628f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Inspiring Presence - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.3523289 - posZ: 85.15 - rotX: 0.0208112579 - rotY: 269.987427 - rotZ: 0.0167698432 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2699': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: dd3d09 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Pact - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 78.90516 - posY: 1.52898574 - posZ: 71.47087 - rotX: 0.01666248 - rotY: 269.9882 - rotZ: 0.021478314 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 454100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4541': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: 74840a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bear Trap - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.3778458 - posY: 2.36909652 - posZ: -86.7653351 - rotX: 0.0208093915 - rotY: 270.0 - rotZ: 0.01677069 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 368503 ColorDiffuse: @@ -34925,232 +19535,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 371806 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3718': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4156cf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Search for the Truth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.2037659 - posY: 1.48903632 - posZ: -49.09441 - rotX: 0.0161498226 - rotY: 270.00058 - rotZ: 0.0117214322 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235857 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2358': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Unleash the Timestream - DragSelectable: true - GMNotes: '' - GUID: 35bc58 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -45.62158 - posY: 1.30171525 - posZ: -72.31322 - rotX: 0.0208297186 - rotY: 269.999664 - rotZ: 0.0166090112 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431006 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2737': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4e1d91 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Steadfast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.34963584 - posZ: 75.95 - rotX: 0.0208116733 - rotY: 269.987427 - rotZ: 0.0167684965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448032 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Alacrity - DragSelectable: true - GMNotes: '' - GUID: 4c0f00 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empower Self (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.4537659 - posY: 3.52513242 - posZ: -65.7639 - rotX: 0.0131430849 - rotY: 270.000458 - rotZ: 179.577087 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230356 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 07bc04 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grotesque Statue (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.42047322 - posZ: -33.90999 - rotX: 359.987427 - rotY: 270.0001 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315253 + CardID: 315260 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -35167,7 +19552,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 0db666 + GUID: ecfa42 Grid: true GridProjection: false Hands: true @@ -35178,375 +19563,15 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Borrowed Time (3) + Nickname: Chicago Typewriter (4) 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: 368414 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1b0235 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Persuasion - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.240003 - posY: 1.33927155 - posZ: 64.45 - rotX: 0.02081119 - rotY: 269.986359 - rotZ: 0.0167691447 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538815 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 010509 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Occult Invocation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.44707 - posY: 3.167505 - posZ: -75.83863 - rotX: 0.0208092984 - rotY: 269.997253 - rotZ: 0.016769344 - 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 05d263 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 226338 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a1fd61 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ambush (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.4023087 - posZ: 21.130024 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368850 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c077bf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Against All Odds (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40789282 - posZ: -11.2000046 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368710 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 819aee - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sleight of Hand - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.353437 - posZ: 73.65 - rotX: 0.0208148733 - rotY: 269.974884 - rotZ: 0.0167639721 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545212 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: e27c93 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Offer You Cannot Refuse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.7565 - posY: 3.1718924 - posZ: -76.1044846 - rotX: 0.0208088569 - rotY: 269.999451 - rotZ: 0.01677096 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261101 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2611': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d2663c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hemispheric Map (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39895689 - posZ: 16.4000015 + posX: 102.749992 + posY: 1.417583 + posZ: -41.1000137 rotX: 359.987427 rotY: 269.999817 rotZ: 359.984558 @@ -35555,637 +19580,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 370046 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3700': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 274daa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mysteries Remain - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 84.64643 - posY: 1.54209042 - posZ: -58.08328 - rotX: 6.12337255 - rotY: 270.007751 - rotZ: 0.006448847 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368814 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f0e425 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dumb Luck - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.35714316 - posZ: 64.45 - rotX: 0.020805018 - rotY: 270.0129 - rotZ: 0.0167762935 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293214 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2932': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Seeker - DragSelectable: true - GMNotes: '' - GUID: 0b12ac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.4576035 - posY: 3.522443 - posZ: -65.76737 - rotX: 0.0124911685 - rotY: 270.0 - rotZ: 180.115143 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5ec6d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Obfuscation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.55016 - posY: 3.28365779 - posZ: -73.90558 - rotX: 0.0208092388 - rotY: 269.999756 - rotZ: 0.0167683419 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380126 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3801': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 75eca5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Read the Signs - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.2260036 - posY: 1.688674 - posZ: -4.15322065 - rotX: 359.919952 - rotY: 269.999664 - rotZ: 0.0162679963 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538624 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0feb74 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky Cigarette Case (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.44495 - posY: 3.28489232 - posZ: -72.91061 - rotX: 0.0208115689 - rotY: 269.9931 - rotZ: 0.0167649854 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550804 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1d75d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grimm's Fairy Tales - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.3364563 - posY: 3.2840364 - posZ: -71.9591446 - rotX: 0.0147323161 - rotY: 270.0195 - rotZ: 0.0118827708 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368518 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba560e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trench Coat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36326671 - posZ: 71.35 - rotX: 0.02081009 - rotY: 269.99408 - rotZ: 0.0167732555 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230327 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Stygian Waymark - DragSelectable: true - GMNotes: '' - GUID: 6527a4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Chthonian Stone - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0 - posY: 1.33002234 - posZ: 59.85 - rotX: 0.0207988359 - rotY: 270.0313 - rotZ: 0.0167858377 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 504613 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4550': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: '313167' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Yaztaroth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.1091042 - posY: 1.2648226 - posZ: 55.7025 - rotX: 0.0210862644 - rotY: 269.9919 - rotZ: 0.014994096 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374264 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3742': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/960860341956230050/FB390FF37A182334B982AA19488275BB5C6E2219/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f8c873 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sophie - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.49042 - posY: 1.64879036 - posZ: -45.3774376 - rotX: 0.213860989 - rotY: 269.996277 - rotZ: 359.8976 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266327 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2ea0d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Token of Faith - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.658844 - posY: 1.2999934 - posZ: -58.2065773 - rotX: 0.0208082758 - rotY: 270.0 - rotZ: 0.0167708118 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312512 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: In Way Over His Head - DragSelectable: true - GMNotes: '' - GUID: d99735 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jerome Davids - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 39.5597267 - posY: 1.354802 - posZ: 64.40544 - rotX: 0.0208125934 - rotY: 269.988464 - rotZ: 0.0167639647 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315254 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 308be1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sure Gamble (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41386068 - posZ: -27.300005 - rotX: 359.987427 - rotY: 269.999725 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226331 + CardID: 226306 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -36202,7 +19597,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 7d4749 + GUID: eab2ed Grid: true GridProjection: false Hands: true @@ -36213,834 +19608,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Beat Cop + Nickname: Teamwork 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: 545301 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: c3a014 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tommy Malloy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.26724 - posY: 3.174611 - posZ: -68.4174652 - rotX: 0.0205496773 - rotY: 269.9956 - rotZ: 0.0170879588 - 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 22d886 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 448839 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4488': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Library Intern - DragSelectable: true - GMNotes: '' - GUID: 97e9ce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Abigail Foreman (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -17.1198387 - posY: 1.67931545 - posZ: 7.569963 - rotX: 359.9201 - rotY: 269.999939 - rotZ: 0.016875755 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 537612 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: dc5b38 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Price of Failure - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.40347 - posY: 1.3066 - posZ: -49.7053833 - rotX: 0.0208091587 - rotY: 269.999969 - rotZ: 0.0167716891 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378762 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3787': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d8a324 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''m done runnin''!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 8.340292 - posY: 1.3865602 - posZ: -48.14536 - rotX: 0.02273901 - rotY: 270.006256 - rotZ: 0.008764074 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226348 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7001be - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Beat Cop (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.410994 - posZ: -11.0699854 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545209 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Permanent - DragSelectable: true - GMNotes: '' - GUID: 2ebdf1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On Your Own (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.24509 - posY: 3.16501665 - posZ: -90.3928757 - rotX: 0.0208078139 - rotY: 270.0092 - rotZ: 0.0167691819 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538625 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7f27d6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sharpshooter (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.3573074 - posY: 3.26376963 - posZ: -70.37441 - rotX: 0.02081183 - rotY: 269.9931 - rotZ: 0.01676547 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315237 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: edd6c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lockpicks (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.401453 - posZ: 18.7000046 - rotX: 359.987427 - rotY: 269.999756 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368833 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1b4434 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Horse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35388863 - posZ: 57.5500031 - rotX: 0.0208167 - rotY: 269.9702 - rotZ: 0.0167615525 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315232 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 731d2a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Adaptable (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.39773071 - posZ: 32.5000153 - rotX: 359.987427 - rotY: 269.9997 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277912 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2779': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a57f19 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Meat Cleaver - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.6913071 - posY: 1.33000863 - posZ: 66.8643341 - rotX: 0.020810809 - rotY: 269.9992 - rotZ: 0.0167672466 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545213 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 39452d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fine Print - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.3330345 - posY: 3.16976333 - posZ: -76.16513 - rotX: 0.02080835 - rotY: 269.999878 - rotZ: 0.0167706367 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 297101 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2971': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 569b06 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Curse of the Rougarou - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.49299 - posY: 1.78174841 - posZ: 6.4157424 - rotX: 2.12603521 - rotY: 269.862244 - rotZ: 4.248013 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430808 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2732': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9e5cd2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Curiosity - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.160005137 - posY: 1.34723866 - posZ: 87.4500046 - rotX: 0.02081934 - rotY: 269.9646 - rotZ: 0.0167605542 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277604 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '230835' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.5756321 - posY: 1.326131 - posZ: 49.75152 - rotX: 0.0208086669 - rotY: 269.9986 - rotZ: 0.01677173 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450609 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3d08dc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Drawing Thin (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.54574 - posY: 1.48710084 - posZ: -51.26631 - rotX: 0.0208053458 - rotY: 269.9997 - rotZ: 0.0167752914 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226318 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ab37af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scene of the Crime - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6299963 - posY: 1.34166884 - posZ: 52.9499969 - rotX: 0.0207941569 + posX: 12.6300039 + posY: 1.35109425 + posZ: 85.15 + rotX: 0.0207958911 rotY: 270.027039 - rotZ: 0.0167764034 + rotZ: 0.01677621 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368802 + CardID: 368839 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -37057,7 +19642,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 334f03 + GUID: 017821 Grid: true GridProjection: false Hands: true @@ -37068,1777 +19653,22 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false 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: 550803 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 101a41 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .18 Derringer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.0710678 - posY: 3.285107 - posZ: -72.3590546 - rotX: 0.014732915 - rotY: 270.0195 - rotZ: 0.0118833436 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230335 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 90a106 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spirit Athame (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.4055841 - posZ: 21.2900219 - rotX: 359.987427 - rotY: 270.000244 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226352 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cd7b97 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stand Together (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.92969 - posY: 3.39739347 - posZ: -58.047348 - rotX: 0.0208225716 - rotY: 269.9766 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368513 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0c859f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Painkillers - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36663294 - posZ: 82.85 - rotX: 0.0208111759 - rotY: 269.99408 - rotZ: 0.01677131 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430642 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 95272b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deduction (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40646446 - posZ: 12.090023 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440723 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4407': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: aec357 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guardian of the Crystallizer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.8113861 - posY: 1.56324077 - posZ: 29.4504681 - rotX: 359.9853 - rotY: 269.977234 - rotZ: 359.981079 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 373819 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3738': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 80b7c6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Graveyard Ghouls - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 53.86731 - posY: 1.36824882 - posZ: -45.67506 - rotX: 0.0158746652 - rotY: 269.99646 - rotZ: 0.0151343858 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266325 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 69116c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ward of Radiance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.71407 - posY: 3.77611351 - posZ: -77.7482147 - rotX: 0.0208089836 - rotY: 269.999939 - rotZ: 0.01676984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2778': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5ada0a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hawk-Eye Folding Camera - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.4610023 - posY: 1.32776082 - posZ: 58.8984222 - rotX: 0.0208074246 - rotY: 269.998047 - rotZ: 0.0167737659 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448840 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4488': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d6085d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Eye of Truth (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.90797 - posY: 1.296707 - posZ: -82.87657 - rotX: 0.0208083577 - rotY: 270.0 - rotZ: 0.01677057 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440623 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Cat General of Ulthar - DragSelectable: true - GMNotes: '' - GUID: e1aedf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Miss Doyle (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.43 - posY: 1.54419959 - posZ: 37.4258842 - rotX: 359.974884 - rotY: 269.9931 - rotZ: 359.982422 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226319 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 97986a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dynamite Blast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6299963 - posY: 1.34099555 - posZ: 50.6499977 - rotX: 0.0207956564 - rotY: 270.027039 - rotZ: 0.0167747736 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368420 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Untranslated - DragSelectable: true - GMNotes: '' - GUID: cbfc12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Archaic Glyphs - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.63999367 - posY: 1.344096 - posZ: 85.15001 - rotX: 0.0208136719 - rotY: 269.978821 - rotZ: 0.0167661384 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368855 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3f91af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rabbit's Foot (3) + Nickname: Flare (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 110.15 - posY: 1.41161513 - posZ: -25.0000057 + posY: 1.39920747 + posZ: 21.0000057 rotX: 359.987427 - rotY: 269.999969 + rotY: 270.000061 rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 230345 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2ae3ce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Song of the Dead (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41178787 - posZ: -1.70998144 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274008 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d12359 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Detached from Reality - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.690937 - posY: 1.366647 - posZ: -53.89291 - rotX: 0.0208033863 - rotY: 270.0197 - rotZ: 0.0167779326 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450617 - 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e5d5f0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ace in the Hole (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.0393143 - posY: 1.410598 - posZ: -51.1383972 - rotX: 0.0208083466 - rotY: 269.999664 - rotZ: 0.0167561844 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315262 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9f0b34 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pay Day (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.39897144 - posZ: 27.90001 - rotX: 359.987427 - rotY: 269.999725 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538616 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e4688b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daredevil - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.6074638 - posY: 3.285712 - posZ: -70.53062 - rotX: 0.0208127052 - rotY: 269.9931 - rotZ: 0.0167631619 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447836 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Dreams of a Child - DragSelectable: true - GMNotes: '' - GUID: ea40f6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Diary (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.5937138 - posY: 1.59167707 - posZ: 9.419598 - rotX: 359.920135 - rotY: 269.992584 - rotZ: 0.016887974 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262202 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Knowledge of the Elders - DragSelectable: true - GMNotes: '' - GUID: 863f91 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Stone (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41887212 - posZ: -33.9099922 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1c7a00 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 368408 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8cf335 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind over Matter - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.23999333 - posY: 1.343311 - posZ: 78.25001 - rotX: 0.02081162 - rotY: 269.986359 - rotZ: 0.016769629 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368803 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d1d7fa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Not without a fight!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36309063 - posZ: 80.55 - rotX: 0.0208194442 - rotY: 269.9588 - rotZ: 0.01675947 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538820 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2172e2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Esoteric Atlas (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.27167 - posY: 3.28348327 - posZ: -80.1634445 - rotX: 0.0208092164 - rotY: 269.997253 - rotZ: 0.0167695563 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430646 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f5bcec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Encyclopedia (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.408946 - posZ: 2.89002 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 369424 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3694': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 02777c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On the Lam - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.76734 - posY: 1.29576933 - posZ: -86.254364 - rotX: 0.0208080411 - rotY: 270.0001 - rotZ: 0.0167710967 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374834 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9aee7f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Improvisation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.28952074 - posY: 0.4800682 - posZ: -82.19826 - rotX: 358.634 - rotY: 270.0588 - rotZ: 359.989777 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449036 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4490': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: 'Lookin'' Out For #1' - DragSelectable: true - GMNotes: '' - GUID: 48c9ff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Joey "The Rat" Vigil (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.224144 - posY: 1.696496 - posZ: 3.8599503 - rotX: 359.9201 - rotY: 269.9999 - rotZ: 0.016874982 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277512 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2775': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6eceef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sixth Sense - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -26.6880589 - posY: 1.4528209 - posZ: 43.8413734 - rotX: 0.0197454374 - rotY: 269.9732 - rotZ: 353.253143 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230332 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 98fc57 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grounded (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40310252 - posZ: 30.4900265 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 79287f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Torrent of Power - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000046 - posY: 1.34057081 - posZ: 87.45 - rotX: 0.0208165441 - rotY: 269.971 - rotZ: 0.0167645477 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448938 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4489': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 26922c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiritual Resolve (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.1415749 - posY: 1.30042791 - posZ: -66.1530762 - rotX: 0.0208079927 - rotY: 270.0001 - rotZ: 0.0167709365 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538831 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Petrus de Dacia Translation - DragSelectable: true - GMNotes: '' - GUID: 96ba38 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Necronomicon (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.47121 - posY: 3.167239 - posZ: -78.59439 - rotX: 0.0208092071 - rotY: 269.997253 - rotZ: 0.0167703163 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226339 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6a9021 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Marksmanship (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40292907 - posZ: 18.8300266 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226309 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2db518 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Evidence! - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300049 - posY: 1.34907448 - posZ: 78.25 - rotX: 0.0207955912 - rotY: 270.027039 - rotZ: 0.0167759154 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550827 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d40f4e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chainsaw (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.24956 - posY: 3.28480458 - posZ: -68.9724 - rotX: 0.0144211613 - rotY: 270.0191 - rotZ: 0.0116326967 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226356 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a7944d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Springfield M1903 (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41657758 - posZ: -31.7699947 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379253 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3792': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7f1b48 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hypnotic Therapy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.17400074 - posY: 1.52685761 - posZ: -65.01166 - rotX: 0.0271723326 - rotY: 270.0131 - rotZ: -0.00206514588 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 539500 ColorDiffuse: @@ -38885,24 +19715,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 261102 + CardID: 553205 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2611': + '2663': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Weakness DragSelectable: true GMNotes: '' - GUID: 5b14dc + GUID: 9be144 Grid: true GridProjection: false Hands: true @@ -38913,33 +19743,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Thermos + Nickname: Shadow Agents 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 + posX: -53.39515 + posY: 3.1665554 + posZ: -82.36551 + rotX: 0.0208085366 + rotY: 269.999329 + rotZ: 0.0167704988 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 378863 + CardID: 440722 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3788': + '4407': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -38947,7 +19777,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 785f68 + GUID: e3bd71 Grid: true GridProjection: false Hands: true @@ -38958,30 +19788,75 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Hoods + Nickname: Crystallizer of Dreams 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 + 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: 380127 + CardID: 551506 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3801': + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Nightmares, I Tell You + DragSelectable: true + GMNotes: '' + GUID: bbf1af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chew Toy of Nightmares + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7711954 + posY: 1.50236475 + posZ: -7.66155148 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168895219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4491': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ @@ -38989,10 +19864,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Monster. Extradimensional. Tindalos. DragSelectable: true GMNotes: '' - GUID: bba97a + GUID: 86cf9c Grid: true GridProjection: false Hands: true @@ -39003,429 +19878,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Healing Words + Nickname: Unbound Beast SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 20.3107014 - posY: 1.67212927 - posZ: -4.16523552 - rotX: 359.9424 - rotY: 269.991333 - rotZ: -0.005215286 + posX: -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: 550100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5501': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843940006/71700050B0B2CD56C458047D94B9E605ED01B989/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d2cd42 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Skeptic (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.6440544 - posY: 3.283868 - posZ: -73.30105 - rotX: 0.0208086912 - rotY: 270.0 - rotZ: 0.0167719088 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313604 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3136': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4f2668 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rite of Seeking (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.4130286 - posZ: -6.3099823 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226337 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f60263 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Extra Ammunition (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40168822 - posZ: 23.430027 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314802 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3148': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3dc82f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Try and Try Again (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.39982784 - posZ: 18.7000046 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534901 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Madness. - DragSelectable: true - GMNotes: '' - GUID: 2c76d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: What Have You Done? - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.6642151 - posY: 2.371999 - posZ: -73.67534 - rotX: 0.0211164355 - rotY: 270.0 - rotZ: 0.0169385374 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368626 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ddee79 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stealth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35018241 - posZ: 66.75 - rotX: 0.0208121948 - rotY: 269.988831 - rotZ: 0.0167690367 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545202 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 45cd73 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Truth from Fiction (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.762722 - posY: 3.28358555 - posZ: -76.61391 - rotX: 0.02080613 - rotY: 270.0092 - rotZ: 0.0167743526 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 50fb37 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Take the Initiative - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.35300207 - posZ: 87.45 - rotX: 0.0208121948 - rotY: 269.987427 - rotZ: 0.01676891 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 550802 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: a3bc7a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Atychiphobia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.50702 - posY: 3.28463626 - posZ: -72.20162 - rotX: 0.0147334673 - rotY: 270.0195 - rotZ: 0.0118836816 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538720 + CardID: 538714 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -39442,7 +19912,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ef43db + GUID: 0988b2 Grid: true GridProjection: false Hands: true @@ -39453,41 +19923,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Robes of Endless Night (2) + Nickname: Voice of Ra SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -57.73192 - posY: 3.28469062 - posZ: -74.45363 - rotX: 0.0208100285 + posX: -65.57103 + posY: 3.28240466 + posZ: -68.8954 + rotX: 0.0208105743 rotY: 270.001343 - rotZ: 0.0167669561 + rotZ: 0.0167652871 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 454740 + CardID: 553221 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4547': + '2663': BackIsHidden: true - BackURL: https://i.imgur.com/r6F1mt2.jpg - FaceURL: https://i.imgur.com/CN9PXUd.jpg - NumHeight: 5 + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 NumWidth: 10 Type: 0 - UniqueBack: true - Description: Ally. Government. + UniqueBack: false + Description: '' DragSelectable: true GMNotes: '' - GUID: cfb393 + GUID: 5ec6d0 Grid: true GridProjection: false Hands: true @@ -39498,18 +19968,1098 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: John & Jessie Burke + Nickname: Obfuscation SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -42.7820168 - posY: 2.36514521 - posZ: -94.073204 - rotX: 0.02081031 + posX: -60.55016 + posY: 3.28365779 + posZ: -73.90558 + rotX: 0.0208092388 + rotY: 269.999756 + rotZ: 0.0167683419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Worlds within Worlds + DragSelectable: true + GMNotes: '' + GUID: b8c891 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gate Box + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.39115 + posY: 1.52415013 + posZ: -50.30054 + rotX: 0.0206940472 + rotY: 270.019836 + rotZ: 0.0163330827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Dreams of an Explorer + DragSelectable: true + GMNotes: '' + GUID: 5f9a10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.4953213 + posY: 1.59229374 + posZ: 11.9794865 + rotX: 359.920135 + rotY: 269.992523 + rotZ: 0.01688575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2ae3ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Song of the Dead (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41178787 + posZ: -1.70998144 + rotX: 359.987427 rotY: 270.0 - rotZ: 0.0167692546 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e27b3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Recharge (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.213913 + posY: 3.16716123 + posZ: -86.69394 + rotX: 0.020808775 + rotY: 270.0 + rotZ: 0.0167716146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3806': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9d6e9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nautical Prowess + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.30395651 + posY: 2.05984831 + posZ: -45.23866 + rotX: 0.869807959 + rotY: 269.5711 + rotZ: 359.8488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Muckraker + DragSelectable: true + GMNotes: '' + GUID: 90bf93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gregory Gry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0830517 + posY: 1.524828 + posZ: -0.8738573 + rotX: 359.919342 + rotY: 270.000336 + rotZ: 0.0119857425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3771': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 275dc3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bought in Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.31953 + posY: 1.35254145 + posZ: -66.75125 + rotX: 0.0208099447 + rotY: 269.994476 + rotZ: 0.0167683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c1d796 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Knife (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.05881 + posY: 3.16396856 + posZ: -94.18238 + rotX: 0.020808924 + rotY: 269.999939 + rotZ: 0.01677181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3742': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/960860341956230050/FB390FF37A182334B982AA19488275BB5C6E2219/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f8c873 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sophie + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.49042 + posY: 1.64879036 + posZ: -45.3774376 + rotX: 0.213860989 + rotY: 269.996277 + rotZ: 359.8976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9e7f6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Galvanize (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.24345 + posY: 3.16879225 + posZ: -73.3449 + rotX: 0.0208083782 + rotY: 270.0 + rotZ: 0.01676988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Of Nothing at All + DragSelectable: true + GMNotes: '' + GUID: 9b0dcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pendant of the Queen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.96671 + posY: 1.36040926 + posZ: -67.41669 + rotX: 0.0207998231 + rotY: 270.027985 + rotZ: 0.01677813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378762 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3787': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d8a324 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"I''m done runnin''!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.340292 + posY: 1.3865602 + posZ: -48.14536 + rotX: 0.02273901 + rotY: 270.006256 + rotZ: 0.008764074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4477': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d006f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonstone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.3372574 + posY: 2.84537172 + posZ: -101.660507 + rotX: 0.0208083633 + rotY: 270.0 + rotZ: 0.0167707354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226357 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c92ea3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shotgun (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41719782 + posZ: -34.0699921 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0e2987 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 230341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4d74f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ward of Protection (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40930641 + posZ: 7.490021 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.36640954 + posZ: 73.65 + rotX: 0.0208091382 + rotY: 269.997284 + rotZ: 0.0167735945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '75': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: c7b748 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fishing Net + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.2526932 + posY: 2.35122013 + posZ: -85.8765945 + rotX: 0.0208091941 + rotY: 270.0 + rotZ: 0.0167707223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: '197242' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Out of Doggie Treats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9446363 + posY: 1.46845531 + posZ: -15.0453625 + rotX: 359.920135 + rotY: 270.000336 + rotZ: 0.0168739613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450607 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a7da13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Springfield M1903 (4) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.4735565 + posY: 1.50676835 + posZ: -51.0385246 + rotX: 0.0208019074 + rotY: 269.9996 + rotZ: 0.0167924613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3c0249 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guardian Angel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.198864 + posY: 3.166678 + posZ: -88.62286 + rotX: 0.020808557 + rotY: 269.999329 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mind-Expanding Ideas + DragSelectable: true + GMNotes: '' + GUID: 344d98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pnakotic Manuscripts (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.4213537 + posZ: -43.109993 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Doom Begets Doom + DragSelectable: true + GMNotes: '' + GUID: 07350b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 313603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3136': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a53344 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clarity of Mind (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76001 + posY: 1.41675091 + posZ: -20.109993 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -39560,727 +21110,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 443723 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4437': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 600a3c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Stars Are Right - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 93.37835 - posY: 1.401744 - posZ: 25.1459961 - rotX: 359.9877 - rotY: 270.0277 - rotZ: 359.982635 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 278011 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2780': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a3f105 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Something Worth Fighting For - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -26.43471 - posY: 1.32809985 - posZ: 55.0619354 - rotX: 0.0208080262 - rotY: 269.999481 - rotZ: 0.0167707372 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448031 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Stamina - DragSelectable: true - GMNotes: '' - GUID: ffe4dd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empower Self (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.621273 - posY: 1.57495975 - posZ: 9.329683 - rotX: 359.9201 - rotY: 270.008545 - rotZ: 0.0168651175 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368509 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 510c0d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Emergency Cache - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 60.6699944 - posY: 1.36921418 - posZ: 87.45 - rotX: 0.0208074879 - rotY: 270.000732 - rotZ: 0.0167732 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447832 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1ac667 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Practice Makes Perfect - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -44.6022263 - posY: 2.84541368 - posZ: -100.448311 - rotX: 0.0208086036 - rotY: 270.0 - rotZ: 0.0167711917 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438126 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 447a08 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Kleptomania - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.8331757 - posY: 1.54224169 - posZ: 51.3644943 - rotX: 0.0211661216 - rotY: 269.999542 - rotZ: 180.017242 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2741': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Murder Weapon - DragSelectable: true - GMNotes: '' - GUID: d71f11 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bloodstained Dagger - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.4621468 - posY: 2.36952639 - posZ: -73.6884155 - rotX: 0.0211172719 - rotY: 270.0 - rotZ: 0.0169384666 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5efc92 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blood Eclipse (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.8165779 - posY: 3.28376937 - posZ: -77.12867 - rotX: 0.0208068 - rotY: 270.0092 - rotZ: 0.0167717934 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 295503 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2955': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 080d4a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pantalone - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.1961975 - posY: 1.303426 - posZ: -60.8053932 - rotX: 0.0208087284 - rotY: 270.0 - rotZ: 0.01677115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545307 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: af3efd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relentless - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.07636 - posY: 3.28584647 - posZ: -70.35861 - rotX: 0.02081439 - rotY: 269.979553 - rotZ: 0.0167634711 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368806 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cc6e4d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Take Heart - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36107087 - posZ: 73.65 - rotX: 0.0208189469 - rotY: 269.9588 - rotZ: 0.0167584512 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379830 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b6506d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Fool me once..." (1)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 19.9733334 - posY: 1.6903677 - posZ: 7.17354536 - rotX: 359.9186 - rotY: 270.001282 - rotZ: 0.0155457929 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379019 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4ea716 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Studious (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.560387 - posY: 1.51067376 - posZ: 48.3394127 - rotX: 0.01354435 - rotY: 270.000061 - rotZ: 0.0102723185 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538830 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1a1b58 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Miskatonic Archaeology Funding (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.612587 - posY: 3.16738367 - posZ: -80.51151 - rotX: 0.0208090954 - rotY: 269.997253 - rotZ: 0.0167700425 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293015 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2930': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e674e8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fortune or Fate (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.4155731 - posY: 1.52457511 - posZ: -53.7638931 - rotX: 0.0229964554 - rotY: 270.012634 - rotZ: 0.0177416671 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226325 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 82775a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bandolier - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230005 - posY: 1.34716654 - posZ: 75.9500046 - rotX: 0.0208153687 - rotY: 269.9694 - rotZ: 0.01676186 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230347 + CardID: 230324 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -40297,7 +21127,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ba1460 + GUID: 9e4505 Grid: true GridProjection: false Hands: true @@ -40308,378 +21138,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Bind Monster (2) + Nickname: Arcane Studies 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: 538728 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0ee874 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Azure Flame (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.0980644 - posY: 3.284184 - posZ: -70.91383 - rotX: 0.020808937 - rotY: 270.001343 - rotZ: 0.0167690348 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226361 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2d362c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lightning Gun (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.86998 - posY: 1.38363731 - posZ: -45.57002 - rotX: 0.0208066348 - rotY: 269.999878 - rotZ: 0.0167749375 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266315 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4f3142 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cryptographic Cipher - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.14944 - posY: 3.16606 - posZ: -83.30329 - rotX: 0.0208085272 - rotY: 270.0 - rotZ: 0.0167710166 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368859 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8837ff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: True Survivor (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41409659 - posZ: -34.2 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527419 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: fd9c56 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Through the Gates - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.34954 - posY: 1.57672024 - posZ: 61.3802452 - rotX: 0.0203758851 - rotY: 269.999542 - rotZ: 0.01571979 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440624 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 45c582 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 226351 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2f9de4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Keen Eye (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41285515 - posZ: -17.969986 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226328 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b0f851 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .32 Colt - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230006 - posY: 1.3444736 - posZ: 66.75001 - rotX: 0.0208173022 - rotY: 269.9694 - rotZ: 0.0167636052 + 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 @@ -40730,16 +21200,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 538704 + CardID: 447631 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5387': + '4476': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -40747,7 +21217,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6446d1 + GUID: 2aeb8a Grid: true GridProjection: false Hands: true @@ -40758,114 +21228,294 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Scrying Mirror + Nickname: Burglary (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -60.7526474 - posY: 3.28131819 - posZ: -72.5047 - rotX: 0.0208116863 - rotY: 270.001343 - rotZ: 0.0167630389 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379619 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3796': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f57a6f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wither (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 94.3716354 - posY: 1.53616381 - posZ: -13.6336412 - rotX: 359.988 - rotY: 270.833679 - rotZ: 353.443756 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527237 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5272': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ad58aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind's Eye (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.7199135 - posY: 1.29997373 - posZ: -68.2275848 - rotX: 0.0208084621 + posX: -53.607933 + posY: 1.30007148 + posZ: -68.03267 + rotX: 0.0208079722 rotY: 270.000061 - rotZ: 0.0167708471 + rotZ: 0.0167707112 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 538811 + CardID: 552110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5521': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6012db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spiked Collar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.5202332 + posY: 1.47732294 + posZ: -59.0333748 + rotX: 0.0208220333 + rotY: 269.985535 + rotZ: 0.0168014336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33462334 + posZ: 71.35 + rotX: 0.0208182335 + rotY: 269.966949 + rotZ: 0.01676331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2611': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b14dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Thermos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36259353 + posZ: 69.05 + rotX: 0.0208096933 + rotY: 269.99408 + rotZ: 0.01677326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369815 + 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/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Soldier in a New War + DragSelectable: true + GMNotes: '' + GUID: 1f7e6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Thomas Dawson + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4537773 + posY: 3.51925826 + posZ: -65.76391 + rotX: 0.010968118 + rotY: 270.644318 + rotZ: 180.0133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b6506d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Fool me once..." (1)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.9733334 + posY: 1.6903677 + posZ: 7.17354536 + rotX: 359.9186 + rotY: 270.001282 + rotZ: 0.0155457929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5538': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632983/CC643186858EEC718B5F3FEA9CD7D0CEDE055F13/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Fixer for Hire + DragSelectable: true + GMNotes: '' + GUID: 039e47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Tristan Botley (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.18437 + posY: 1.29117286 + posZ: -60.4084244 + rotX: 0.0208082758 + rotY: 270.000061 + rotZ: 0.0167711321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545323 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -40874,15 +21524,15 @@ ContainedObjects: '2662': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Hunter of Rare Books + Description: '' DragSelectable: true GMNotes: '' - GUID: 3c5099 + GUID: 14424c Grid: true GridProjection: false Hands: true @@ -40893,24 +21543,879 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Whitton Greene + Nickname: Mano a Mano (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -59.12978 - posY: 3.28261662 - posZ: -79.15238 - rotX: 0.0208093058 - rotY: 269.997253 - rotZ: 0.0167690311 + posX: -54.46355 + posY: 3.16915441 + posZ: -71.3471756 + rotX: 0.0208082441 + rotY: 270.0 + rotZ: 0.0167706981 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226330 + CardID: 277605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: be33f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tennessee Sour Mash + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6968155 + posY: 1.32354212 + posZ: 49.7424278 + rotX: 0.02080729 + rotY: 269.998566 + rotZ: 0.0167727023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b4434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Horse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35388863 + posZ: 57.5500031 + rotX: 0.0208167 + rotY: 269.9702 + rotZ: 0.0167615525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c077bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Against All Odds (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40789282 + posZ: -11.2000046 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dfbc13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leather Jacket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.20998 + posY: 3.28602529 + posZ: -69.89087 + rotX: 0.0208133571 + rotY: 269.9931 + rotZ: 0.01676065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 83c86b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alter Fate (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.4122355 + posZ: -27.3000031 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2775': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6eceef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sixth Sense + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.6880589 + posY: 1.4528209 + posZ: 43.8413734 + rotX: 0.0197454374 + rotY: 269.9732 + rotZ: 353.253143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2358': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Unleash the Timestream + DragSelectable: true + GMNotes: '' + GUID: 35bc58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.62158 + posY: 1.30171525 + posZ: -72.31322 + rotX: 0.0208297186 + rotY: 269.999664 + rotZ: 0.0166090112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2561b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: In the Shadows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.32988 + posY: 3.167284 + posZ: -82.43804 + rotX: 0.020808626 + rotY: 269.999329 + rotZ: 0.0167706925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31cfbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Breaking and Entering + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45762 + posY: 3.52574182 + posZ: -65.76769 + rotX: 0.0166542158 + rotY: 270.0 + rotZ: 180.27095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430659 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 536b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Insight (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41949248 + posZ: -36.2099876 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4487': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: ae16e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Parasite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6763325 + posY: 1.6884582 + posZ: 7.569965 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168768261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Minds in Harmony + DragSelectable: true + GMNotes: '' + GUID: 9c56d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Stone (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05001 + posY: 1.41825175 + posZ: -31.609993 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Treachery + DragSelectable: true + GMNotes: '' + GUID: aafc17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.1916046 + posY: 1.36471915 + posZ: -64.52677 + rotX: 0.0206168424 + rotY: 270.022461 + rotZ: 0.009735803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4a45c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slip Away (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.1784477 + posY: 3.285562 + posZ: -70.44782 + rotX: 0.0208119359 + rotY: 269.9931 + rotZ: 0.0167640112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Purifier + DragSelectable: true + GMNotes: '' + GUID: b39b78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grete Wagner (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3079376 + posY: 3.170257 + posZ: -72.36504 + rotX: 0.0208083745 + rotY: 270.0 + rotZ: 0.01677083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f91af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rabbit's Foot (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41161513 + posZ: -25.0000057 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450606 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fcffa3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrapper (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.44427 + posY: 1.516405 + posZ: -51.0460434 + rotX: 0.0208013821 + rotY: 269.9996 + rotZ: 0.0167919081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3739': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6efe6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bury Them Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.9744873 + posY: 1.4029851 + posZ: -45.9182663 + rotX: 0.652829766 + rotY: 269.939 + rotZ: 359.007477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 17d34b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Faustian Bargain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.52753 + posY: 3.28373384 + posZ: -73.61414 + rotX: 0.0208087936 + rotY: 269.999817 + rotZ: 0.0167692918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226333 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -40927,7 +22432,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 12660b + GUID: c55160 Grid: true GridProjection: false Hands: true @@ -40938,24 +22443,1464 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: .45 Automatic + Nickname: Mano a Mano (1) 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 + 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: 550824 + CardID: 368716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cdfd9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.34872425 + posZ: 57.5500031 + rotX: 0.0208148975 + rotY: 269.9749 + rotZ: 0.0167642422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Ferryman's Pay + DragSelectable: true + GMNotes: '' + GUID: 1dbc95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Charon's Obol (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.39835107 + posZ: 30.20001 + rotX: 359.987427 + rotY: 269.9998 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e5dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000368 + posY: 1.34140289 + posZ: 75.95 + rotX: 0.0208141617 + rotY: 269.978821 + rotZ: 0.0167653561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ec38db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 368520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 408cb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.395855 + posZ: 27.9000053 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2cfa4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Swift Reload (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1356068 + posY: 1.687724 + posZ: -1.17973149 + rotX: 359.921173 + rotY: 270.000244 + rotZ: 0.0157240219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 22bb1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: One-Two Punch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.29341 + posY: 3.286482 + posZ: -69.44972 + rotX: 0.0208144 + rotY: 269.979553 + rotZ: 0.0167634841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3fe6de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gravedigger's Shovel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35658157 + posZ: 66.75 + rotX: 0.020816626 + rotY: 269.9702 + rotZ: 0.016764015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: "\u2026A Device, of Some Sort" + DragSelectable: true + GMNotes: '' + GUID: e27a30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.374157 + posY: 3.52680039 + posZ: -65.70076 + rotX: 0.0117934821 + rotY: 269.999969 + rotZ: 180.384445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226347 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe0cc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Automatic (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41037369 + posZ: -8.769983 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7686cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Astounding Revelation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.23474 + posY: 1.60116971 + posZ: 13.8044615 + rotX: 359.978638 + rotY: 270.006348 + rotZ: 359.946381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5273': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 122e98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucid Dreaming (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.90816 + posY: 1.29874861 + posZ: -77.14222 + rotX: 0.0208085887 + rotY: 270.0 + rotZ: 0.0167711675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 823e49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tides of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -66.3870544 + posY: 3.28106 + posZ: -75.48472 + rotX: 0.0208089966 + rotY: 269.999878 + rotZ: 0.01676939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2778': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8dce44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crack the Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.2288666 + posY: 1.32635069 + posZ: 58.7566338 + rotX: 0.0208084267 + rotY: 269.999451 + rotZ: 0.0167746413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: fc4168 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nihilism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.2335472 + posY: 3.284022 + posZ: -71.82146 + rotX: 0.0208121873 + rotY: 270.001343 + rotZ: 0.0167624224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 20645e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Counterpunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.9353943 + posY: 3.285697 + posZ: -71.07089 + rotX: 0.020814443 + rotY: 269.979553 + rotZ: 0.0167631917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Rogue + DragSelectable: true + GMNotes: '' + GUID: d4dbc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Thompson (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.28594 + posY: 1.36603451 + posZ: -55.2474 + rotX: 0.0208098963 + rotY: 270.000031 + rotZ: 0.0167697147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Doom Begets Doom + DragSelectable: true + GMNotes: '' + GUID: 946a58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Decorated Skull (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.5000725 + posY: 3.16913486 + posZ: -87.17431 + rotX: 0.0208039563 + rotY: 270.0092 + rotZ: 0.0167778078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3140': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 53d765 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Eclipse (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41409588 + posZ: -22.5699883 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4490': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: 'Lookin'' Out For #1' + DragSelectable: true + GMNotes: '' + GUID: 48c9ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Joey "The Rat" Vigil (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.224144 + posY: 1.696496 + posZ: 3.8599503 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.016874982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226361 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2d362c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lightning Gun (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.86998 + posY: 1.38363731 + posZ: -45.57002 + rotX: 0.0208066348 + rotY: 269.999878 + rotZ: 0.0167749375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e58d2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 368843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 06228f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stroke of Luck (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40292978 + posZ: 7.200001 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Untranslated + DragSelectable: true + GMNotes: '' + GUID: fbfa24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cryptic Grimoire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.5655136 + posY: 3.16720319 + posZ: -83.0385742 + rotX: 0.0208087545 + rotY: 269.999 + rotZ: 0.0167708974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 372110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3721': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 03c6a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jim's Trumpet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.8095436 + posY: 2.18439317 + posZ: -93.41783 + rotX: 0.02080927 + rotY: 270.001282 + rotZ: 0.01677108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226353 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bc80ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: First Aid (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41471636 + posZ: -24.86999 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 54832d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alchemical Transmutation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.334735 + posZ: 75.95 + rotX: 0.0207990371 + rotY: 270.0313 + rotZ: 0.0167850517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bc3451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Burglary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35354865 + posZ: 78.25 + rotX: 0.020810673 + rotY: 269.98877 + rotZ: 0.0167701356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 14dcc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dynamite Blast (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.6857872 + posY: 3.16924047 + posZ: -74.11199 + rotX: 0.0208083056 + rotY: 270.0 + rotZ: 0.0167706981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bb0f6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Heroic Rescue + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300049 + posY: 1.347728 + posZ: 73.65001 + rotX: 0.0207946822 + rotY: 270.027039 + rotZ: 0.0167737771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 537608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 85e7d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Accursed Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.6443253 + posY: 1.30579412 + posZ: -52.1594467 + rotX: 0.0208084453 + rotY: 269.999969 + rotZ: 0.0167711936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31d087 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Astral Travel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6 + posY: 1.3319304 + posZ: 62.15 + rotX: 0.020817386 + rotY: 269.96698 + rotZ: 0.0167596154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550807 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -40972,7 +23917,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2f2190 + GUID: 59e40d Grid: true GridProjection: false Hands: true @@ -40983,24 +23928,2769 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Unexpected Courage (2) + Nickname: Mysterious Raven SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -59.0424232 - posY: 3.285307 - posZ: -69.20315 - rotX: 0.0147311278 + posX: -58.5242081 + posY: 3.2846055 + posZ: -72.25517 + rotX: 0.0147317043 rotY: 270.0195 - rotZ: 0.011882782 + rotZ: 0.0118827661 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266311 + CardID: 550822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fd393b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Look what I found!" (2)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.85212 + posY: 3.2834022 + posZ: -74.7243 + rotX: 0.0147321578 + rotY: 270.0195 + rotZ: 0.01188326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Secrets Revealed + DragSelectable: true + GMNotes: '' + GUID: f375bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Forbidden Tome (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.6860657 + posY: 3.1647644 + posZ: -86.302124 + rotX: 0.0208092518 + rotY: 269.997253 + rotZ: 0.0167697333 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e567ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 278011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3f105 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Something Worth Fighting For + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.43471 + posY: 1.32809985 + posZ: 55.0619354 + rotX: 0.0208080262 + rotY: 269.999481 + rotZ: 0.0167707372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3dc25c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Extensive Research (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.69135 + posY: 1.29797947 + posZ: -83.76117 + rotX: 0.0208081 + rotY: 270.0 + rotZ: 0.0167707074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 219c78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guts (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.1411438 + posY: 3.283662 + posZ: -74.34069 + rotX: 0.02080953 + rotY: 270.001343 + rotZ: 0.0167674515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 870bdc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cryptic Writings (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.6345139 + posY: 3.16492057 + posZ: -82.63101 + rotX: 0.0208092444 + rotY: 269.997253 + rotZ: 0.01676957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '051742' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Able Bodied + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36039758 + posZ: 71.35 + rotX: 0.0208197385 + rotY: 269.9588 + rotZ: 0.0167587847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 45cd73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Truth from Fiction (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.762722 + posY: 3.28358555 + posZ: -76.61391 + rotX: 0.02080613 + rotY: 270.0092 + rotZ: 0.0167743526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 295503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 080d4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pantalone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1961975 + posY: 1.303426 + posZ: -60.8053932 + rotX: 0.0208087284 + rotY: 270.0 + rotZ: 0.01677115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f763e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unearth the Ancients + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.239993 + posY: 1.34196448 + posZ: 73.65001 + rotX: 0.02081152 + rotY: 269.9864 + rotZ: 0.0167682283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 372011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3720': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c901b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Final Rhapsody + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 86.87249 + posY: 1.621133 + posZ: -58.3100052 + rotX: 0.0415969267 + rotY: 270.006866 + rotZ: 359.9695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f5d382 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clairvoyance (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.05254 + posY: 3.28342962 + posZ: -72.7563248 + rotX: 0.0208094083 + rotY: 270.001343 + rotZ: 0.0167680066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2933': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mystic + DragSelectable: true + GMNotes: '' + GUID: d0de54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enchanted Blade (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.77679 + posY: 1.52551687 + posZ: -49.1203079 + rotX: 0.013238864 + rotY: 269.99353 + rotZ: 0.00522407331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3694': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 02777c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On the Lam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.76734 + posY: 1.29576933 + posZ: -86.254364 + rotX: 0.0208080411 + rotY: 270.0001 + rotZ: 0.0167710967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3139': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Empowering Elixir + DragSelectable: true + GMNotes: '' + GUID: d96e4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05001 + posY: 1.417011 + posZ: -27.0099945 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368428 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 07a8f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Art Student + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000273 + posY: 1.33871 + posZ: 66.75 + rotX: 0.0208162684 + rotY: 269.978821 + rotZ: 0.0167661086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b18b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500061 + posY: 1.35141718 + posZ: 66.75 + rotX: 0.0208151527 + rotY: 269.9749 + rotZ: 0.0167625621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2732': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9e5cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.160005137 + posY: 1.34723866 + posZ: 87.4500046 + rotX: 0.02081934 + rotY: 269.9646 + rotZ: 0.0167605542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 454740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4547': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Ally. Government. + DragSelectable: true + GMNotes: '' + GUID: cfb393 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: John & Jessie Burke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.7820168 + posY: 2.36514521 + posZ: -94.073204 + rotX: 0.02081031 + rotY: 270.0 + rotZ: 0.0167692546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215cec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cherished Keepsake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.57 + posY: 1.36196756 + posZ: 85.15 + rotX: 0.02081672 + rotY: 269.9702 + rotZ: 0.0167616438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2236f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Counterspell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41240823 + posZ: -4.00998259 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59d89b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oops! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.970005 + posY: 1.35647 + posZ: 62.15 + rotX: 0.0208052136 + rotY: 270.0129 + rotZ: 0.016778376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8837ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: True Survivor (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41409659 + posZ: -34.2 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d926f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Prophecies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.18582 + posY: 1.68684137 + posZ: -4.21236 + rotX: 359.933044 + rotY: 270.002258 + rotZ: 0.0111596575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '013446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Extensive Research + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.3100357 + posY: 3.28346276 + posZ: -76.4470444 + rotX: 0.0208093561 + rotY: 269.997253 + rotZ: 0.0167692974 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bf5a5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 293215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6de21b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Knowledge is Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.55411 + posY: 1.53692091 + posZ: -53.7382545 + rotX: 0.0209390428 + rotY: 270.015747 + rotZ: 0.0191810168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3747': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d8705c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Angered Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7983246 + posY: 1.64011288 + posZ: -45.68833 + rotX: 0.1292641 + rotY: 270.009277 + rotZ: 359.981171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ee20c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Newspaper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.57 + posY: 1.35860133 + posZ: 73.65 + rotX: 0.0208154488 + rotY: 269.9702 + rotZ: 0.01676301 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 842d41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Switchblade (2) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.4471359 + posY: 1.30509317 + posZ: -50.972744 + rotX: 0.0208083689 + rotY: 269.999664 + rotZ: 0.01677047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Lost Son of Earth + DragSelectable: true + GMNotes: '' + GUID: a7358f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yaotl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40106857 + posZ: 14.1000023 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230352 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Gift of the Homunculi + DragSelectable: true + GMNotes: '' + GUID: 6bae15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jewel of Aureolus (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.41799176 + posZ: -24.7099953 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1ac667 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Practice Makes Perfect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.6022263 + posY: 2.84541368 + posZ: -100.448311 + rotX: 0.0208086036 + rotY: 270.0 + rotZ: 0.0167711917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 52c686 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flesh Ward + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.934803 + posY: 3.28626966 + posZ: -69.98283 + rotX: 0.0208145157 + rotY: 269.979553 + rotZ: 0.0167626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '230835' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5756321 + posY: 1.326131 + posZ: 49.75152 + rotX: 0.0208086669 + rotY: 269.9986 + rotZ: 0.01677173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da7613 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Prophecy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33395016 + posZ: 69.05 + rotX: 0.0208175573 + rotY: 269.96698 + rotZ: 0.01676294 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 370827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3708': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7275bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Memory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.1921158 + posY: 1.37513125 + posZ: -65.1841354 + rotX: 0.0197697822 + rotY: 269.863434 + rotZ: 0.0104709994 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235649 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9dc3d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Expedition Journal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3065948 + posY: 3.16604829 + posZ: -95.28326 + rotX: 0.0208080523 + rotY: 270.0001 + rotZ: 0.0167709477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450624 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 41e560 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .35 Winchester (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5040245 + posY: 1.34825277 + posZ: -50.91714 + rotX: 0.0124848755 + rotY: 270.000031 + rotZ: 0.0100587066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.36506307 + posZ: 69.05 + rotX: 0.02081015 + rotY: 269.997284 + rotZ: 0.0167725924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 6aea76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Occult Scraps + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.53872 + posY: 3.16745186 + posZ: -79.12552 + rotX: 0.0208098 + rotY: 269.999329 + rotZ: 0.01677202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Stealing Time + DragSelectable: true + GMNotes: '' + GUID: 62d930 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Gold Pocket Watch (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.749992 + posY: 1.41572177 + posZ: -34.200016 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 98fc57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grounded (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40310252 + posZ: 30.4900265 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Louisiana Lion + DragSelectable: true + GMNotes: '' + GUID: 27446e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leo De Luca (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.9715042 + posY: 2.18760157 + posZ: -92.92407 + rotX: 359.9792 + rotY: 270.0 + rotZ: 180.003784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8dda2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Colt Vest Pocket (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.0583534 + posY: 3.16848969 + posZ: -77.61848 + rotX: 0.0208065715 + rotY: 270.0092 + rotZ: 0.0167740323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Professor of Languages + DragSelectable: true + GMNotes: '' + GUID: 42806b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Professor Warren Rice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.05947 + posY: 2.373765 + posZ: -66.9028549 + rotX: 0.0208103973 + rotY: 270.000031 + rotZ: 0.0167690516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: No-Nonsense Archaeologist + DragSelectable: true + GMNotes: '' + GUID: 8bec05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lola Santiago (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41510141 + posZ: -31.9000053 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8b46b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keep Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.5964127 + posY: 1.3651222 + posZ: -58.195 + rotX: 0.0208016783 + rotY: 269.999939 + rotZ: 0.016794458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dffe4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrapper (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.4103744 + posZ: -20.4000053 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b1c5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind Over Matter (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.3897552 + posY: 3.18030715 + posZ: -81.2347946 + rotX: 0.0208092984 + rotY: 269.997253 + rotZ: 0.0167696085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b8c93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cheap Shot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.35007071 + posZ: 62.1500053 + rotX: 0.0208151955 + rotY: 269.974884 + rotZ: 0.0167636182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: I Guess His Name is "Pete?" + DragSelectable: true + GMNotes: '' + GUID: 448d3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Friendly Human + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.128437 + posY: 1.49981213 + posZ: -14.769701 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.01682643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4550': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: '313167' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yaztaroth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.1091042 + posY: 1.2648226 + posZ: 55.7025 + rotX: 0.0210862644 + rotY: 269.9919 + rotZ: 0.014994096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3135': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b94d12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shards of the Void (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.41737127 + posZ: -22.4099979 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e25dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 226340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Pure of Spirit + DragSelectable: true + GMNotes: '' + GUID: 3c9617 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brother Xavier (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40479016 + posZ: 11.9300222 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3139': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5e32a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Preposterous Sketches (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40336251 + posZ: 23.590023 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Logistical Genius + DragSelectable: true + GMNotes: '' + GUID: 4120f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lt. Wilson Stewart + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3919563 + posY: 1.31971157 + posZ: -46.01424 + rotX: 359.394073 + rotY: 270.001282 + rotZ: 0.016761262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Elegant and Elusive + DragSelectable: true + GMNotes: '' + GUID: 83b588 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: August Lindquist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.2187462 + posY: 1.36356008 + posZ: -57.5782471 + rotX: 0.0208096523 + rotY: 270.000031 + rotZ: 0.0167725645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 074858 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ace in the Hole (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41262 + posZ: -22.7000065 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553211 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -41045,16 +26735,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 315303 + CardID: 527561 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3153': + '3798': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -41062,7 +26752,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 3e0653 + GUID: 06322f Grid: true GridProjection: false Hands: true @@ -41073,33 +26763,258 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Think on Your Feet (2) + Nickname: Terrible Secret SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 102.75 - posY: 1.404555 - posZ: 7.20000029 + 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: 430907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2728': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ff3f17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Inspiration + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33866286 + posZ: 85.15 + rotX: 0.02081807 + rotY: 269.96698 + rotZ: 0.0167602263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cc6e4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Take Heart + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36107087 + posZ: 73.65 + rotX: 0.0208189469 + rotY: 269.9588 + rotZ: 0.0167584512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4487': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d6f6f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Bauble (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8109741 + posY: 2.485328 + posZ: -81.0424 + rotX: 0.0 + rotY: 270.0 + rotZ: 22.62915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.36910248 + posZ: 82.85 + rotX: 0.0208097026 + rotY: 269.997284 + rotZ: 0.01677215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 644af9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Studies (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40868592 + posZ: 9.790023 rotX: 359.987427 - rotY: 269.999878 + rotY: 269.999969 rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226349 + CardID: 378621 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2263': + '3786': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -41107,7 +27022,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e35bc2 + GUID: 53f076 Grid: true GridProjection: false Hands: true @@ -41118,17 +27033,62 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dynamite Blast (2) + Nickname: Soothing Melody SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 95.87002 - posY: 1.41161442 - posZ: -13.3699875 + 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: 368527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Let the Storm Rage + DragSelectable: true + GMNotes: '' + GUID: 1c98ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Key of Ys (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.40081811 + posZ: 9.499999 rotX: 359.987427 - rotY: 270.000031 + rotY: 269.999817 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 @@ -41180,286 +27140,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 374418 + CardID: 549400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3744': + '5494': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 869d4c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trial by Fire - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 67.71913 - posY: 1.365251 - posZ: 65.1638641 - rotX: 0.0208075251 - rotY: 269.9998 - rotZ: 0.01677034 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448034 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Lost in a Dream - DragSelectable: true - GMNotes: '' - GUID: 9f76ec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Twila Katherine Price (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.4830484 - posY: 1.57222378 - posZ: 0.6929285 - rotX: 359.920135 - rotY: 270.005066 - rotZ: 0.0168688241 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538729 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e21200 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clairvoyance (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.8509979 - posY: 3.276063 - posZ: -70.98741 - rotX: 0.0208088625 - rotY: 270.001343 - rotZ: 0.0167694334 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Will Try Anything Once - DragSelectable: true - GMNotes: '' - GUID: 9683d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Olive McBride - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.33406186 - posZ: 73.65 - rotX: 0.0207990929 - rotY: 270.0313 - rotZ: 0.0167859346 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430648 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Protective Amulet - DragSelectable: true - GMNotes: '' - GUID: b00b76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Disc of Itzamna (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41018677 - posZ: -1.7099812 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538724 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f5d382 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clairvoyance (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.05254 - posY: 3.28342962 - posZ: -72.7563248 - rotX: 0.0208094083 - rotY: 270.001343 - rotZ: 0.0167680066 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 546400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5456': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1597044073918730334/45D2725C3553953A73DAFBEF631E78D459716EA7/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843930220/4B448C6C7009864D4D1E4FBB57F48A40AF5F9136/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -41467,7 +27157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: '436401' + GUID: bcc255 Grid: true GridProjection: false Hands: true @@ -41478,33 +27168,213 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: CardCustom - Nickname: Ancient Covenant (2) + Nickname: Manipulate Destiny (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -1.35071743 - posY: 0.973594 - posZ: 0.205482975 - rotX: -3.253554e-05 - rotY: 270.0149 - rotZ: 7.234728e-05 + posX: -59.0734825 + posY: 3.28528285 + posZ: -70.7434 + rotX: 0.02080836 + rotY: 270.0 + rotZ: 0.0167710688 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 438128 + CardID: 431006 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4381': + '2737': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4e1d91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Steadfast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.34963584 + posZ: 75.95 + rotX: 0.0208116733 + rotY: 269.987427 + rotZ: 0.0167684965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440924 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: "Calamitous Blade of Celepha\xEFs" + DragSelectable: true + GMNotes: '' + GUID: bbd11b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Hungering Blade (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.6895256 + posY: 1.509287 + posZ: -64.4644852 + rotX: 0.04871207 + rotY: 270.0308 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f1166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Universal Solvent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.1666946 + posY: 1.302138 + posZ: -64.00173 + rotX: 0.0208088867 + rotY: 270.0 + rotZ: 0.0167715326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f00301 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ineffable Truth (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.64664 + posY: 3.28367877 + posZ: -69.09282 + rotX: 0.0208081361 + rotY: 270.001343 + rotZ: 0.016772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -41512,7 +27382,7 @@ ContainedObjects: Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: 406ab2 + GUID: e27c93 Grid: true GridProjection: false Hands: true @@ -41523,78 +27393,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Your Worst Nightmare + Nickname: Offer You Cannot Refuse 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 + posX: -43.7565 + posY: 3.1718924 + posZ: -76.1044846 + rotX: 0.0208088569 + rotY: 269.999451 + rotZ: 0.01677096 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 232907 + CardID: 315234 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Professor of Archaeology - DragSelectable: true - GMNotes: '' - GUID: f03306 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Francis Morgan - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.4931259 - posY: 2.37332487 - posZ: -69.13057 - rotX: 0.02081106 - rotY: 269.998016 - rotZ: 0.0167686362 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230306 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': + '3152': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -41602,7 +27427,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 1cd2bd + GUID: cdd6aa Grid: true GridProjection: false Hands: true @@ -41613,159 +27438,159 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Moonlight Ritual + Nickname: Hired Muscle (1) 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: 430503 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2758': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9591ac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Impromptu Barrier - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.362529 - posZ: 82.85 - rotX: 0.0208036583 - rotY: 270.012939 - rotZ: 0.01677902 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545323 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 14424c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mano a Mano (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.46355 - posY: 3.16915441 - posZ: -71.3471756 - rotX: 0.0208082441 - rotY: 270.0 - rotZ: 0.0167706981 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368858 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b0c61c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On Your Own (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41347623 - posZ: -31.9000053 + posX: 102.75 + posY: 1.39959192 + posZ: 25.60001 rotX: 359.987427 - rotY: 270.0 + rotY: 269.9998 rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368511 + CardID: 553220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b2b554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Ritual + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.0262833 + posY: 3.28368235 + posZ: -73.3182 + rotX: 0.0208091456 + rotY: 269.999817 + rotZ: 0.0167693086 + 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 05d263 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 379617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3796': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d24531 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deny Existence (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.68603 + posY: 1.41275847 + posZ: -14.9164782 + rotX: 359.987061 + rotY: 270.0 + rotZ: 359.985779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368512 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -41782,7 +27607,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 5cb973 + GUID: 0ab3f1 Grid: true GridProjection: false Hands: true @@ -41793,33 +27618,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Fine Clothes + Nickname: Knife SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 57.2699966 - posY: 1.36797941 - posZ: 87.45 - rotX: 0.0208086763 + posY: 1.36730623 + posZ: 85.15 + rotX: 0.0208092928 rotY: 269.994049 - rotZ: 0.0167718157 + rotZ: 0.0167697817 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 447731 + CardID: 292816 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4477': + '2928': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -41827,7 +27652,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 0d006f + GUID: db2c81 Grid: true GridProjection: false Hands: true @@ -41838,69 +27663,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Moonstone + Nickname: Telescopic Sight (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -53.3372574 - posY: 2.84537172 - posZ: -101.660507 - rotX: 0.0208083633 - rotY: 270.0 - rotZ: 0.0167707354 + 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: 430659 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 536b52 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Insight (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41949248 - posZ: -36.2099876 - rotX: 359.987427 - rotY: 270.0001 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226341 + CardID: 226307 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -41917,7 +27697,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d2e026 + GUID: 84ba9d Grid: true GridProjection: false Hands: true @@ -41928,33 +27708,798 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Vicious Blow (2) + Nickname: '"I''ll see you in hell!"' SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 95.87002 - posY: 1.40541053 - posZ: 9.630022 + 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: 448613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4486': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: A Liar, or a Prophet, or Both + DragSelectable: true + GMNotes: '' + GUID: 16e57b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Black Cat (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2241611 + posY: 1.69086015 + posZ: -15.2800369 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168764312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8e57b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clarity of Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33338857 + posZ: 71.35 + rotX: 0.0207986627 + rotY: 270.0313 + rotZ: 0.016783379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Took You Long Enough + DragSelectable: true + GMNotes: '' + GUID: 726d1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Valentino Rivas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.88332 + posY: 1.35615063 + posZ: 68.6109161 + rotX: 0.02080685 + rotY: 269.9994 + rotZ: 0.0167702865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 101a41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .18 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.0710678 + posY: 3.285107 + posZ: -72.3590546 + rotX: 0.014732915 + rotY: 270.0195 + rotZ: 0.0118833436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cf4571 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blessed Blade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.508297 + posY: 3.16578174 + posZ: -83.28038 + rotX: 0.020808829 + rotY: 269.999 + rotZ: 0.0167702846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f9ab1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vantage Point + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.240004 + posY: 1.34129119 + posZ: 71.35 + rotX: 0.02081259 + rotY: 269.986359 + rotZ: 0.0167654455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cc11e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lockpicks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.46911 + posY: 3.28525186 + posZ: -70.1147461 + rotX: 0.0208143983 + rotY: 269.9931 + rotZ: 0.0167597141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3718': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4156cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Search for the Truth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.2037659 + posY: 1.48903632 + posZ: -49.09441 + rotX: 0.0161498226 + rotY: 270.00058 + rotZ: 0.0117214322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553359 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3797': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Sanctum's Reward + DragSelectable: true + GMNotes: '' + GUID: 223ba3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twilight Blade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.766281 + posY: 1.376472 + posZ: -79.3358841 + rotX: 0.0199582744 + rotY: 269.996155 + rotZ: 0.0131309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3711': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '876557' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Duke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.51822 + posY: 1.49823117 + posZ: -57.04474 + rotX: 0.02328792 + rotY: 270.0 + rotZ: 0.0151858637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4407': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aec357 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guardian of the Crystallizer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.8113861 + posY: 1.56324077 + posZ: 29.4504681 + rotX: 359.9853 + rotY: 269.977234 + rotZ: 359.981079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Painted World + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.31871462 + posY: 0.6395771 + posZ: -49.1846924 + rotX: -5.89429e-06 + rotY: 269.999939 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b4ad29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Contraband + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500061 + posY: 1.348051 + posZ: 55.2500038 + rotX: 0.0208157171 + rotY: 269.9749 + rotZ: 0.0167655777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2777': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c2d211 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Swift Reflexes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.2479954 + posY: 1.33109152 + posZ: 71.25443 + rotX: 0.0208104569 + rotY: 269.9964 + rotZ: 0.0167663582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430639 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Unidentified + DragSelectable: true + GMNotes: '' + GUID: 9bc46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Stone (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40460336 + posZ: 18.99002 rotX: 359.987427 - rotY: 270.000061 + rotY: 269.999969 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368831 + CardID: 312513 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3688': + '3125': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Nightmare is Over + DragSelectable: true + GMNotes: '' + GUID: 73bccf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Penny White + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.93601 + posY: 1.35457325 + posZ: 68.1201248 + rotX: 0.0208114143 + rotY: 269.988525 + rotZ: 0.0167672429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Too Noble for His Own Good + DragSelectable: true + GMNotes: '' + GUID: 08e5a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tetsuo Mori + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1324425 + posY: 1.67257357 + posZ: 7.045372 + rotX: 359.930023 + rotY: 269.9999 + rotZ: 0.007491751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -41962,7 +28507,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fc9e1b + GUID: 1d75d0 Grid: true GridProjection: false Hands: true @@ -41973,33 +28518,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dig Deep + Nickname: Grimm's Fairy Tales 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 + posX: -60.3364563 + posY: 3.2840364 + posZ: -71.9591446 + rotX: 0.0147323161 + rotY: 270.0195 + rotZ: 0.0118827708 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 277910 + CardID: 545314 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2779': + '2662': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -42007,7 +28552,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6d9881 + GUID: 63b3e5 Grid: true GridProjection: false Hands: true @@ -42018,63 +28563,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Drawing Thin + Nickname: Monster Slayer 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: 235840 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2358': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Repossess the Past - DragSelectable: true - GMNotes: '' - GUID: 87718c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -44.5658951 - posY: 2.845377 - posZ: -108.118523 - rotX: 0.0208081175 - rotY: 270.000061 - rotZ: 0.0167709235 + posX: -55.5310669 + posY: 3.28567147 + posZ: -71.8129654 + rotX: 0.0208143331 + rotY: 269.979553 + rotZ: 0.0167633239 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -42124,6 +28624,1131 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 527238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5272': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b4b991 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shining Trapezohedron (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.4998856 + posY: 1.297716 + posZ: -78.69504 + rotX: 0.0208082087 + rotY: 270.000061 + rotZ: 0.01677083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226358 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b1ad65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: M1918 BAR (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41781831 + posZ: -36.36999 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcf406 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shell Shock + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7654457 + posY: 1.66001654 + posZ: -46.2021942 + rotX: 0.167903721 + rotY: 270.0219 + rotZ: 0.438815027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5fe780 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moxie (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40021229 + posZ: 23.300005 + rotX: 359.987427 + rotY: 269.999725 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04d33d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky! (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.04656 + posY: 3.28507066 + posZ: -68.765274 + rotX: 0.0147309937 + rotY: 270.0195 + rotZ: 0.0118825054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e425d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Research + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.33810127 + posZ: 87.45 + rotX: 0.020799011 + rotY: 270.0313 + rotZ: 0.01678507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Olaus Wormius Translation + DragSelectable: true + GMNotes: '' + GUID: d45f10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Necronomicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.2950974 + posY: 1.36349916 + posZ: -51.4901772 + rotX: 0.0208088756 + rotY: 270.0 + rotZ: 0.0167707372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3710': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 97781f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wracked by Nightmares + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.6226044 + posY: 1.37552524 + posZ: -49.2005348 + rotX: 0.0178489313 + rotY: 269.9939 + rotZ: 0.015755007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4408': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a33acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Open Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.43073 + posY: 1.5662576 + posZ: 25.0269451 + rotX: 359.986816 + rotY: 270.027649 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.6699944 + posY: 1.36921418 + posZ: 87.45 + rotX: 0.0208074879 + rotY: 270.000732 + rotZ: 0.0167732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9bd7cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shortcut (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40708482 + posZ: 9.790022 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5efc92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Eclipse (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.8165779 + posY: 3.28376937 + posZ: -77.12867 + rotX: 0.0208068 + rotY: 270.0092 + rotZ: 0.0167717934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 50fb37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Take the Initiative + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.35300207 + posZ: 87.45 + rotX: 0.0208121948 + rotY: 269.987427 + rotZ: 0.01676891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Elite. + DragSelectable: true + GMNotes: '' + GUID: 6720ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Man in the Pallid Mask + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.02582 + posY: 2.37551236 + posZ: -83.66287 + rotX: 0.020809222 + rotY: 270.0 + rotZ: 0.0167703032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232949 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Recalling Ancient Things + DragSelectable: true + GMNotes: '' + GUID: 6714b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zebulon Whateley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8655548 + posY: 1.363576 + posZ: -55.4826279 + rotX: 0.0208091382 + rotY: 270.0 + rotZ: 0.0167707019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3802': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Wrong Place, Wrong Time + DragSelectable: true + GMNotes: '' + GUID: b8380d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jessica Hyde (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.11804 + posY: 1.68581808 + posZ: -7.75991 + rotX: 359.9265 + rotY: 270.0019 + rotZ: 0.0105229123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c17f2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Forewarned (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40212178 + posZ: 28.1900234 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3745': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7b6ab5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Analytical Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.42199 + posY: 1.61407924 + posZ: -45.08632 + rotX: 0.362734765 + rotY: 270.015045 + rotZ: 359.680054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 541300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5413': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830597915335843/99E638B3D735149C6624312DBAB47A3AA2D2F95D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Advanced + DragSelectable: true + GMNotes: '' + GUID: bd323d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Hospital Debts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0280762 + posY: 1.30279255 + posZ: -64.41893 + rotX: 0.0208086669 + rotY: 270.000031 + rotZ: 0.0167711359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4476': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30062e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Three Aces (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8546753 + posY: 1.29860055 + posZ: -78.9555054 + rotX: 0.0208080355 + rotY: 270.0001 + rotZ: 0.01677129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d4eb9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trench Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230004 + posY: 1.35053277 + posZ: 87.45 + rotX: 0.0208162982 + rotY: 269.9694 + rotZ: 0.0167616438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da46e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Police Badge (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.4097532 + posZ: -6.469983 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 96fd5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Plan of Action + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.736805 + posY: 3.165655 + posZ: -83.77747 + rotX: 0.0208086949 + rotY: 269.999 + rotZ: 0.0167706273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a5782 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eye of Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45764 + posY: 3.51923013 + posZ: -65.76698 + rotX: 0.0166530423 + rotY: 270.0 + rotZ: 180.006729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3717': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 66d810 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zoey's Cross + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.3385239 + posY: 1.35815763 + posZ: -56.8936729 + rotX: 0.0154275233 + rotY: 270.0 + rotZ: 0.01495364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 538813 ColorDiffuse: @@ -42170,502 +29795,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 550820 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f8a977 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .18 Derringer (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.5310936 - posY: 3.28489327 - posZ: -71.11179 - rotX: 0.0144211408 - rotY: 270.0191 - rotZ: 0.0116323065 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368816 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 88d3c0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Look what I found!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.58142 - posY: 1.364494 - posZ: -63.58151 - rotX: 0.0207989458 - rotY: 270.040161 - rotZ: 180.0168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 376840 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3768': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ecd087 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Caught Red-Handed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.359684 - posY: 3.53130126 - posZ: -65.6879654 - rotX: 0.0167008284 - rotY: 269.999939 - rotZ: 180.0173 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538707 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c6caf6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ineffable Truth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -67.12337 - posY: 3.28281879 - posZ: -69.99682 - rotX: 0.02081139 - rotY: 270.001343 - rotZ: 0.01676363 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368507 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 45bdf0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Desperate Search - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.3684293 - posZ: 80.55 - rotX: 0.02080979 - rotY: 269.997284 - rotZ: 0.0167730879 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527561 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 06322f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Terrible Secret - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.347881 - posY: 1.52229333 - posZ: -78.62629 - rotX: 0.037793614 - rotY: 269.967255 - rotZ: 0.009221422 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368422 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Unidentified - DragSelectable: true - GMNotes: '' - GUID: 565b6b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.639993 - posY: 1.34274948 - posZ: 80.55001 - rotX: 0.0208139587 - rotY: 269.978821 - rotZ: 0.0167658776 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277511 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2775': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d946d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wither - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -26.7956734 - posY: 1.57171309 - posZ: 40.9552956 - rotX: 1.12907594e-06 - rotY: 269.998749 - rotZ: 2.312074e-05 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315256 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: No-Nonsense Archaeologist - DragSelectable: true - GMNotes: '' - GUID: 8bec05 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lola Santiago (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41510141 - posZ: -31.9000053 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545210 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 389a34 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Backpack (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.4068222 - posY: 3.2850585 - posZ: -73.0593 - rotX: 0.0208073538 - rotY: 270.0092 - rotZ: 0.01676984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315240 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Louisiana Lion - DragSelectable: true - GMNotes: '' - GUID: 27446e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leo De Luca (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.9715042 - posY: 2.18760157 - posZ: -92.92407 - rotX: 359.9792 - rotY: 270.0 - rotZ: 180.003784 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 551609 + CardID: 551507 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -42682,7 +29812,7 @@ ContainedObjects: Description: Weakness DragSelectable: true GMNotes: '' - GUID: '197242' + GUID: 1e6cae Grid: true GridProjection: false Hands: true @@ -42693,159 +29823,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Out of Doggie Treats + Nickname: No Sense of Space or Time SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 15.9446363 - posY: 1.46845531 - posZ: -15.0453625 + posX: 15.8583241 + posY: 1.47067189 + posZ: -7.926416 rotX: 359.920135 - rotY: 270.000336 - rotZ: 0.0168739613 + rotY: 270.000122 + rotZ: 0.0168734919 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 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 050ba1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - 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: 233606 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2336': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2fc31c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mi-Go Weapon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.6340179 - posY: 1.2999053 - posZ: -72.28999 - rotX: 0.0208086576 - rotY: 270.0 - rotZ: 0.0167716239 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368715 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b8c93a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cheap Shot - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35007071 - posZ: 62.1500053 - rotX: 0.0208151955 - rotY: 269.974884 - rotZ: 0.0167636182 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450612 + CardID: 450609 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -42862,7 +29857,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 922d4c + GUID: 3d08dc Grid: true GridProjection: false Hands: true @@ -42873,18 +29868,3888 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Segment of Onyx (1) (Taboo) + Nickname: Drawing Thin (Taboo) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -48.5141525 - posY: 1.45858431 - posZ: -51.151886 - rotX: 0.0208085477 - rotY: 269.999664 - rotZ: 0.0167702287 + posX: -49.54574 + posY: 1.48710084 + posZ: -51.26631 + rotX: 0.0208053458 + rotY: 269.9997 + rotZ: 0.0167752914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dc4a2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Will to Survive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.7706871 + posY: 3.28379083 + posZ: -72.23937 + rotX: 0.0147310672 + rotY: 270.0195 + rotZ: 0.0118822018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5519': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44bc00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hired Dogs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.1418762 + posY: 1.71884549 + posZ: -31.8025227 + rotX: 358.936829 + rotY: 269.99765 + rotZ: 0.0168741662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444451 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3b8cb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mystifying Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.54795074 + posY: 1.51128662 + posZ: -84.96509 + rotX: 5.05340624 + rotY: 270.0641 + rotZ: 0.0321298726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Petrus de Dacia Translation + DragSelectable: true + GMNotes: '' + GUID: 96ba38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Necronomicon (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.47121 + posY: 3.167239 + posZ: -78.59439 + rotX: 0.0208092071 + rotY: 269.997253 + rotZ: 0.0167703163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Acuity + DragSelectable: true + GMNotes: '' + GUID: 3d22c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Empower Self (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2720909 + posY: 1.57276511 + posZ: 3.53009033 + rotX: 359.9201 + rotY: 270.0217 + rotZ: 0.01684677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5065a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Liquid Courage (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.5539131 + posY: 3.28516722 + posZ: -70.53557 + rotX: 0.0208124164 + rotY: 269.9931 + rotZ: 0.01676321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3741': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1890d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stars of Hyades + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.30492 + posY: 2.19019938 + posZ: -81.69471 + rotX: 0.02080839 + rotY: 270.000031 + rotZ: 0.0167755783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f4db2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pickpocketing (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40765679 + posZ: -4.300003 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ba560e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trench Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36326671 + posZ: 71.35 + rotX: 0.02081009 + rotY: 269.99408 + rotZ: 0.0167732555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4488': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Library Intern + DragSelectable: true + GMNotes: '' + GUID: 97e9ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abigail Foreman (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1198387 + posY: 1.67931545 + posZ: 7.569963 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.016875755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4d9b32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bounty Contracts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.42096 + posY: 1.49901617 + posZ: -49.8807373 + rotX: 0.0231439564 + rotY: 270.0193 + rotZ: 0.0126447231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86d109 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blasphemous Covenant (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.2089958 + posY: 1.3051374 + posZ: -52.35809 + rotX: 0.0208086818 + rotY: 269.999481 + rotZ: 0.0167708173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a13ca4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On the Hunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.49531 + posY: 2.36478925 + posZ: -86.53236 + rotX: 0.020807568 + rotY: 269.999939 + rotZ: 0.0167751536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368427 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c18ebe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Laboratory Assistant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000273 + posY: 1.33938324 + posZ: 69.05 + rotX: 0.02081406 + rotY: 269.978821 + rotZ: 0.01676627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: db90e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ethereal Form + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1006126 + posY: 1.52393556 + posZ: -4.153924 + rotX: 359.924347 + rotY: 270.001984 + rotZ: 0.0104675805 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48e516 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Test of Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.1363754 + posY: 3.28423262 + posZ: -71.51533 + rotX: 0.0147310011 + rotY: 270.0195 + rotZ: 0.0118820174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a614de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Feed the Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.1284676 + posY: 3.285403 + posZ: -72.11149 + rotX: 0.0208092984 + rotY: 269.997253 + rotZ: 0.0167689845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69116c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ward of Radiance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.71407 + posY: 3.77611351 + posZ: -77.7482147 + rotX: 0.0208089836 + rotY: 269.999939 + rotZ: 0.01676984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Alacrity + DragSelectable: true + GMNotes: '' + GUID: 4c0f00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Empower Self (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4537659 + posY: 3.52513242 + posZ: -65.7639 + rotX: 0.0131430849 + rotY: 270.000458 + rotZ: 179.577087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ad63bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Showmanship + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.29559 + posY: 3.167245 + posZ: -81.13954 + rotX: 0.0208086949 + rotY: 269.999329 + rotZ: 0.016770551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Dreams of a Child + DragSelectable: true + GMNotes: '' + GUID: ea40f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5937138 + posY: 1.59167707 + posZ: 9.419598 + rotX: 359.920135 + rotY: 269.992584 + rotZ: 0.016887974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Dark Knowledge + DragSelectable: true + GMNotes: '' + GUID: 2f4507 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Forbidden Tome (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.5784874 + posY: 3.16400886 + posZ: -82.2701 + rotX: 0.0208092239 + rotY: 269.997253 + rotZ: 0.0167695917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: e628de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Called by the Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.19686 + posY: 3.16954231 + posZ: -71.48272 + rotX: 0.0144210625 + rotY: 270.0191 + rotZ: 0.0116316061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Tough Old Bird + DragSelectable: true + GMNotes: '' + GUID: 1cccfe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Granny Orne + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.7423134 + posY: 3.28557158 + posZ: -71.1751556 + rotX: 0.0147321494 + rotY: 270.0195 + rotZ: 0.0118827978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7baf75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Backstab (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.1333046 + posY: 3.285902 + posZ: -69.16647 + rotX: 0.0208113585 + rotY: 269.9931 + rotZ: 0.016765777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7ec473 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stand Together + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.39431 + posY: 3.16995716 + posZ: -69.50964 + rotX: 0.0208143611 + rotY: 269.979553 + rotZ: 0.0167634916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4477': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f21109 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Glimmer of Hope + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.2737465 + posY: 2.84284782 + posZ: -111.100708 + rotX: 0.020808937 + rotY: 270.0 + rotZ: 0.0167718567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448938 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4489': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 26922c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spiritual Resolve (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.1415749 + posY: 1.30042791 + posZ: -66.1530762 + rotX: 0.0208079927 + rotY: 270.0001 + rotZ: 0.0167709365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226356 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a7944d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Springfield M1903 (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41657758 + posZ: -31.7699947 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226354 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f03baa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Custom Ammunition (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41533685 + posZ: -27.1699924 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cf9ca8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Augur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.34123 + posY: 1.54816771 + posZ: 37.5141525 + rotX: 359.989624 + rotY: 269.9923 + rotZ: 359.9818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: O'Bannion Driver + DragSelectable: true + GMNotes: '' + GUID: 0e72b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chuck Fergus (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.83603 + posY: 3.28583312 + posZ: -69.89671 + rotX: 0.020810334 + rotY: 269.9931 + rotZ: 0.0167687237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '812685' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Devil's Luck (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.149994 + posY: 1.39610553 + posZ: 32.50001 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 91da6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beretta M1918 (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.3051529 + posY: 3.285303 + posZ: -69.7636 + rotX: 0.0208112039 + rotY: 269.9931 + rotZ: 0.016766414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c6509 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Thompson + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.922472 + posY: 1.324889 + posZ: 49.66081 + rotX: 0.0208094623 + rotY: 269.993744 + rotZ: 0.016770605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Circumstances Beyond Your Control + DragSelectable: true + GMNotes: '' + GUID: d5c93d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.62506 + posY: 1.3658669 + posZ: 53.07699 + rotX: 0.0129812742 + rotY: 269.999023 + rotZ: 0.0141451433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Louisiana Lion + DragSelectable: true + GMNotes: '' + GUID: eaa415 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leo De Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.11792 + posY: 2.18863821 + posZ: -89.20177 + rotX: 359.9792 + rotY: 270.0 + rotZ: 180.003784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4487': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ff4aea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scavenging (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.56107 + posY: 2.483187 + posZ: -84.9376 + rotX: 0.0 + rotY: 270.0 + rotZ: 22.62915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230355 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b3ce16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shrivelling (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41985285 + posZ: -31.6099911 + rotX: 359.987427 + rotY: 270.000153 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 537612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: dc5b38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Price of Failure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.40347 + posY: 1.3066 + posZ: -49.7053833 + rotX: 0.0208091587 + rotY: 269.999969 + rotZ: 0.0167716891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 45d2d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncage the Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.3366431 + posZ: 78.25 + rotX: 0.02081758 + rotY: 269.967 + rotZ: 0.0167609118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 600a3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Stars Are Right + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.37835 + posY: 1.401744 + posZ: 25.1459961 + rotX: 359.9877 + rotY: 270.0277 + rotZ: 359.982635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 96b5ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Perception (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4664268 + posY: 3.16685772 + posZ: -84.75948 + rotX: 0.02080912 + rotY: 269.997253 + rotZ: 0.0167696644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Ruthless Tactician + DragSelectable: true + GMNotes: '' + GUID: 7f7ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Naomi O'Bannion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6088257 + posY: 2.373914 + posZ: -84.50722 + rotX: 0.020808164 + rotY: 270.0 + rotZ: 0.0484022573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2fdcc9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vault of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.2160721 + posY: 5.37988853 + posZ: -67.6042252 + rotX: 0.020809019 + rotY: 269.997284 + rotZ: 0.0167697947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Message from Your Inner Self + DragSelectable: true + GMNotes: '' + GUID: e80bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "The Moon \u2022 XVIII (1)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41013837 + posZ: -13.5000048 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eea4ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Well Prepared (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40789211 + posZ: 0.4300183 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: baef55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300068 + posY: 1.34436178 + posZ: 62.1500053 + rotX: 0.0207944941 + rotY: 270.027039 + rotZ: 0.0167757757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34582007 + posZ: 71.3500061 + rotX: 0.0208174884 + rotY: 269.9694 + rotZ: 0.01676253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c40cb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Watch this!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.358038 + posZ: 85.15 + rotX: 0.0208082516 + rotY: 270.000122 + rotZ: 0.01677166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232950 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Smarter Than He Lets On + DragSelectable: true + GMNotes: '' + GUID: f14dce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Earl Sawyer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.5583954 + posY: 1.3651762 + posZ: -51.63776 + rotX: 0.0208091978 + rotY: 270.0 + rotZ: 0.0167707857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Pact + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 78.90516 + posY: 1.52898574 + posZ: 71.47087 + rotX: 0.01666248 + rotY: 269.9882 + rotZ: 0.021478314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mysterious Device + DragSelectable: true + GMNotes: '' + GUID: 44334c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Puzzle Box + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.31332 + posY: 1.36443675 + posZ: -54.4657478 + rotX: 0.0208098013 + rotY: 270.0 + rotZ: 0.016772978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377436 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3774': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0e4a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Codex of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.3793259 + posY: 2.1848042 + posZ: -94.20157 + rotX: 0.02080714 + rotY: 270.000854 + rotZ: 0.0167760067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 552309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0de10c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: False Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3814354 + posY: 3.52287769 + posZ: -65.7089539 + rotX: 0.0125160087 + rotY: 270.000122 + rotZ: 179.900925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a1fd61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ambush (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.4023087 + posZ: 21.130024 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e4688b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daredevil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.6074638 + posY: 3.285712 + posZ: -70.53062 + rotX: 0.0208127052 + rotY: 269.9931 + rotZ: 0.0167631619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '812175' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Logical Reasoning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.240002 + posY: 1.33725178 + posZ: 57.5499954 + rotX: 0.0208138786 + rotY: 269.986359 + rotZ: 0.016766822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 546916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Item. Weapon. Relic. Melee. + DragSelectable: true + GMNotes: '' + GUID: dc674e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Khopesh of the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.6707649 + posY: 2.041185 + posZ: -100.924431 + rotX: 0.020810727 + rotY: 270.0 + rotZ: 0.0167692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b1550 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leather Coat (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.7273674 + posY: 3.28407264 + posZ: -71.29579 + rotX: 0.0144219482 + rotY: 270.0191 + rotZ: 0.0116329836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e454c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Well-Maintained (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.5159187 + posY: 1.326544 + posZ: 54.8107338 + rotX: 0.02080832 + rotY: 269.998047 + rotZ: 0.0167722814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 79287f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Torrent of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2000046 + posY: 1.34057081 + posZ: 87.45 + rotX: 0.0208165441 + rotY: 269.971 + rotZ: 0.0167645477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Purifier + DragSelectable: true + GMNotes: '' + GUID: f6dfe5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grete Wagner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.8801346 + posY: 3.28633022 + posZ: -69.80603 + rotX: 0.0208143089 + rotY: 269.979553 + rotZ: 0.0167628229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 376501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3765': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f93ea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Voice of the Messenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.2586918 + posY: 1.357923 + posZ: -50.11138 + rotX: 0.0269877315 + rotY: 270.035828 + rotZ: 0.01620763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 439af2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky! (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40479088 + posZ: 0.299998045 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: edb554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23999453 + posY: 1.34600389 + posZ: 87.4500046 + rotX: 0.02081109 + rotY: 269.986359 + rotZ: 0.0167644043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3feff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Armageddon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45762 + posY: 3.52648163 + posZ: -65.76777 + rotX: 0.0165135432 + rotY: 270.0 + rotZ: 180.327332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 537609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 6cbc01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bell Tolls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.8913 + posY: 1.30483675 + posZ: -55.12381 + rotX: 0.0208084658 + rotY: 269.999969 + rotZ: 0.01677108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Forgotten Daughter + DragSelectable: true + GMNotes: '' + GUID: fb9dbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Aquinnah (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.149994 + posY: 1.41595781 + posZ: -41.1000137 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 80acd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.33742809 + posZ: 85.15 + rotX: 0.0207991842 + rotY: 270.0313 + rotZ: 0.01678471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c607c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky Cigarette Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35152888 + posZ: 71.35 + rotX: 0.02081083 + rotY: 269.98877 + rotZ: 0.01677086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c563c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Anything You Can Do, Better + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.02157 + posY: 3.285268 + posZ: -72.7382355 + rotX: 0.02081092 + rotY: 269.9931 + rotZ: 0.0167650357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3140': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 25ad44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kerosene (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.4041698 + posZ: 14.2300215 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Madness. Pact. + DragSelectable: true + GMNotes: '' + GUID: 4f903e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.30787 + posY: 2.37636733 + posZ: -74.3676 + rotX: 0.0208093375 + rotY: 270.0 + rotZ: 0.0167706758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5cb973 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fine Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.2699966 + posY: 1.36797941 + posZ: 87.45 + rotX: 0.0208086763 + rotY: 269.994049 + rotZ: 0.0167718157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3792': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7f1b48 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypnotic Therapy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.17400074 + posY: 1.52685761 + posZ: -65.01166 + rotX: 0.0271723326 + rotY: 270.0131 + rotZ: -0.00206514588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.12614 + posY: 1.52719057 + posZ: 71.0024948 + rotX: 0.0208145846 + rotY: 270.0049 + rotZ: 0.0171645433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: edd6c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lockpicks (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.401453 + posZ: 18.7000046 + rotX: 359.987427 + rotY: 269.999756 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Fearless Flatfoot + DragSelectable: true + GMNotes: '' + GUID: ae20e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alice Luxley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.431 + posY: 1.32506227 + posZ: 54.60595 + rotX: 0.0208093189 + rotY: 269.99942 + rotZ: 0.0167746153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c5fb42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Azure Flame (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.5975952 + posY: 3.28375673 + posZ: -72.29174 + rotX: 0.0208092667 + rotY: 270.001343 + rotZ: 0.0167678669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 370046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3700': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 274daa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mysteries Remain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.64643 + posY: 1.54209042 + posZ: -58.08328 + rotX: 6.12337255 + rotY: 270.007751 + rotZ: 0.006448847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 37882c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Skeptic (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.61065 + posY: 1.30367255 + posZ: -56.8638954 + rotX: 0.0208085012 + rotY: 269.999481 + rotZ: 0.01677089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9da37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fire Axe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.57 + posY: 1.35927451 + posZ: 75.95 + rotX: 0.02081681 + rotY: 269.9702 + rotZ: 0.0167647749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a6af13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lupara (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.414481 + posZ: -29.600008 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 695bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zeal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.16347 + posY: 1.56949711 + posZ: 37.4911728 + rotX: 359.9874 + rotY: 269.9922 + rotZ: 359.9842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f4dd3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shocking Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0190773 + posY: 1.36276233 + posZ: -66.7568359 + rotX: 0.0208035558 + rotY: 270.019226 + rotZ: 0.016777629 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -42935,142 +33800,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 550809 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c8505c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scrapper - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.41421 - posY: 3.284829 - posZ: -71.58872 - rotX: 0.0144232074 - rotY: 270.0191 - rotZ: 0.0116329072 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368860 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0027f2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Will to Survive (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41533744 - posZ: -38.8000031 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438124 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: a5be8b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unspeakable Oath (Bloodthirst) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.77216 - posY: 1.37203252 - posZ: 51.6075249 - rotX: 0.0207682457 - rotY: 269.999329 - rotZ: 180.022034 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274006 + CardID: 274011 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -43087,7 +33817,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d6f8d1 + GUID: 6945f7 Grid: true GridProjection: false Hands: true @@ -43098,24 +33828,1239 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Tony's Quarry + Nickname: Watcher from Another Dimension 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 + 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: 545318 + CardID: 538830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1a1b58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Miskatonic Archaeology Funding (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.612587 + posY: 3.16738367 + posZ: -80.51151 + rotX: 0.0208090954 + rotY: 269.997253 + rotZ: 0.0167700425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a5c780 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enraptured + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2000046 + posY: 1.33922434 + posZ: 82.85 + rotX: 0.0208174363 + rotY: 269.971 + rotZ: 0.0167632867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dfd48b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Painted World + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.31871462 + posY: 0.622307062 + posZ: -49.1846924 + rotX: -5.89429e-06 + rotY: 269.999939 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3719': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 033a35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rex's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.5889359 + posY: 1.49881017 + posZ: -49.1716652 + rotX: 0.0157422461 + rotY: 270.000061 + rotZ: 0.0127807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Tough Old Bird + DragSelectable: true + GMNotes: '' + GUID: 52a66f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Granny Orne (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.328167 + posY: 5.377853 + posZ: -67.87628 + rotX: 0.01473101 + rotY: 270.0195 + rotZ: 0.011882768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3796': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Deals with "Devils" + DragSelectable: true + GMNotes: '' + GUID: 4f2489 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dayana Esperence (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.65864 + posY: 1.41104889 + posZ: -8.65793 + rotX: 359.987427 + rotY: 269.999176 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: a2e7d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obsessive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.1068153 + posY: 3.28374267 + posZ: -75.74227 + rotX: 0.0208097342 + rotY: 269.997223 + rotZ: 0.0167702455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4487': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f0389b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nothing Left to Lose (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.3847427 + posY: 1.30081713 + posZ: -67.00287 + rotX: 0.0208080914 + rotY: 270.0001 + rotZ: 0.01677122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368841 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Forgotten Daughter + DragSelectable: true + GMNotes: '' + GUID: 9393ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Aquinnah (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40168893 + posZ: 11.8 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 541ee9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paradoxical Covenant (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45762 + posY: 3.52184319 + posZ: -65.76732 + rotX: 0.0166523419 + rotY: 270.0 + rotZ: 180.096146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450619 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Let the Storm Rage + DragSelectable: true + GMNotes: '' + GUID: 244d61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Key of Ys (5) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.6845245 + posY: 1.3909651 + posZ: -51.78406 + rotX: 0.0208023489 + rotY: 269.999664 + rotZ: 0.0167920664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 3eef18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Thrice-Damned Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.80547 + posY: 3.285487 + posZ: -69.0229645 + rotX: 0.0208092257 + rotY: 269.997253 + rotZ: 0.0167695954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '833305' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.35209048 + posZ: 69.05 + rotX: 0.0208152477 + rotY: 269.974854 + rotZ: 0.0167662222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d1d7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Not without a fight!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36309063 + posZ: 80.55 + rotX: 0.0208194442 + rotY: 269.9588 + rotZ: 0.01675947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230356 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 07bc04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grotesque Statue (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.42047322 + posZ: -33.90999 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d8b64b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Promise of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.8023376 + posY: 3.283064 + posZ: -74.32583 + rotX: 0.0208089463 + rotY: 269.999878 + rotZ: 0.0167692434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f2508d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hot Streak (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.4113791 + posZ: -18.1000061 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a8e495 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Anatomical Diagrams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.239993 + posY: 1.34263766 + posZ: 75.9500046 + rotX: 0.0208109878 + rotY: 269.986359 + rotZ: 0.0167700239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mysterious Benefactress + DragSelectable: true + GMNotes: '' + GUID: 1ee492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madame Labranche + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35725486 + posZ: 69.05 + rotX: 0.0208162181 + rotY: 269.970184 + rotZ: 0.0167627446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 87226d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sacred Covenant (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45764 + posY: 3.51937938 + posZ: -65.76698 + rotX: 0.016651 + rotY: 270.0 + rotZ: 180.017426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9f0b34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pay Day (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.39897144 + posZ: 27.90001 + rotX: 359.987427 + rotY: 269.999725 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.76141 + posY: 1.36816335 + posZ: -57.0264244 + rotX: 0.02079995 + rotY: 270.040161 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 18927e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Treasure Hunter (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40083265 + posZ: 21.0000038 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fortuitous Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.31382 + posY: 1.5461663 + posZ: 37.3481064 + rotX: 359.984924 + rotY: 269.992371 + rotZ: 359.9843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371466 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3714': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 46812e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sacrificial Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.95408 + posY: 1.51747715 + posZ: -49.6841774 + rotX: 0.018425867 + rotY: 270.021179 + rotZ: 0.02911497 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 102fad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Reliable (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.40671 + posY: 3.51911259 + posZ: -65.72932 + rotX: 0.0208095815 + rotY: 270.017 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2172e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Esoteric Atlas (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.27167 + posY: 3.28348327 + posZ: -80.1634445 + rotX: 0.0208092164 + rotY: 269.997253 + rotZ: 0.0167695563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545307 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -43132,7 +35077,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 3df5fb + GUID: af3efd Grid: true GridProjection: false Hands: true @@ -43143,18 +35088,8883 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Evidence! (1) + Nickname: Relentless SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -51.7155762 - posY: 3.17010212 - posZ: -72.3316956 - rotX: 0.02080834 + posX: -56.07636 + posY: 3.28584647 + posZ: -70.35861 + rotX: 0.02081439 + rotY: 269.979553 + rotZ: 0.0167634711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 121b2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dendromorphosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1638451 + posY: 3.18465137 + posZ: -78.99707 + rotX: 0.02080465 + rotY: 269.997864 + rotZ: 0.7455131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 54293e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Boxing Gloves (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.8833427 + posY: 3.169314 + posZ: -73.31997 + rotX: 0.0208083354 rotY: 270.0 - rotZ: 0.0167695936 + rotZ: 0.0167705938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3716': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e68658 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Smite the Wicked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.515625 + posY: 1.52500629 + posZ: -50.03807 + rotX: 0.037379235 + rotY: 269.966217 + rotZ: 0.06762503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34514689 + posZ: 69.05001 + rotX: 0.0208164584 + rotY: 269.9694 + rotZ: 0.0167631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: f6aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Oath (Curiosity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.0862484 + posY: 2.377057 + posZ: -75.92746 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2902': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Free from the Past + DragSelectable: true + GMNotes: '' + GUID: 2e5b03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "Death \u2022 XIII (1)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.400881 + posZ: 32.7900352 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379555 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3795': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f4bac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Detective's Colt 1911s + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.403568 + posY: 1.378892 + posZ: -71.7250748 + rotX: 0.0207481515 + rotY: 269.99942 + rotZ: 0.0167482235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Renowned Historian + DragSelectable: true + GMNotes: '' + GUID: c49b4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alejandro Vela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.8602333 + posY: 3.17244 + posZ: -61.7880058 + rotX: 0.0208084844 + rotY: 269.999847 + rotZ: 0.0167707447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 756a35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kukri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36461318 + posZ: 75.95 + rotX: 0.020810049 + rotY: 269.99408 + rotZ: 0.0167692974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Seeker + DragSelectable: true + GMNotes: '' + GUID: 1433eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grisly Totem (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.7730675 + posY: 1.36253119 + posZ: -55.4446869 + rotX: 0.020809114 + rotY: 270.0 + rotZ: 0.0167707428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430656 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Restorative Concoction + DragSelectable: true + GMNotes: '' + GUID: 4874bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05001 + posY: 1.41639066 + posZ: -24.7099915 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '358387' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rise to the Occasion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36443722 + posZ: 85.15 + rotX: 0.0208204873 + rotY: 269.9588 + rotZ: 0.0167588126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6aae86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Close Call (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40603161 + posZ: -4.30000353 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 36c0cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Let me handle this!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300039 + posY: 1.35176742 + posZ: 87.45 + rotX: 0.0207943413 + rotY: 270.027039 + rotZ: 0.01677379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: efb09b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Double or Nothing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.35736465 + posZ: 82.85 + rotX: 0.0208079945 + rotY: 270.000122 + rotZ: 0.0167725533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bb640d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ever Vigilant (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.39982712 + posZ: 30.3300285 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 389a34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Backpack (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.4068222 + posY: 3.2850585 + posZ: -73.0593 + rotX: 0.0208073538 + rotY: 270.0092 + rotZ: 0.01676984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2728': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 493b03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Prophesy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2000046 + posY: 1.33989763 + posZ: 85.15 + rotX: 0.0208171364 + rotY: 269.970978 + rotZ: 0.0167635083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2762': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2240f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "Coup de Gr\xE2ce" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.34939754 + posZ: 59.8500023 + rotX: 0.0208155029 + rotY: 269.974884 + rotZ: 0.0167655852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6c3156 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crystal Pendulum + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.5530319 + posY: 3.283612 + posZ: -71.50618 + rotX: 0.0208110511 + rotY: 270.001343 + rotZ: 0.01676353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232951 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Seeing Things Unseen + DragSelectable: true + GMNotes: '' + GUID: f96ed0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Powder of Ibn Ghazi + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.4629173 + posY: 1.36626446 + posZ: -46.7977753 + rotX: 0.0208089761 + rotY: 270.0 + rotZ: 0.0167704951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 296500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2965': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Ally. Believer. + DragSelectable: true + GMNotes: '' + GUID: 1e7f1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abbess Allegria Di Biase + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.02915 + posY: 1.77067351 + posZ: 4.416883 + rotX: 2.0594604 + rotY: 270.102448 + rotZ: 3.75599837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5c3aea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inquiring Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.160006061 + posY: 1.34589219 + posZ: 82.8500061 + rotX: 0.0208204687 + rotY: 269.9646 + rotZ: 0.0167588983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6e4d54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Glimpse the Unthinkable (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.7147179 + posY: 3.163674 + posZ: -85.7649 + rotX: 0.0208091736 + rotY: 269.997253 + rotZ: 0.0167692658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ef7c11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Solemn Vow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.1418 + posY: 1.403798 + posZ: 21.0005112 + rotX: 359.9877 + rotY: 270.0044 + rotZ: 359.9829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e2767a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cunning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.35871112 + posZ: 87.45 + rotX: 0.02080716 + rotY: 270.000122 + rotZ: 0.0167723987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 864fb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bait and Switch (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.267654 + posY: 1.3757329 + posZ: 45.7017555 + rotX: 0.0208089612 + rotY: 269.999878 + rotZ: 0.0167736318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dc3b07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lone Wolf + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500027 + posY: 1.35556841 + posZ: 85.15 + rotX: 0.0208101571 + rotY: 269.9888 + rotZ: 0.01676966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2611': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d3e55b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Timeworn Brand (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94001 + posY: 1.40205884 + posZ: 4.89999962 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2423e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fence (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40207338 + posZ: 16.4000072 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450601 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 34140c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Elusive (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.79034 + posY: 1.30492866 + posZ: -51.10886 + rotX: 0.0208091177 + rotY: 269.999664 + rotZ: 0.0167718679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 35166c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Book of Shadows (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.40620458 + posZ: 18.99002 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d099f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sneak By + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.104393 + posY: 2.842704 + posZ: -102.308365 + rotX: 0.020808693 + rotY: 270.000061 + rotZ: 0.0167713556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Enemy + DragSelectable: true + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Thing That Follows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.6971741 + posY: 1.516075 + posZ: 71.10236 + rotX: 0.02737251 + rotY: 269.988983 + rotZ: 0.00684426632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Seeker + DragSelectable: true + GMNotes: '' + GUID: 0b12ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4576035 + posY: 3.522443 + posZ: -65.76737 + rotX: 0.0124911685 + rotY: 270.0 + rotZ: 180.115143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6446d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrying Mirror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.7526474 + posY: 3.28131819 + posZ: -72.5047 + rotX: 0.0208116863 + rotY: 270.001343 + rotZ: 0.0167630389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da7c01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35085571 + posZ: 69.05 + rotX: 0.0208106581 + rotY: 269.98877 + rotZ: 0.0167695228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3148': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44a37f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Hunting Rifle (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41471708 + posZ: -36.5000038 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3770': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f91fd9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mitch Brown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.353 + posY: 2.190368 + posZ: -89.69797 + rotX: 359.9792 + rotY: 270.0 + rotZ: 180.006226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369816 + 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/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Knows Too Much + DragSelectable: true + GMNotes: '' + GUID: 7e2896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Elina Harper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4537659 + posY: 3.52636623 + posZ: -65.7639 + rotX: 0.0125333974 + rotY: 270.0003 + rotZ: 179.7309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66dd9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snare Trap (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40727246 + posZ: -8.900003 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430649 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d48b25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Higher Education (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41080713 + posZ: -4.009982 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f0e425 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dumb Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.35714316 + posZ: 64.45 + rotX: 0.020805018 + rotY: 270.0129 + rotZ: 0.0167762935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3713': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d87128 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jenny's Twin .45s + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.6732559 + posY: 1.52007174 + posZ: -48.314106 + rotX: 0.04478311 + rotY: 270.017731 + rotZ: 359.920624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537091085/26A674065298A59068E1D6BA3804D03554C234A3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Skilled Botanist + DragSelectable: true + GMNotes: '' + GUID: a0c2da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Veda Whitsley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36957 + posY: 1.30220938 + posZ: -48.6176262 + rotX: 0.0208126362 + rotY: 269.985657 + rotZ: 0.0167656019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 381050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3810': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 67e006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Split the Angle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.436187 + posY: 2.09197116 + posZ: -46.23643 + rotX: 0.03567951 + rotY: 270.066925 + rotZ: 0.0572711229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 541109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5411': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107869050061525/A759DF697FFB26F0F5B75E116A923E33F88FCA7B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fa4c1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream-Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.9905357 + posY: 3.16472745 + posZ: -83.01713 + rotX: 359.91983 + rotY: 269.9864 + rotZ: 0.0154172564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315261 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3add54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cheat Death (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.749962 + posY: 1.38609779 + posZ: -45.70004 + rotX: 0.02080863 + rotY: 269.9999 + rotZ: 0.0167719424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 523b76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moment of Respite (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39957726 + posZ: 14.1 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 731d2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Adaptable (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.39773071 + posZ: 32.5000153 + rotX: 359.987427 + rotY: 269.9997 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fa1d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33271539 + posZ: 69.05 + rotX: 0.0207979213 + rotY: 270.0313 + rotZ: 0.0167850684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d6728 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Occult Lexicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9440126 + posY: 1.34620976 + posZ: 66.8332062 + rotX: 0.0208179 + rotY: 269.980469 + rotZ: 0.0167577937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c6c260 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cornered (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40851319 + posZ: -13.5000057 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5517': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 87f6b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Shoe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.1416931 + posY: 1.31019628 + posZ: -47.5659332 + rotX: 0.0208086874 + rotY: 269.998779 + rotZ: 0.0167704076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0feb74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky Cigarette Case (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.44495 + posY: 3.28489232 + posZ: -72.91061 + rotX: 0.0208115689 + rotY: 269.9931 + rotZ: 0.0167649854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 60b353 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Preposterous Sketches + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.24000239 + posY: 1.337925 + posZ: 59.8499947 + rotX: 0.0208115336 + rotY: 269.986359 + rotZ: 0.0167706627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3142': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e8b7ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bandolier (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40851247 + posZ: -1.86998224 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3780': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0e0530 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Double, Double (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.103218 + posY: 1.3954078 + posZ: 33.496376 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 62cf25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"I''m outta here!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500023 + posY: 1.35545671 + posZ: 80.55 + rotX: 0.02081474 + rotY: 269.974884 + rotZ: 0.01676473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3780': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d27d12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"You owe me one!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 46.0198975 + posY: 1.3575114 + posZ: 65.64583 + rotX: 0.0208127461 + rotY: 269.982056 + rotZ: 0.01676411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Rogue + DragSelectable: true + GMNotes: '' + GUID: b5e5f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tennessee Sour Mash (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.25424 + posY: 1.5068202 + posZ: -48.776722 + rotX: 359.875 + rotY: 269.98233 + rotZ: 359.889984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2fc31c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mi-Go Weapon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.6340179 + posY: 1.2999053 + posZ: -72.28999 + rotX: 0.0208086576 + rotY: 270.0 + rotZ: 0.0167716239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 47bdba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Parallel Fates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.19831 + posY: 3.28503919 + posZ: -70.7977 + rotX: 0.0208103936 + rotY: 270.001343 + rotZ: 0.0167649258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450613 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Petrus de Dacia Translation + DragSelectable: true + GMNotes: '' + GUID: 9fa2a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Necronomicon (5) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.93347 + posY: 1.44876873 + posZ: -51.3429031 + rotX: 0.020808002 + rotY: 269.999725 + rotZ: 0.0167890638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3140': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cf4f15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flamethrower (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41967952 + posZ: -43.2699928 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Madness. + DragSelectable: true + GMNotes: '' + GUID: 2c76d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: What Have You Done? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.6642151 + posY: 2.371999 + posZ: -73.67534 + rotX: 0.0211164355 + rotY: 270.0 + rotZ: 0.0169385374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368431 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 063fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.640002 + posY: 1.33669019 + posZ: 59.85 + rotX: 0.02081435 + rotY: 269.978821 + rotZ: 0.0167656858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.24000335 + posY: 1.33994472 + posZ: 66.75 + rotX: 0.0208135787 + rotY: 269.986359 + rotZ: 0.0167685822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fc2629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Eat lead!" (2)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.406031 + posZ: 7.33001947 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 658d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shrewd Analysis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.63999367 + posY: 1.34476912 + posZ: 87.4500046 + rotX: 0.02081338 + rotY: 269.978821 + rotZ: 0.0167668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2358': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Madness. Paradox. + DragSelectable: true + GMNotes: '' + GUID: d64b8f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.1434669 + posY: 3.17477942 + posZ: -63.370575 + rotX: 0.0208083838 + rotY: 269.999847 + rotZ: 0.0167704877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2933': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mystic + DragSelectable: true + GMNotes: '' + GUID: 194d88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.73687 + posY: 1.50124466 + posZ: -49.17045 + rotX: 0.05648235 + rotY: 270.0217 + rotZ: -0.002907931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Dreams of a Madman + DragSelectable: true + GMNotes: '' + GUID: e5f9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5946255 + posY: 1.59327507 + posZ: 14.8424034 + rotX: 359.920135 + rotY: 269.996155 + rotZ: 0.0168813411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5272': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab4fb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Summoned Hound (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.6454124 + posY: 1.29864454 + posZ: -75.34238 + rotX: 0.0208087377 + rotY: 269.999756 + rotZ: 0.01677042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3689': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a56ffe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wendy's Amulet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 87.36852 + posY: 1.4640274 + posZ: -54.70025 + rotX: 0.0210064612 + rotY: 270.000427 + rotZ: 4.54647064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 85fe46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Taunt (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.2340546 + posY: 3.169604 + posZ: -75.87329 + rotX: 0.0208084155 + rotY: 270.0 + rotZ: 0.0167709012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 549900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5499': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843937651/74845294CAEB3908414DAE31A5BC8A6683FEBF20/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 34e9f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Gaze of Ouraxsh (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.0887566 + posY: 3.2843976 + posZ: -73.28977 + rotX: 0.02080861 + rotY: 269.999969 + rotZ: 0.0167707726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 88865b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rite of Sanctification + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.3946571 + posY: 3.16200924 + posZ: -90.46195 + rotX: 0.0208087657 + rotY: 269.999 + rotZ: 0.0167703237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Enemy + DragSelectable: true + GMNotes: '' + GUID: 16a89d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silver Twilight Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.44922 + posY: 1.56336081 + posZ: 81.83084 + rotX: 0.020568762 + rotY: 269.999268 + rotZ: 0.0177706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7f99cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pathfinder (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40584409 + posZ: 14.3900223 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500038 + posY: 1.35669148 + posZ: 80.55 + rotX: 0.0208076444 + rotY: 270.000122 + rotZ: 0.0167729724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6fec31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Think on Your Feet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.35411012 + posZ: 75.95 + rotX: 0.020815298 + rotY: 269.9749 + rotZ: 0.016764313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 415ca2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Get over here!" (2)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.5655479 + posY: 3.28498816 + posZ: -74.21584 + rotX: 0.0208084416 + rotY: 270.0 + rotZ: 0.0167704467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Enemy + DragSelectable: true + GMNotes: '' + GUID: b239d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mob Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.1295853 + posY: 1.57301271 + posZ: 81.96535 + rotX: 0.0202451628 + rotY: 269.998047 + rotZ: 0.017438814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8595fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Higher Education + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.71999 + posY: 3.28314877 + posZ: -77.8439255 + rotX: 0.0208094642 + rotY: 269.997253 + rotZ: 0.0167688243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430653 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Prophecy Foretold + DragSelectable: true + GMNotes: '' + GUID: 3d35aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Archaic Glyphs (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41390908 + posZ: -15.509985 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4488': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ff59dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Surprising Find (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5645676 + posY: 1.299145 + posZ: -77.45552 + rotX: 0.0208085515 + rotY: 270.0 + rotZ: 0.016771242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4408': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 968a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stargazing (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.17623 + posY: 1.5469203 + posZ: 25.128376 + rotX: 359.989166 + rotY: 270.027618 + rotZ: 359.9685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4407': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 26a3bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stealth (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.95461 + posY: 1.54556274 + posZ: 29.33836 + rotX: 359.9763 + rotY: 269.978271 + rotZ: 359.9808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86b9c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Plucky (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.39672589 + posZ: 30.2000084 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d3dcf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Let God sort them out..."' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1617146 + posY: 1.66998422 + posZ: -1.0745914 + rotX: 359.9013 + rotY: 269.995422 + rotZ: 0.0255841073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226359 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e21854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Monster Slayer (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41843867 + posZ: -38.66999 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0414b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dig Deep (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40417051 + posZ: 2.59999847 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 552011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5520': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '041012' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dog Monocle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.1418762 + posY: 1.567957 + posZ: -23.9889088 + rotX: 359.920135 + rotY: 269.986145 + rotZ: 0.0168946683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '943332' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ineffable Truth (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.2550964 + posY: 3.28405976 + posZ: -71.59284 + rotX: 0.0208090339 + rotY: 270.001343 + rotZ: 0.01676817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Narcolepsy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.20527 + posY: 1.5186789 + posZ: 51.2058372 + rotX: 0.0206013937 + rotY: 270.002258 + rotZ: 180.0141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bc300 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trusted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300058 + posY: 1.34503508 + posZ: 64.4500046 + rotX: 0.0207948089 + rotY: 270.027039 + rotZ: 0.0167727638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 80628f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inspiring Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.3523289 + posZ: 85.15 + rotX: 0.0208112579 + rotY: 269.987427 + rotZ: 0.0167698432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4e2d75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mariner's Compass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.45762 + posY: 3.524765 + posZ: -65.76762 + rotX: 0.0166539215 + rotY: 270.0 + rotZ: 180.2173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b176fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.9516678 + posY: 3.16666675 + posZ: -85.02927 + rotX: 0.0208086651 + rotY: 269.999 + rotZ: 0.0167703424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: c45e67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Reckless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.6244621 + posY: 3.285529 + posZ: -69.83184 + rotX: 0.0208142158 + rotY: 269.9931 + rotZ: 0.0167592838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c4cf62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bulletproof Vest (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39771616 + posZ: 21.0000038 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5274': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.3827248 + posY: 3.28183174 + posZ: -72.54614 + rotX: 359.9788 + rotY: 270.0022 + rotZ: 174.093964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3780': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 006d44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Another Day, Another Dollar (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.317162 + posY: 1.39417815 + posZ: 37.881134 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a5087b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .25 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.6913071 + posY: 3.28392243 + posZ: -72.74665 + rotX: 0.0208082013 + rotY: 269.999817 + rotZ: 0.0167705584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1017195287736529784/BEB850DCAA5497CC1A96E1603C0D3AFFE8B0F2BB/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Advanced + DragSelectable: true + GMNotes: '' + GUID: cf41be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Daisy's Tote Bag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.50849 + posY: 1.30044091 + posZ: -69.37549 + rotX: 0.0208080076 + rotY: 270.0 + rotZ: 0.0167705547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fc82a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daring Maneuver (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.19061 + posY: 3.28441215 + posZ: -73.52365 + rotX: 0.0208122823 + rotY: 269.9931 + rotZ: 0.0167636927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235648 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Forgotten Guardian + DragSelectable: true + GMNotes: '' + GUID: 29fc24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.62483 + posY: 3.17204762 + posZ: -63.4302139 + rotX: 0.020808531 + rotY: 269.999847 + rotZ: 0.0167708434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2775': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a00fca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Banish (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.6736889 + posY: 1.566863 + posZ: 70.85531 + rotX: 0.01997196 + rotY: 269.999084 + rotZ: 0.0208501965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Big Man on Campus + DragSelectable: true + GMNotes: '' + GUID: ffdeb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Peter Sylvestre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35456181 + posZ: 59.8500023 + rotX: 0.0208163559 + rotY: 269.9702 + rotZ: 0.0167621151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6fa7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Track Shoes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35321534 + posZ: 55.2500038 + rotX: 0.0208173972 + rotY: 269.9702 + rotZ: 0.0167611558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '914053' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -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: 553208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4e405d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sea Change Harpoon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.90177 + posY: 3.28445745 + posZ: -76.90057 + rotX: 0.0208086148 + rotY: 269.999329 + rotZ: 0.01677068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 296704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2967': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 96ae32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Monstrous Transformation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.55273 + posY: 1.30414021 + posZ: -57.92313 + rotX: 0.0208086055 + rotY: 270.0 + rotZ: 0.016771147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.6326675 + posY: 1.36736 + posZ: -66.1336441 + rotX: 0.0207946468 + rotY: 270.040375 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7001be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beat Cop (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.410994 + posZ: -11.0699854 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.34954 + posY: 1.57672024 + posZ: 61.3802452 + rotX: 0.0203758851 + rotY: 269.999542 + rotZ: 0.01571979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Not Going Down That Easily + DragSelectable: true + GMNotes: '' + GUID: 2237f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gavriella Mizrah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.35406 + posY: 1.62373781 + posZ: -52.944416 + rotX: 0.0179333128 + rotY: 270.007782 + rotZ: 0.028359253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 58c435 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stunning Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.361744 + posZ: 75.95 + rotX: 0.0208197571 + rotY: 269.9588 + rotZ: 0.0167563129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 454741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4547': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Item. Relic. + DragSelectable: true + GMNotes: '' + GUID: 0ce113 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Ankh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.99787 + posY: 2.36574912 + posZ: -93.55096 + rotX: 0.0208107159 + rotY: 269.999939 + rotZ: 0.01676894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444147 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3805': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 13eaf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dreams of the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.149692 + posY: 2.06653118 + posZ: -46.2199059 + rotX: 0.0160595868 + rotY: 270.0005 + rotZ: 0.0145351663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c433b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dumb Luck (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.9844 + posY: 3.28493977 + posZ: -71.77057 + rotX: 0.0147311278 + rotY: 270.0195 + rotZ: 0.0118826525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2758': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aa3984 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Winging It + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.35781634 + posZ: 66.75 + rotX: 0.02080432 + rotY: 270.012939 + rotZ: 0.0167804044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 050ba1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 440621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bda4fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lantern (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.32716 + posY: 1.5488534 + posZ: 37.4422379 + rotX: 359.989349 + rotY: 269.992371 + rotZ: 359.982239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e674e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fortune or Fate (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.4155731 + posY: 1.52457511 + posZ: -53.7638931 + rotX: 0.0229964554 + rotY: 270.012634 + rotZ: 0.0177416671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eaaee9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eucatastrophe (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.842651 + posY: 1.39317536 + posZ: 41.98588 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300058 + posY: 1.34638155 + posZ: 69.05001 + rotX: 0.0207969118 + rotY: 270.027039 + rotZ: 0.0167740118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2775': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d946d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wither + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.7956734 + posY: 1.57171309 + posZ: 40.9552956 + rotX: 1.12907594e-06 + rotY: 269.998749 + rotZ: 2.312074e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430657 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d25b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cryptic Research (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05001 + posY: 1.41763139 + posZ: -29.3099918 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 376600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3766': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 41a9ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Until the End of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.6287518 + posY: 1.4419347 + posZ: -51.9697838 + rotX: 0.0280682351 + rotY: 269.874725 + rotZ: 4.47717762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3786': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d6eda3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Agency Backup (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.024666 + posY: 1.39823854 + posZ: 23.0658474 + rotX: 359.987427 + rotY: 269.999481 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2761': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5a305e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Colt Vest Pocket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.348836 + posZ: 62.1500053 + rotX: 0.02081202 + rotY: 269.9888 + rotZ: 0.0167703833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30f90b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Improvised Weapon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.3598361 + posZ: 73.65 + rotX: 0.0208048522 + rotY: 270.012939 + rotZ: 0.0167763215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 99989c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Quick Thinking + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.35601819 + posZ: 78.25 + rotX: 0.0208088942 + rotY: 270.000122 + rotZ: 0.0167740677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: c3a014 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tommy Malloy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.26724 + posY: 3.174611 + posZ: -68.4174652 + rotX: 0.0205496773 + rotY: 269.9956 + rotZ: 0.0170879588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f60263 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Extra Ammunition (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40168822 + posZ: 23.430027 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.34387 + posY: 1.521027 + posZ: 71.2091 + rotX: 0.0200308 + rotY: 269.999939 + rotZ: 0.0167929437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e72762 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind Wipe (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.41613054 + posZ: -17.80999 + rotX: 359.987427 + rotY: 270.0002 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 66b7d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Well Connected + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35287535 + posZ: 75.95 + rotX: 0.02081098 + rotY: 269.988831 + rotZ: 0.0167695135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cd0ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2000027 + posY: 1.33787787 + posZ: 78.25 + rotX: 0.0208174773 + rotY: 269.971 + rotZ: 0.0167640541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ed4256 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Take the Wheel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2317638 + posY: 1.51399493 + posZ: 0.0367458239 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168725774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450623 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mystic + DragSelectable: true + GMNotes: '' + GUID: 5839e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.63492 + posY: 1.30829561 + posZ: -44.7619629 + rotX: 0.0208089389 + rotY: 269.999634 + rotZ: 0.01677007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bbfe9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guidance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.239994 + posY: 1.34465742 + posZ: 82.8500061 + rotX: 0.0208123866 + rotY: 269.986359 + rotZ: 0.0167671517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ca23d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Studies (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.8508453 + posY: 3.28354359 + posZ: -73.28051 + rotX: 0.0208091922 + rotY: 270.001343 + rotZ: 0.01676852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 551813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5518': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '952924' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Howl of Clyhf'ford + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.141777 + posY: 1.54049265 + posZ: -39.6801033 + rotX: 359.920135 + rotY: 269.981354 + rotZ: 1.29702878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 550800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6da7c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Neither Rain nor Snow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.7919922 + posY: 3.28410816 + posZ: -72.41342 + rotX: 0.0147348512 + rotY: 270.0195 + rotZ: 0.0118878279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7f27d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sharpshooter (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.3573074 + posY: 3.26376963 + posZ: -70.37441 + rotX: 0.02081183 + rotY: 269.9931 + rotZ: 0.01676547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: a9d77d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Day of Reckoning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.6806946 + posY: 1.30510676 + posZ: -51.877182 + rotX: 0.0208085384 + rotY: 270.0 + rotZ: 0.0167706478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c6caf6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ineffable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -67.12337 + posY: 3.28281879 + posZ: -69.99682 + rotX: 0.02081139 + rotY: 270.001343 + rotZ: 0.01676363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4488': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a0060 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Book of Lore (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6117477 + posY: 2.845372 + posZ: -123.871094 + rotX: 0.0208082739 + rotY: 269.999939 + rotZ: 0.0167707168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368432 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mortal Reminder + DragSelectable: true + GMNotes: '' + GUID: c1a687 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tooth of Eztli + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.640002 + posY: 1.336017 + posZ: 57.55 + rotX: 0.020814199 + rotY: 269.978821 + rotZ: 0.0167644545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 295501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a42f33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bauta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.87838 + posY: 3.16514683 + posZ: -98.8938751 + rotX: 0.0208086148 + rotY: 269.999634 + rotZ: 0.01677102 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: Ally + DragSelectable: true + GMNotes: '' + GUID: 3c1944 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 230335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90a106 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spirit Athame (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.4055841 + posZ: 21.2900219 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9c922f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Storm of Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6 + posY: 1.33058393 + posZ: 57.55 + rotX: 0.0208180714 + rotY: 269.96698 + rotZ: 0.01676364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 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 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 22d886 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 553209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4f11a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silas's Net + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.57681 + posY: 3.17013431 + posZ: -78.59785 + rotX: 0.020808639 + rotY: 269.999329 + rotZ: 0.016770402 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1a90a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lure (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.262115 + posY: 1.37650943 + posZ: 48.36173 + rotX: 0.020808477 + rotY: 270.0 + rotZ: 0.01677365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3802': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fb9b7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brute Force (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.9545345 + posY: 1.5229435 + posZ: -8.064844 + rotX: 359.9151 + rotY: 270.007782 + rotZ: 0.0103515983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 097dcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blackjack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230005 + posY: 1.3498596 + posZ: 85.15 + rotX: 0.0208169557 + rotY: 269.9694 + rotZ: 0.0167641137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 3aa40e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Future + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.60581 + posY: 3.283627 + posZ: -68.9708 + rotX: 0.0208119676 + rotY: 270.001343 + rotZ: 0.01676205 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.75805 + posY: 1.36662269 + posZ: -56.0895958 + rotX: 0.02079865 + rotY: 270.04 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226350 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 82d62c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stick to the Plan (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41223478 + posZ: -15.6699867 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '982716' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.4477119 + posY: 3.28514123 + posZ: -70.45213 + rotX: 0.0208119471 + rotY: 269.9931 + rotZ: 0.0167645179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: c54d7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dread Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.7849045 + posY: 1.30583155 + posZ: -49.2717628 + rotX: 0.0208085217 + rotY: 269.999939 + rotZ: 0.0167706348 + 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 + Type: 0 + UniqueBack: false + Description: Chalice of the Heart + DragSelectable: true + GMNotes: '' + GUID: dd4e2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 431425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527f1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hospital Debts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1214066 + posY: 1.30226815 + posZ: -71.05752 + rotX: 0.0208089035 + rotY: 270.000061 + rotZ: 0.0167712178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4408': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 283e54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alchemical Transmutation (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.6973 + posY: 1.364044 + posZ: -55.3335571 + rotX: 0.0208053179 + rotY: 270.017761 + rotZ: 0.016775595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450614 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Professor of Entomology + DragSelectable: true + GMNotes: '' + GUID: 8ae314 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Milan Christopher (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.49287 + posY: 1.43936789 + posZ: -51.0247459 + rotX: 0.0208014939 + rotY: 269.999573 + rotZ: 0.0167931467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235667 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Forestalling the Future + DragSelectable: true + GMNotes: '' + GUID: 7667ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.0404434 + posY: 1.31665075 + posZ: -74.18784 + rotX: 0.0245627742 + rotY: 270.0043 + rotZ: 0.8296155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3786': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 312d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hallowed Mirror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.8494987 + posY: 1.351685 + posZ: 64.56357 + rotX: 0.0208110046 + rotY: 269.990936 + rotZ: 0.0167647637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9e4e11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alter Fate (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.9760551 + posY: 3.28508377 + posZ: -73.30521 + rotX: 0.0208075289 + rotY: 270.0092 + rotZ: 0.016770035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c7d9b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enchanted Blade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.748642 + posY: 1.32271636 + posZ: 46.98568 + rotX: 0.0208090227 + rotY: 269.998566 + rotZ: 0.0167730749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3a0df6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scientific Theory (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.403983 + posZ: 21.2900238 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e66002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lantern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.57 + posY: 1.357928 + posZ: 71.35 + rotX: 0.020816328 + rotY: 269.970184 + rotZ: 0.0167607069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cf1d4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slip Away + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.350744 + posZ: 64.45 + rotX: 0.0208153985 + rotY: 269.974854 + rotZ: 0.0167630762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '... Or Are They?' + DragSelectable: true + GMNotes: '' + GUID: 9dd911 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky Dice (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40517533 + posZ: 4.89999962 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 4fb446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.15498 + posY: 1.49438834 + posZ: 72.1812439 + rotX: 0.03946274 + rotY: 269.999573 + rotZ: 359.9925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 64e131 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Pact (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41426945 + posZ: -10.9099836 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430660 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8b0193 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deciphered Reality (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.42073345 + posZ: -40.80999 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450608 + 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/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f170b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flamethrower (5) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5497971 + posY: 1.58908463 + posZ: -51.07922 + rotX: 356.358124 + rotY: 269.9749 + rotZ: 0.0204766355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2732': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b9bb2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fingerprint Kit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0399933 + posY: 1.34218788 + posZ: 82.8500061 + rotX: 0.0208109729 + rotY: 269.984833 + rotZ: 0.01676825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2778': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1339b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mr. "Rook" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.8864021 + posY: 2.368725 + posZ: -89.90842 + rotX: 0.0208068751 + rotY: 270.00296 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d708d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Physical Training (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40665138 + posZ: 5.03001928 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Cleansing Fire + DragSelectable: true + GMNotes: '' + GUID: 423d46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: St. Hubert's Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4000015 + posY: 1.33551991 + posZ: 82.85 + rotX: 0.02080567 + rotY: 270.0064 + rotZ: 0.0167738758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Unscrupulous Investor + DragSelectable: true + GMNotes: '' + GUID: 5ec1a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dario El-Amin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500065 + posY: 1.34681618 + posZ: 55.2500038 + rotX: 0.0208117589 + rotY: 269.9888 + rotZ: 0.016770687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 45bdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Desperate Search + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.3684293 + posZ: 80.55 + rotX: 0.02080979 + rotY: 269.997284 + rotZ: 0.0167730879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6a9021 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Marksmanship (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40292907 + posZ: 18.8300266 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7d4749 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230008 + posY: 1.34245384 + posZ: 59.85 + rotX: 0.0208177976 + rotY: 269.969421 + rotZ: 0.0167637467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230357 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68fce2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mists of R'lyeh (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76001 + posY: 1.42109358 + posZ: -36.2099876 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430651 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2e3115 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Barricade (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41266835 + posZ: -10.9099836 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 447a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kleptomania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.8331757 + posY: 1.54224169 + posZ: 51.3644943 + rotX: 0.0211661216 + rotY: 269.999542 + rotZ: 180.017242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230359 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 91e890 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seal of the Elder Sign (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.42233443 + posZ: -40.80999 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 552515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5522': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 61c4c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hair of the Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.1416969 + posY: 1.30838335 + posZ: -53.75933 + rotX: 0.0208085682 + rotY: 269.999573 + rotZ: 0.0167707819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f3488 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Chance Encounter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.35916281 + posZ: 71.35 + rotX: 0.02080517 + rotY: 270.012939 + rotZ: 0.0167774316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d753d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Momentum (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0951538 + posY: 1.67418337 + posZ: -0.8636197 + rotX: 359.909546 + rotY: 270.009155 + rotZ: 0.006574045 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -43291,11 +44101,27 @@ CustomDeck: '2663': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false + '2730': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280920105/BBE662BDDC5F2C94A5DE10256B991D1E1DD2C50D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2731': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280920329/24678C1EA9F75CE15164134ACF04BD5642D9F434/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false '2740': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg @@ -44456,14 +45282,6 @@ CustomDeck: NumWidth: 10 Type: 0 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 - Type: 0 - UniqueBack: false '4506': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ @@ -44648,22 +45466,6 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false - '5464': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1597044073918730334/45D2725C3553953A73DAFBEF631E78D459716EA7/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - '5465': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1597044073918730883/0E7FEB9CC85CD11EB5194774E90A73163EDACBEC/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false '5469': BackIsHidden: true BackURL: https://i.imgur.com/NSozoRe.jpg @@ -44672,14 +45474,6 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: true - '5493': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/766099859120034153/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373727958826520/EE54EF6510734FC86ADD47E84DB253493A2F87B7/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false '5494': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ @@ -44704,14 +45498,6 @@ CustomDeck: NumWidth: 1 Type: 0 UniqueBack: false - '5501': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843940006/71700050B0B2CD56C458047D94B9E605ED01B989/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false '5505': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ @@ -44840,6 +45626,62 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '5532': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '5533': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '5535': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632247/1E1B6D93DBC33FA7C8DC93C7D06B7964CAD98AD0/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '5536': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507630340/07BD7D0674499D3B5B315239E1B9682B6E4D8285/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '5537': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632620/1C7C9B898C919EDAD757709C161F0DFFF3FA9238/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '5538': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632983/CC643186858EEC718B5F3FEA9CD7D0CEDE055F13/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false '75': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ @@ -44849,965 +45691,983 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 448937 -- 368527 -- 538717 -- 226360 -- 232949 -- 545305 -- 380028 -- 230322 -- 230338 -- 538825 -- 231600 -- 232332 -- 230331 -- 292913 -- 226326 -- 440814 -- 290320 -- 552515 -- 278012 -- 368500 -- 226350 -- 375129 -- 230316 -- 550825 -- 368716 -- 379829 -- 376600 -- 315234 -- 368821 -- 277709 -- 430657 -- 230326 -- 315245 -- 538814 -- 261700 -- 430645 -- 226322 -- 368819 -- 440721 -- 430654 -- 450602 -- 368849 -- 545211 -- 377042 -- 378619 -- 368412 -- 545302 -- 538705 -- 368618 -- 448030 -- 232333 -- 368844 -- 377343 -- 538823 -- 230351 -- 226310 -- 551912 -- 226315 -- 315260 -- 447934 -- 450601 -- 378620 -- 276101 -- 430639 -- 379020 -- 230313 -- 430635 -- 447631 -- 368506 -- 290207 -- 370323 -- 430907 -- 293216 -- 545207 -- 538708 -- 440720 -- 230324 -- 545300 -- 230303 -- 545304 -- 538710 -- 538812 -- 368526 -- 430656 -- 368510 -- 441026 -- 374633 -- 368928 -- 538809 -- 541300 -- 368520 -- 447834 -- 368415 -- 233605 -- 230337 -- 550829 -- 368853 -- 430651 -- 313301 -- 230325 -- 550800 -- 232348 -- 431009 -- 538602 -- 261100 -- 266312 -- 537608 -- 448519 -- 450606 -- 534902 -- 545303 -- 368405 -- 538828 -- 374417 -- 374532 -- 226303 -- 448029 -- 226357 -- 230342 -- 314904 -- 315258 -- 538808 -- 450618 -- 226306 -- 315255 -- 368713 -- 368504 -- 370422 -- 550810 -- 266302 -- 312513 -- 315257 -- 379928 -- 266324 -- 368528 -- 550821 -- 527402 -- 230361 -- 266308 -- 376501 -- 368834 -- 448837 -- 235644 -- 368525 -- 371907 -- 449035 -- 368426 -- 232950 -- 552220 -- 368423 -- 274003 -- 551813 -- 368848 -- 368822 -- 230354 -- 545310 -- 368433 -- 450622 -- 262204 -- 550807 -- 368512 -- 452504 -- 551303 -- 368711 -- 377141 -- 538803 -- 431008 -- 440926 -- 448838 -- 230352 -- 368430 -- 371565 -- 450613 -- 444348 -- 550828 -- 538621 -- 295504 -- 368522 -- 538818 -- 368804 -- 545312 - 266322 -- 538709 -- 550826 -- 235649 -- 376739 -- 314000 -- 430649 -- 315233 -- 538604 -- 230301 -- 368827 -- 431111 -- 293014 -- 527606 -- 527404 -- 368410 -- 430809 -- 226324 -- 545214 -- 275733 -- 233135 -- 315247 -- 230339 -- 541200 -- 374717 -- 293016 -- 538627 -- 550500 -- 545322 -- 448936 -- 232300 -- 277509 -- 538826 -- 527235 -- 448735 -- 374834 -- 527312 -- 274000 -- 226312 -- 538629 -- 278010 -- 380027 -- 430637 -- 380128 -- 545327 -- 545313 -- 232900 -- 315246 -- 312509 -- 235822 -- 538730 -- 230350 -- 230319 -- 226329 -- 368815 -- 315239 -- 441027 -- 538822 -- 266316 -- 441023 -- 315244 -- 545205 -- 379929 -- 266328 -- 430810 -- 450614 -- 538805 +- 273000 +- 273100 +- 538719 +- 230502 +- 430655 - 430647 -- 230603 -- 545314 -- 538725 -- 230323 -- 313502 -- 230311 -- 368825 -- 374419 -- 368431 -- 314002 -- 552011 -- 277911 -- 441025 -- 447935 -- 372011 -- 447835 -- 266323 -- 266330 -- 430652 -- 380230 -- 226314 -- 266334 -- 230344 +- 538811 +- 294203 +- 230321 +- 368423 +- 230337 +- 553232 +- 315249 +- 441024 +- 379827 +- 430637 +- 368528 +- 368522 +- 369945 +- 368519 +- 230327 +- 226309 +- 368837 +- 430646 +- 450604 +- 430503 +- 368842 +- 450617 +- 226325 +- 370926 +- 262203 +- 368422 +- 545300 +- 553600 +- 538626 +- 226360 +- 315258 +- 553500 +- 226330 +- 226322 +- 368505 +- 553203 +- 553231 +- 449034 +- 377537 +- 230330 +- 226310 +- 376739 +- 371209 +- 378619 +- 368708 +- 545329 +- 431008 +- 232332 +- 538604 +- 277910 +- 550805 +- 230318 +- 274000 +- 376840 +- 315251 +- 226328 +- 368407 +- 538718 +- 450621 +- 368403 +- 550809 +- 440922 +- 374014 +- 444260 +- 315239 +- 230302 +- 538706 +- 230338 +- 527418 +- 276300 +- 448030 +- 447734 +- 538821 +- 318703 +- 235840 +- 274008 +- 226352 +- 553111 +- 450618 +- 230317 +- 226318 +- 430642 +- 265502 +- 538628 +- 550829 +- 545209 +- 368800 +- 430644 +- 230361 +- 545302 +- 277709 +- 368623 +- 315247 +- 527552 +- 368818 +- 538728 +- 545213 +- 293016 +- 315253 +- 368429 +- 431009 +- 538808 +- 374418 +- 230326 +- 368808 +- 374834 +- 230343 +- 538727 +- 274002 +- 368421 +- 450622 +- 538609 +- 527607 +- 368629 +- 368513 +- 368400 +- 368408 +- 448031 +- 450616 +- 315242 +- 368526 +- 368500 +- 368854 +- 315245 +- 430635 +- 449037 +- 368426 +- 448936 +- 277912 +- 553101 +- 553223 +- 538601 +- 538720 +- 546917 +- 232907 +- 368823 +- 378863 +- 545308 +- 290321 +- 368802 +- 553215 +- 379931 +- 277606 +- 545303 +- 450625 +- 379022 +- 292914 +- 368621 +- 545324 - 440622 +- 230347 +- 368434 +- 368804 +- 230304 +- 368706 +- 379619 +- 292813 +- 552421 +- 230307 +- 230306 +- 368852 +- 431111 +- 466112 +- 538700 +- 553201 +- 438128 +- 313604 +- 438124 +- 538812 +- 277813 +- 368813 +- 440814 +- 550828 +- 538805 +- 545322 +- 449035 +- 368418 +- 447935 +- 368524 +- 430908 +- 374834 +- 430640 +- 226341 +- 538613 +- 553114 +- 553214 +- 551303 +- 430645 +- 312109 +- 274010 +- 538621 +- 232333 +- 292815 +- 315304 +- 274005 +- 261704 +- 378617 +- 226355 +- 292913 +- 315248 +- 368405 +- 538818 +- 262200 +- 368710 +- 430658 +- 278846 +- 374633 +- 314802 +- 314904 +- 448034 +- 452300 +- 553210 +- 527237 +- 447633 +- 262202 +- 430809 +- 230319 +- 538823 +- 553103 +- 545318 +- 230325 +- 368711 +- 374935 +- 226324 +- 538825 +- 377244 +- 368628 +- 379929 +- 230354 +- 368847 +- 448937 +- 230311 +- 226323 +- 368626 +- 379831 +- 226317 +- 550827 +- 448519 +- 235644 +- 545312 +- 230334 +- 368415 +- 230342 +- 538729 +- 368860 +- 527403 +- 370323 +- 447632 +- 450615 +- 553230 +- 380949 +- 553700 +- 261101 +- 454100 +- 232941 +- 550802 +- 379018 +- 553108 +- 274609 +- 233605 +- 368514 +- 452504 +- 375016 +- 440623 +- 553100 +- 438122 +- 551405 +- 368515 +- 538717 +- 545330 +- 430654 +- 538708 +- 379828 +- 448029 +- 375129 +- 368501 +- 538619 +- 550813 +- 553202 +- 447932 +- 315303 +- 538721 +- 379154 +- 379618 +- 368430 +- 550820 +- 230349 +- 440721 +- 550500 +- 538806 +- 545313 +- 538815 - 379930 - 230358 -- 376938 -- 368524 -- 368514 -- 368624 -- 230330 -- 315236 -- 230318 -- 550818 -- 226342 -- 368623 -- 380026 -- 312109 -- 545316 -- 538701 -- 368424 -- 368832 -- 226308 -- 379827 -- 230348 -- 266319 -- 378958 -- 226304 -- 266320 -- 374935 -- 368840 -- 379616 -- 314105 -- 368712 -- 226336 -- 368717 -- 226302 -- 450621 -- 378016 -- 551404 -- 450615 -- 551507 -- 430640 -- 450603 -- 440621 -- 315241 -- 230357 -- 538726 -- 378019 -- 431425 -- 226321 -- 551714 -- 226313 -- 315250 -- 379617 -- 369945 -- 372110 -- 538702 -- 274010 -- 538626 -- 447633 -- 368828 -- 368627 -- 527607 -- 266300 -- 379931 -- 450610 -- 315304 -- 315252 -- 226307 -- 545208 -- 261701 -- 368519 -- 538601 -- 276200 -- 444260 -- 450608 -- 538819 -- 450619 -- 450625 -- 538713 -- 315248 -- 266305 -- 277811 -- 226316 -- 235648 -- 550823 -- 538630 -- 230302 -- 368820 -- 295128 -- 440627 -- 440724 -- 368809 -- 377244 -- 230314 -- 226334 -- 450620 -- 368810 -- 538607 -- 538718 -- 430641 -- 369816 -- 226323 -- 266304 -- 368619 -- 545326 -- 379711 -- 277606 -- 293217 -- 266332 -- 313603 -- 293314 -- 292915 -- 368630 -- 368837 -- 368502 -- 277605 -- 226305 -- 448033 -- 226340 -- 368417 -- 537609 -- 379831 -- 368419 -- 368631 -- 368418 -- 550813 -- 230312 -- 368620 -- 266331 -- 551201 -- 454741 -- 315238 -- 551506 -- 230343 -- 261702 -- 447933 -- 538628 -- 368841 -- 266313 -- 292914 -- 447833 -- 430643 -- 546917 -- 447733 -- 552110 -- 368706 -- 545204 -- 448738 -- 527605 -- 313905 -- 438127 -- 230304 -- 551405 -- 232904 -- 226359 -- 538609 -- 440625 -- 431557 -- 440922 -- 314800 -- 295502 -- 230305 -- 450623 -- 368429 -- 430638 -- 274606 -- 235600 -- 293013 -- 538829 -- 551608 -- 368830 -- 449359 -- 266333 -- 545321 -- 368829 -- 538619 -- 274005 -- 368625 -- 368800 -- 380949 -- 541109 -- 368705 -- 368407 -- 368709 -- 277608 -- 538618 -- 230307 -- 545308 -- 378617 -- 379018 -- 226346 -- 368406 -- 266318 -- 545324 -- 538700 -- 374420 -- 226332 -- 313906 -- 545201 -- 266307 -- 368403 -- 368516 -- 226345 -- 444021 -- 266306 -- 430644 -- 538723 -- 538807 -- 538614 -- 368427 -- 368823 -- 431205 -- 293313 -- 230329 -- 368622 -- 232941 -- 230355 -- 314003 -- 368434 -- 371112 -- 447732 -- 233607 -- 378017 -- 274607 -- 444022 -- 230308 -- 277812 -- 315249 -- 266301 -- 292816 -- 545330 -- 277711 -- 368835 -- 444024 -- 371704 -- 448736 -- 368409 -- 274609 -- 450607 -- 368839 -- 450616 -- 230341 -- 368515 -- 527401 -- 261704 -- 550801 -- 430908 -- 230502 -- 430650 -- 380229 -- 315251 -- 371013 -- 368400 -- 430636 -- 368824 -- 538719 -- 230340 -- 538802 -- 440925 -- 377537 -- 440722 -- 290321 -- 444451 -- 368505 -- 274011 -- 368843 -- 368508 -- 315242 -- 378618 -- 545325 -- 226353 -- 538603 -- 447932 -- 550822 -- 266326 -- 538600 -- 230328 -- 431115 -- 538800 -- 441024 -- 276300 -- 370926 -- 274007 -- 368845 -- 380025 -- 230333 -- 379021 -- 550805 -- 368846 -- 545328 -- 368629 -- 296704 -- 380125 -- 274002 -- 538827 -- 430658 -- 538806 -- 374330 -- 368416 -- 368404 -- 226347 -- 314905 -- 292815 -- 226311 -- 538727 -- 545206 -- 431818 -- 447734 -- 230353 -- 266309 -- 226320 -- 235603 -- 266310 -- 230349 -- 368523 -- 368628 -- 448613 -- 552421 -- 431110 -- 440924 -- 378018 -- 368521 -- 368856 -- 444020 -- 368813 -- 527416 -- 315235 -- 274004 -- 277607 -- 546916 -- 371605 -- 275732 -- 266314 -- 538722 -- 315243 -- 371209 -- 292813 -- 379555 -- 447632 -- 368818 -- 292912 -- 368421 -- 379618 -- 315259 -- 368805 -- 551302 -- 447630 -- 527400 -- 380029 -- 538821 -- 430906 -- 294203 -- 274608 -- 538714 -- 546500 -- 295501 -- 538622 -- 226327 -- 226317 -- 538613 -- 231709 -- 368812 -- 368402 -- 440626 -- 368847 -- 545315 -- 226335 -- 233604 -- 374014 -- 550811 -- 377436 -- 296500 -- 368851 -- 235667 -- 373910 -- 549300 -- 527403 -- 374014 -- 368501 -- 538608 -- 374014 -- 545203 -- 368861 -- 538623 -- 430655 -- 230362 -- 370827 -- 538804 -- 430653 -- 449034 -- 368432 -- 232951 -- 374115 -- 230320 -- 527608 -- 368801 -- 550806 -- 226333 -- 230309 -- 450600 -- 292814 -- 549600 -- 431007 -- 450605 -- 230317 -- 552309 -- 368428 -- 430501 -- 450611 -- 368852 -- 551200 -- 466112 -- 452300 -- 527552 -- 7502 -- 380228 -- 430905 -- 368826 -- 450624 -- 226358 -- 550819 -- 538721 -- 527238 -- 431731 -- 549900 -- 368836 -- 369815 -- 274001 -- 226355 -- 230346 -- 450604 -- 278846 -- 444147 -- 230310 -- 312510 -- 266317 -- 230334 -- 449037 -- 368857 -- 230359 -- 368621 -- 226354 -- 431206 -- 545329 -- 262200 -- 368425 -- 266329 -- 293215 -- 318703 -- 293315 -- 232934 -- 314204 -- 368411 -- 368707 -- 368708 -- 277710 -- 368714 -- 527417 -- 378621 -- 368838 -- 312514 -- 262203 -- 431207 -- 538620 -- 312511 -- 371466 -- 538615 -- 381050 -- 375016 -- 527236 -- 430660 -- 226344 -- 368842 -- 527418 -- 315261 -- 538824 -- 266303 -- 368854 -- 538706 -- 368811 -- 538801 -- 438125 -- 379022 -- 262201 -- 545319 -- 230336 -- 368517 -- 368401 -- 368413 -- 368808 -- 379828 -- 371308 -- 313501 -- 265502 -- 448737 -- 438123 -- 549400 -- 438122 -- 261703 -- 226343 -- 230315 -- 226301 -- 440813 -- 454100 -- 368503 -- 371806 -- 235857 -- 431006 -- 448032 -- 230356 -- 315253 -- 368414 -- 538815 -- 277510 -- 226338 -- 368850 -- 368710 -- 545212 -- 261101 -- 370046 -- 368814 -- 293214 -- 266321 -- 380126 -- 538624 -- 550804 -- 368518 -- 230327 -- 504613 -- 374264 -- 266327 -- 312512 -- 315254 -- 226331 -- 545301 -- 431656 -- 448839 -- 537612 -- 378762 -- 226348 -- 545209 -- 538625 -- 315237 -- 368833 -- 315232 -- 277912 -- 545213 -- 297101 -- 430808 -- 277604 -- 450609 -- 226318 -- 368802 -- 550803 -- 230335 -- 226352 -- 368513 -- 430642 -- 440723 - 373819 -- 266325 -- 277813 -- 448840 -- 440623 -- 226319 -- 368420 -- 368855 -- 230345 -- 274008 -- 450617 -- 315262 -- 538616 -- 447836 -- 262202 -- 379154 -- 368408 -- 368803 -- 538820 -- 430646 -- 369424 -- 374834 -- 449036 -- 277512 -- 230332 -- 230300 -- 448938 -- 538831 -- 226339 -- 226309 -- 550827 -- 226356 -- 379253 -- 539500 -- 261102 -- 378863 -- 380127 -- 550100 -- 313604 -- 226337 -- 314802 -- 534901 -- 368626 -- 545202 -- 226300 -- 550802 -- 538720 -- 454740 -- 545320 -- 443723 -- 278011 -- 448031 -- 368509 -- 447832 -- 438126 +- 538710 +- 378958 +- 368857 +- 297101 - 274100 -- 545200 -- 295503 -- 545307 -- 368806 -- 379830 -- 379019 -- 538830 -- 293015 -- 226325 -- 230347 -- 538728 -- 226361 -- 266315 -- 368859 -- 527419 -- 440624 -- 226351 -- 226328 -- 440923 -- 538704 -- 379619 -- 527237 -- 538811 -- 226330 +- 527404 +- 370422 +- 431207 +- 230603 +- 380126 +- 549600 +- 380025 +- 368414 +- 315241 +- 314905 +- 226303 +- 230353 +- 431007 +- 431557 +- 376938 +- 274607 +- 277710 +- 368523 +- 450611 +- 226335 +- 527402 +- 450600 +- 553229 +- 368844 - 550824 -- 266311 -- 315303 +- 538804 +- 447732 - 226349 -- 368817 -- 374418 -- 448034 -- 538729 -- 230321 -- 430648 -- 538724 -- 546400 -- 438128 -- 232907 -- 230306 -- 430503 -- 545323 -- 368858 -- 368511 -- 447731 -- 430659 -- 226341 -- 368831 -- 277910 -- 235840 -- 545309 -- 538813 -- 550820 -- 368816 -- 376840 -- 538707 -- 368507 -- 527561 -- 368422 -- 277511 -- 315256 -- 545210 -- 315240 -- 551609 -- 368807 -- 233606 -- 368715 -- 450612 -- 230360 -- 550809 -- 368860 -- 438124 +- 448840 +- 277911 +- 368824 +- 541200 +- 374330 - 274006 -- 545318 +- 368510 +- 447934 +- 368810 +- 538705 +- 230362 +- 230310 +- 232900 +- 293013 +- 552220 +- 315259 +- 226351 +- 450612 +- 444021 +- 450620 +- 447933 +- 538803 +- 379928 +- 527400 +- 538829 +- 379711 +- 368705 +- 440624 +- 275733 +- 380127 +- 368838 +- 534902 +- 538607 +- 551200 +- 440724 +- 441026 +- 368858 +- 226302 +- 430648 +- 226319 +- 368620 +- 313501 +- 368425 +- 551201 +- 368819 +- 293014 +- 226344 +- 538615 +- 368517 +- 368502 +- 368820 +- 551302 +- 368412 +- 379019 +- 373910 +- 314105 +- 550818 +- 368836 +- 379021 +- 230333 +- 230329 +- 368816 +- 295504 +- 377343 +- 226308 +- 438125 +- 295502 +- 293313 +- 545203 +- 553104 +- 430652 +- 371565 +- 275732 +- 313301 +- 226312 +- 368809 +- 293216 +- 545207 +- 315254 +- 368420 +- 450602 +- 545206 +- 450605 +- 368402 +- 312512 +- 553227 +- 368627 +- 550821 +- 545214 +- 368433 +- 430650 +- 315243 +- 450610 +- 226304 +- 230313 +- 441023 +- 230344 +- 380229 +- 368503 +- 315260 +- 226306 +- 368839 +- 539500 +- 553205 +- 440722 +- 551506 +- 527236 +- 538714 +- 553221 +- 274007 +- 447834 +- 230345 +- 230339 +- 444348 +- 380029 +- 377141 +- 545201 +- 374264 +- 545319 +- 441027 +- 378762 +- 447731 +- 226357 +- 226332 +- 230341 +- 368504 +- 7502 +- 551609 +- 450607 +- 553200 +- 262204 +- 368618 +- 313603 +- 545320 +- 230324 +- 440923 +- 447631 +- 552110 +- 230308 +- 261102 +- 369815 +- 379830 +- 553800 +- 545323 +- 277605 +- 368833 +- 368850 +- 538608 +- 368856 +- 277512 +- 235857 +- 553204 +- 553106 +- 430659 +- 448736 +- 262201 +- 440925 +- 538622 +- 545326 +- 368855 +- 450606 +- 431818 +- 553222 +- 226333 +- 368716 +- 315233 +- 368424 +- 292814 +- 368520 +- 380028 +- 545315 +- 368829 +- 235603 +- 226347 +- 441025 +- 527312 +- 553224 +- 277812 +- 538702 +- 545310 +- 292915 +- 545204 +- 314000 +- 449036 +- 226361 +- 230350 +- 368843 +- 553216 +- 372110 +- 226353 +- 230320 +- 368622 +- 545327 +- 226311 +- 537608 +- 230312 +- 550807 +- 550822 +- 538828 +- 274001 +- 278011 +- 447833 +- 538722 +- 538822 +- 274606 +- 545202 +- 295503 +- 368410 +- 372011 +- 538724 +- 293314 +- 369424 +- 313905 +- 368428 +- 368713 +- 430808 +- 454740 +- 368821 +- 230346 +- 368815 +- 368859 +- 380125 +- 538814 +- 378016 +- 293215 +- 374717 +- 368826 +- 450603 +- 368840 +- 230352 +- 447832 +- 545304 +- 277604 +- 230309 +- 370827 +- 235649 +- 450624 +- 368508 +- 553207 +- 315257 +- 230332 +- 315240 +- 545205 +- 232904 +- 315256 +- 553228 +- 368853 +- 538824 +- 368715 +- 551608 +- 504613 +- 313502 +- 226329 +- 226340 +- 313906 +- 233607 +- 312509 +- 315252 +- 553211 +- 527561 +- 430907 +- 368806 +- 448735 +- 368506 +- 230340 +- 378621 +- 368527 +- 368817 +- 549400 +- 431006 +- 440924 +- 233604 +- 538730 +- 545212 +- 315234 +- 553220 +- 277510 +- 379617 +- 368512 +- 292816 +- 226307 +- 448613 +- 230322 +- 312514 +- 550803 +- 553212 +- 368411 +- 538603 +- 371806 +- 553359 +- 371112 +- 440723 +- 374014 +- 368717 +- 277711 +- 430639 +- 312513 +- 379829 +- 550804 +- 545314 +- 545309 +- 527238 +- 226358 +- 431731 +- 315235 +- 550826 +- 230315 +- 232934 +- 371013 +- 444024 +- 368509 +- 430643 +- 545200 +- 226300 +- 232300 +- 232949 +- 380228 +- 430636 +- 374532 +- 541300 +- 447630 +- 226320 +- 226346 +- 553218 +- 553110 +- 371704 +- 538813 +- 551507 +- 450609 +- 550810 +- 551912 +- 444451 +- 538831 +- 448033 +- 538618 +- 374115 +- 315246 +- 368518 +- 448839 +- 274004 +- 553105 +- 226314 +- 368427 +- 380128 +- 550811 +- 538807 +- 553225 +- 448032 +- 553206 +- 447836 +- 538827 +- 550801 +- 550806 +- 538627 +- 545316 +- 447733 +- 448938 +- 226356 +- 226354 +- 440626 +- 538630 +- 368835 +- 538629 +- 277608 +- 290320 +- 368631 +- 448737 +- 230355 +- 537612 +- 230305 +- 443723 +- 538826 +- 233135 +- 538800 +- 527605 +- 226345 +- 226316 +- 226326 +- 261700 +- 232950 +- 440813 +- 312510 +- 377436 +- 552309 +- 226338 +- 538616 +- 368417 +- 546916 +- 550819 +- 278012 +- 230300 +- 545305 +- 376501 +- 368846 +- 368404 +- 553109 +- 537609 +- 368861 +- 230316 +- 368624 +- 538600 +- 314003 +- 232348 +- 368511 +- 379253 +- 431205 +- 315237 +- 278010 +- 538723 +- 370046 +- 553107 +- 368825 +- 315255 +- 440625 +- 274003 +- 230360 +- 274011 +- 538830 +- 230301 +- 374014 +- 371907 +- 550825 +- 379616 +- 538802 +- 448738 +- 368841 +- 553112 +- 450619 +- 538801 +- 368712 +- 368803 +- 230356 +- 553226 +- 315250 +- 368409 +- 368828 +- 553102 +- 315262 +- 368831 +- 315236 +- 440627 +- 371466 +- 226336 +- 538820 +- 545307 +- 545211 +- 545325 +- 371605 +- 226327 +- 438123 +- 290207 +- 379555 +- 235600 +- 368516 +- 293217 +- 430656 +- 368801 +- 368848 +- 226305 +- 261701 +- 226334 +- 545210 +- 430906 +- 276200 +- 538709 +- 232951 +- 296500 +- 368401 +- 538819 +- 440926 +- 527606 +- 374417 +- 368619 +- 261100 +- 315238 +- 450601 +- 230336 +- 538614 +- 431115 +- 293214 +- 538704 +- 368625 +- 314800 +- 377042 +- 369816 +- 368849 +- 430649 +- 368814 +- 371308 +- 231709 +- 381050 +- 541109 +- 315261 +- 368525 +- 315232 +- 230323 +- 379020 +- 368851 +- 551714 +- 538624 +- 368416 +- 314204 +- 378019 +- 368707 +- 378018 +- 292912 +- 233606 +- 538713 +- 450613 +- 314002 +- 534901 +- 368431 +- 368413 +- 226342 +- 368419 +- 235822 +- 293315 +- 447835 +- 527235 +- 368928 +- 545328 +- 549900 +- 553213 +- 527417 +- 430641 +- 261702 +- 368709 +- 545321 +- 527416 +- 538809 +- 430653 +- 448838 +- 444022 +- 440720 +- 368834 +- 380027 +- 226359 +- 368845 +- 552011 +- 538725 +- 438127 +- 226315 +- 226301 +- 553113 +- 553217 +- 538602 +- 368521 +- 527401 +- 378017 +- 553219 +- 231600 +- 538620 +- 235648 +- 277509 +- 368832 +- 274608 +- 230328 +- 553208 +- 296704 +- 368822 +- 226348 +- 527419 +- 312511 +- 368805 +- 454741 +- 444147 +- 550823 +- 430501 +- 368807 +- 440621 +- 293015 +- 374419 +- 226313 +- 277511 +- 430657 +- 376600 +- 378618 +- 276101 +- 368811 +- 261703 +- 545301 +- 226337 +- 431110 +- 230351 +- 527608 +- 230303 +- 551404 +- 450623 +- 368406 +- 538726 +- 551813 +- 550800 +- 538625 +- 553234 +- 538707 +- 448837 +- 368432 +- 295501 +- 295128 +- 230335 +- 230314 +- 431656 +- 553209 +- 374420 +- 380230 +- 226321 +- 538701 +- 368830 +- 226350 +- 538623 +- 553233 +- 430905 +- 431425 +- 444020 +- 450614 +- 235667 +- 378620 +- 545208 +- 277607 +- 430638 +- 368827 +- 368714 +- 315244 +- 431206 +- 230348 +- 430660 +- 450608 +- 430810 +- 277811 +- 226343 +- 230331 +- 368630 +- 368507 +- 226339 +- 226331 +- 230357 +- 430651 +- 438126 +- 230359 +- 552515 +- 368812 +- 380026 Description: '' DragSelectable: true GMNotes: '' @@ -45828,9 +46688,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -62.76 - posY: 2.38 - posZ: -62.53 + posX: -63.9 + posY: 2.4 + posZ: -63.85 rotX: 0.02 rotY: 270.01 rotZ: 180.02 diff --git a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses dd549a.yaml b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses dd549a.yaml index 1a4e4334a..e0de9c41e 100644 --- a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses dd549a.yaml +++ b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses dd549a.yaml @@ -5,97 +5,7 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266334 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: ffb62c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Day of Reckoning - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.6921654 - posY: 1.792034 - posZ: -56.7708473 - rotX: 0.02080212 - rotY: 270.009521 - rotZ: 180.0168 - 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 016e3c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chronophobia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 438128 + CardID: 438124 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -112,7 +22,7 @@ ContainedObjects: Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: 406ab2 + GUID: a5be8b Grid: true GridProjection: false Hands: true @@ -123,288 +33,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Your Worst Nightmare + Nickname: Unspeakable Oath (Bloodthirst) 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: 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: ba2ae1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Doomed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 266333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 96eb52 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dread Curse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.394306 - posY: 1.2917521 - posZ: 48.2496529 - rotX: 0.0207969919 - rotY: 269.999847 - rotZ: 0.87159 - 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: - '2908': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: d28be6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Internal Injury - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.394413 - posY: 1.81095624 - posZ: -77.7948 - rotX: 0.0207971055 - rotY: 270.041931 - rotZ: 180.0168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438127 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 57e648 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Narcolepsy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 438125 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: eff3c8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Self-Centered - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 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 - Type: 0 - UniqueBack: false - Description: Enemy - DragSelectable: true - GMNotes: '' - GUID: da227d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Thing That Follows - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 77.00673 - posY: 1.37194359 - posZ: 76.50519 - rotX: 0.0208081231 - rotY: 269.999054 - rotZ: 0.0167726167 + 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 @@ -455,103 +95,13 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 552602 + CardID: 438128 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: a2e7d7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Obsessive - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.4945068 - posY: 2.84449673 - posZ: -98.49263 - rotX: 0.02080569 - rotY: 270.010651 - rotZ: 0.0167755187 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538702 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5387': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: fc4168 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nihilism - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -65.69718 - posY: 1.3562721 - posZ: -83.43286 - rotX: 0.0208079629 - rotY: 270.0195 - rotZ: 0.016803991 - 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: - '2908': + '4381': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ @@ -562,7 +112,7 @@ ContainedObjects: Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: c17498 + GUID: 406ab2 Grid: true GridProjection: false Hands: true @@ -573,294 +123,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Paranoia + Nickname: Your Worst Nightmare SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -63.3866119 - posY: 1.81096566 - posZ: -77.78853 - rotX: 0.02079328 - rotY: 270.0409 - rotZ: 180.0168 + 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: 266332 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 6d8407 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Accursed Follower - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.77942562 - posY: 1.30375266 - posZ: 51.57145 - rotX: 0.0208079368 - rotY: 269.999939 - rotZ: 0.0167710185 - 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: b2ef43 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Indebted - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 249d83 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Haunted - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.4280052 - posY: 1.85719132 - posZ: -77.81856 - rotX: 0.02081545 - rotY: 269.9845 - rotZ: 180.016785 - 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: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 88ee43 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hypochondria - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3866119 - posY: 1.80896521 - posZ: -77.7885361 - rotX: 0.02079337 - rotY: 270.040619 - rotZ: 180.0168 - 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: - '2908': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 3b3c0a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Drawing the Sign - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.4171066 - posY: 1.85708785 - posZ: -77.80978 - rotX: 0.0208140146 - rotY: 269.9754 - rotZ: 180.016769 - 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: dd3d09 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Pact - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 290817 + CardID: 290816 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -877,7 +157,7 @@ ContainedObjects: Description: Enemy DragSelectable: true GMNotes: '' - GUID: 16a89d + GUID: b239d7 Grid: true GridProjection: false Hands: true @@ -888,18 +168,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Silver Twilight Acolyte + Nickname: Mob Enforcer 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 + 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 @@ -950,58 +230,13 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 552702 + CardID: 290804 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: a3bc7a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Atychiphobia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.8660851 - posY: 1.29044318 - posZ: 55.64921 - rotX: 0.0208031386 - rotY: 270.01947 - rotZ: 0.0167778675 - 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': + '2908': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ @@ -1012,7 +247,7 @@ ContainedObjects: Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: 447a08 + GUID: 88ee43 Grid: true GridProjection: false Hands: true @@ -1023,562 +258,22 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false 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: 545212 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: e27c93 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Offer You Cannot Refuse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.6115227 - posY: 1.2985549 - posZ: -73.20949 - rotX: 0.020809751 - rotY: 270.000061 - rotZ: 0.016769927 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: '993595' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dread Curse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.520298 - posY: 1.27640986 - posZ: 52.67936 - rotX: 0.020808354 - rotY: 269.999939 - rotZ: 0.0167707969 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266332 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 483f9a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Accursed Follower - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.90543127 - posY: 1.27752221 - posZ: 56.0015526 - rotX: 0.020808218 - rotY: 269.999939 - rotZ: 0.016770957 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 290321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2903': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e42f12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The 13th Vision + Nickname: Hypochondria SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: -63.3866119 - posY: 1.80897725 + posY: 1.80896521 posZ: -77.7885361 - rotX: 0.0207925364 - rotY: 270.0409 + rotX: 0.02079337 + rotY: 270.040619 rotZ: 180.0168 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: d83baf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Psychosis - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 88a9b3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Overzealous - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 3575a3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Paranoia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 8598a4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Amnesia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 291019 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2910': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: fd9c56 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Through the Gates - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.4280052 - posY: 1.85709047 - posZ: -77.81856 - rotX: 0.0208126642 - rotY: 269.9844 - rotZ: 180.016769 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 290320 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2903': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Circumstances Beyond Your Control - DragSelectable: true - GMNotes: '' - GUID: cc65f3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "The Tower \u2022 XVI" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -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: 438124 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: a5be8b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unspeakable Oath (Bloodthirst) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 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 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 2210c1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Amnesia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 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: 290320 ColorDiffuse: @@ -1625,16 +320,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 438122 + CardID: 553434 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4381': + '2663': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -1642,7 +337,7 @@ ContainedObjects: Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: ea0fa1 + GUID: ffb62c Grid: true GridProjection: false Hands: true @@ -1653,22 +348,202 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Unspeakable Oath (Cowardice) + Nickname: Day of Reckoning SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -63.422718 - posY: 1.85714376 - posZ: -77.81429 - rotX: 0.0208181739 - rotY: 269.975281 + posX: -53.6921654 + posY: 1.792034 + posZ: -56.7708473 + rotX: 0.02080212 + rotY: 270.009521 + rotZ: 180.0168 + 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: + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3866119 + posY: 1.81096566 + posZ: -77.78853 + rotX: 0.02079328 + rotY: 270.0409 + rotZ: 180.0168 + 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: + '2910': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4280052 + posY: 1.85709047 + posZ: -77.81856 + rotX: 0.0208126642 + rotY: 269.9844 + rotZ: 180.016769 + 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 249d83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Haunted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4280052 + posY: 1.85719132 + posZ: -77.81856 + rotX: 0.02081545 + rotY: 269.9845 rotZ: 180.016785 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 016e3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 291019 ColorDiffuse: @@ -1760,24 +635,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 290816 + CardID: 553433 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2623': + '2663': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Enemy + Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: b239d7 + GUID: 96eb52 Grid: true GridProjection: false Hands: true @@ -1788,30 +663,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Mob Enforcer + Nickname: Dread Curse 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 + posX: 7.394306 + posY: 1.2917521 + posZ: 48.2496529 + rotX: 0.0207969919 + rotY: 269.999847 + rotZ: 0.87159 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 290805 + CardID: 438126 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2623': + '4381': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ @@ -1822,7 +697,7 @@ ContainedObjects: Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: 8df93a + GUID: 447a08 Grid: true GridProjection: false Hands: true @@ -1833,18 +708,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Indebted + Nickname: Kleptomania 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 + 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 @@ -1895,16 +770,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 538602 + CardID: 553432 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5386': + '2663': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -1912,7 +787,7 @@ ContainedObjects: Description: Basic Weakness DragSelectable: true GMNotes: '' - GUID: c45e67 + GUID: 483f9a Grid: true GridProjection: false Hands: true @@ -1923,24 +798,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Reckless + Nickname: Accursed Follower SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 33.86608 - posY: 1.3293891 - posZ: 55.6492081 - rotX: 0.0208107773 - rotY: 269.99292 - rotZ: 0.0167680979 + posX: 6.90543127 + posY: 1.27752221 + posZ: 56.0015526 + rotX: 0.020808218 + rotY: 269.999939 + rotZ: 0.016770957 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 290810 + CardID: 290817 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1954,10 +829,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Basic Weakness + Description: Enemy DragSelectable: true GMNotes: '' - GUID: 29766c + GUID: 16a89d Grid: true GridProjection: false Hands: true @@ -1968,18 +843,108 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Overzealous + Nickname: Silver Twilight Acolyte 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 + 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: 553433 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: '993595' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dread Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.520298 + posY: 1.27640986 + posZ: 52.67936 + rotX: 0.020808354 + rotY: 269.999939 + rotZ: 0.0167707969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5387': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: fc4168 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nihilism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.69718 + posY: 1.3562721 + posZ: -83.43286 + rotX: 0.0208079629 + rotY: 270.0195 + rotZ: 0.016803991 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2029,6 +994,276 @@ ContainedObjects: 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Doomed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 552702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5388': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: a3bc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Atychiphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.8660851 + posY: 1.29044318 + posZ: 55.64921 + rotX: 0.0208031386 + rotY: 270.01947 + rotZ: 0.0167778675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Self-Centered + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 290321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e42f12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3866119 + posY: 1.80897725 + posZ: -77.7885361 + rotX: 0.0207925364 + rotY: 270.0409 + rotZ: 180.0168 + 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: + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4171066 + posY: 1.85708785 + posZ: -77.80978 + rotX: 0.0208140146 + rotY: 269.9754 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: e27c93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Offer You Cannot Refuse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.6115227 + posY: 1.2985549 + posZ: -73.20949 + rotX: 0.020809751 + rotY: 270.000061 + rotZ: 0.016769927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 290807 ColorDiffuse: @@ -2074,6 +1309,276 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 552602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: a2e7d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obsessive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4945068 + posY: 2.84449673 + posZ: -98.49263 + rotX: 0.02080569 + rotY: 270.010651 + rotZ: 0.0167755187 + 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: + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: d28be6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.394413 + posY: 1.81095624 + posZ: -77.7948 + rotX: 0.0207971055 + rotY: 270.041931 + rotZ: 180.0168 + 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Psychosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 438122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Oath (Cowardice) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.422718 + posY: 1.85714376 + posZ: -77.81429 + rotX: 0.0208181739 + rotY: 269.975281 + rotZ: 180.016785 + 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 29766c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 438123 ColorDiffuse: @@ -2119,15 +1624,502 @@ ContainedObjects: 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 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 + Type: 0 + UniqueBack: false + Description: Enemy + DragSelectable: true + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Thing That Follows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 3575a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Narcolepsy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 538602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: c45e67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Reckless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.86608 + posY: 1.3293891 + posZ: 55.6492081 + rotX: 0.0208107773 + rotY: 269.99292 + rotZ: 0.0167680979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Circumstances Beyond Your Control + DragSelectable: true + GMNotes: '' + GUID: cc65f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -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: 553432 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 6d8407 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Accursed Follower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.77942562 + posY: 1.30375266 + posZ: 51.57145 + rotX: 0.0208079368 + rotY: 269.999939 + rotZ: 0.0167710185 + 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 8598a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Pact + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 8df93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 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: '' CustomDeck: - '2663': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false '2903': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ @@ -2208,54 +2200,62 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '5534': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false DeckIDs: -- 266334 -- 290807 -- 438128 -- 290814 -- 266333 -- 290806 -- 438127 -- 438125 -- 290815 -- 545211 -- 552602 -- 538702 -- 290801 -- 266332 -- 290805 -- 290802 -- 290804 -- 290811 -- 290813 -- 290817 -- 290806 -- 552702 -- 438126 -- 545212 -- 266333 -- 266332 -- 290321 -- 290803 -- 290810 -- 290801 -- 290800 -- 291019 -- 290320 - 438124 -- 290800 +- 545211 +- 438128 +- 290816 +- 290806 +- 290804 - 290320 -- 438122 +- 553434 +- 290801 +- 291019 +- 290802 +- 290807 - 291019 - 290321 -- 290816 -- 290805 +- 553433 +- 438126 - 547902 -- 538602 -- 290810 +- 553432 +- 290817 +- 553433 +- 538702 - 290818 +- 290814 +- 552702 +- 438125 +- 290321 +- 290811 +- 545212 - 290807 +- 552602 +- 290806 +- 290803 +- 438122 +- 290810 +- 290810 - 438123 +- 290800 +- 290815 +- 290801 +- 438127 +- 538602 +- 290320 +- 553432 +- 290805 +- 290800 +- 290813 +- 290805 Description: '' DragSelectable: true GMNotes: '' @@ -2276,9 +2276,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -63.95 + posX: -63.28 posY: 1.6 - posZ: -62.38 + posZ: -62.5 rotX: 0.02 rotY: 270.01 rotZ: 180.02 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml index 8aef044a2..346640696 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml @@ -11,7 +11,7 @@ CustomImage: Type: 2 ImageScalar: 1.0 ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/yfs8gHq.png + ImageURL: https://i.imgur.com/1plY463.png WidthScale: 0.0 Description: '' DragSelectable: true @@ -32,9 +32,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.78 + posX: -3.86 posY: 4.58 - posZ: -15.11 + posZ: -14.84 rotX: 0.0 rotY: 260.0 rotZ: 0.0 diff --git a/unpacked/Custom_Model_Bag Community-Created Investigators ed4ca7/Custom_Model_Bag Delta Green Convergence Custom Investigators 84be1d.yaml b/unpacked/Custom_Model_Bag Community-Created Investigators ed4ca7/Custom_Model_Bag Delta Green Convergence Custom Investigators 84be1d.yaml index e13d9eb02..3486c4f3c 100644 --- a/unpacked/Custom_Model_Bag Community-Created Investigators ed4ca7/Custom_Model_Bag Delta Green Convergence Custom Investigators 84be1d.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Investigators ed4ca7/Custom_Model_Bag Delta Green Convergence Custom Investigators 84be1d.yaml @@ -78,9 +78,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -36.57 - posY: 3.16 - posZ: -95.38 + posX: -33.33 + posY: 1.99 + posZ: -87.05 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Innsmouth Conspiracy 2e936e.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Innsmouth Conspiracy 2e936e.yaml index c49b02668..c03299670 100644 --- a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Innsmouth Conspiracy 2e936e.yaml +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Innsmouth Conspiracy 2e936e.yaml @@ -14,6 +14,7 @@ ContainedObjects: - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Creatures of the Deep 0326ec.yaml' - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Agents of Hydra b909c7.yaml' - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck Agents of Dagon e18dd7.yaml' +- !include 'Bag The Innsmouth Conspiracy 2e936e/Deck In Too Deep 60643c.yaml' - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck The Vanishing of Elina Harper 6af1d0.yaml' - !include 'Bag The Innsmouth Conspiracy 2e936e/Deck The Pit of Despair 094470.yaml' @@ -39,10 +40,10 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 23.69 - posY: 3.19 - posZ: -40.91 - rotX: -0.0 + posX: 30.94 + posY: 2.96 + posZ: -80.02 + rotX: -0.01 rotY: 0.0 rotZ: 359.98 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Innsmouth Conspiracy 2e936e/Deck In Too Deep 60643c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Innsmouth Conspiracy 2e936e/Deck In Too Deep 60643c.yaml new file mode 100644 index 000000000..f27b7a16f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Innsmouth Conspiracy 2e936e/Deck In Too Deep 60643c.yaml @@ -0,0 +1,1680 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90fdb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Teachings of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4780378 + posY: 1.89695418 + posZ: 36.8975945 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 180.016876 + 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: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Rattletrap Bus Driver + DragSelectable: true + GMNotes: '' + GUID: 37a897 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Joe Sargent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8984985 + posY: 1.8874141 + posZ: 36.9025536 + rotX: 359.9195 + rotY: 270.000122 + rotZ: 180.017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 670e3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inundated + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1184568 + posY: 1.52199388 + posZ: 29.1757717 + rotX: 359.920135 + rotY: 269.998749 + rotZ: 0.01687424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: e64df3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inundated + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.651763 + posY: 1.57407188 + posZ: 29.2819557 + rotX: 359.920135 + rotY: 269.998749 + rotZ: 0.0168739147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: bbc87f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inundated + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6440439 + posY: 1.59595275 + posZ: 29.3033428 + rotX: 359.9211 + rotY: 269.998749 + rotZ: 0.0158483442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: b8393e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pulled Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2841568 + posY: 1.52185678 + posZ: 27.9260044 + rotX: 359.920135 + rotY: 269.998474 + rotZ: 0.01687395 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 8a5eab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pulled Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2475128 + posY: 1.57452941 + posZ: 28.1084385 + rotX: 359.920135 + rotY: 269.998474 + rotZ: 0.0168737378 + 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: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Scheme. + DragSelectable: true + GMNotes: '' + GUID: 301cb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep One Invasion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6122284 + posY: 1.83297026 + posZ: 37.1537056 + rotX: 359.952057 + rotY: 270.001526 + rotZ: 180.099625 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: daa1e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emerging Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.22023 + posY: 1.52143776 + posZ: 22.0708218 + rotX: 359.920135 + rotY: 269.9983 + rotZ: 0.0168740582 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: dc6c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emerging Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9513035 + posY: 1.57356524 + posZ: 21.7861176 + rotX: 359.920135 + rotY: 269.9983 + rotZ: 0.016873518 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: c743cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emerging Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9512663 + posY: 1.60066938 + posZ: 21.78611 + rotX: 359.920715 + rotY: 269.9983 + rotZ: 0.0160693116 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: d289e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ravager from the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3810253 + posY: 1.79495108 + posZ: 36.83511 + rotX: 359.9521 + rotY: 269.999664 + rotZ: 179.900833 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: 6b10ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ravager from the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3237972 + posY: 1.79826474 + posZ: 37.09651 + rotX: 359.9487 + rotY: 269.9983 + rotZ: 179.5916 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Monster. Shoggoth. Elite. + DragSelectable: true + GMNotes: '' + GUID: 01e605 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Innsmouth Shoggoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3691921 + posY: 1.77173424 + posZ: 37.50971 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 180.013474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Coastal. + DragSelectable: true + GMNotes: '' + GUID: 33cf09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Desolate Coastline + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8406372 + posY: 1.7626487 + posZ: 37.0983849 + rotX: 359.9361 + rotY: 270.0 + rotZ: 180.013474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. + DragSelectable: true + GMNotes: '' + GUID: 306c50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Railroad Station + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5170259 + posY: 1.75251758 + posZ: 36.87011 + rotX: 359.9361 + rotY: 269.999878 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Coastal. Midtown. + DragSelectable: true + GMNotes: '' + GUID: 44c342 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Marsh Refinery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4108982 + posY: 1.74267709 + posZ: 36.65943 + rotX: 359.9361 + rotY: 269.9999 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Midtown. + DragSelectable: true + GMNotes: '' + GUID: e589b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gilman House + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1250019 + posY: 1.73404074 + posZ: 36.7096252 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Midtown. + DragSelectable: true + GMNotes: '' + GUID: 859ff0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Innsmouth Square + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6549549 + posY: 1.73172724 + posZ: 37.3300972 + rotX: 359.9521 + rotY: 270.004883 + rotZ: 179.598221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Coastal. + DragSelectable: true + GMNotes: '' + GUID: 30b2c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Innsmouth Harbour + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.0584755 + posY: 1.71797109 + posZ: 36.9517 + rotX: 359.952057 + rotY: 269.999725 + rotZ: 179.933929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Midtown. + DragSelectable: true + GMNotes: '' + GUID: 9ae75c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: First National Grocery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.80611 + posY: 1.70618415 + posZ: 36.1625938 + rotX: 359.9521 + rotY: 270.0 + rotZ: 179.988266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Coastal. Midtown. + DragSelectable: true + GMNotes: '' + GUID: a358fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fish Street Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3627386 + posY: 1.69503069 + posZ: 36.89 + rotX: 359.9521 + rotY: 269.9999 + rotZ: 180.0233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. + DragSelectable: true + GMNotes: '' + GUID: a17a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Little Bookshop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.42041 + posY: 1.6850419 + posZ: 36.8125648 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Midtown. + DragSelectable: true + GMNotes: '' + GUID: 921a9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: New Church Green + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5696583 + posY: 1.675436 + posZ: 36.408886 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Midtown. + DragSelectable: true + GMNotes: '' + GUID: 755fc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Innsmouth Jail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6502352 + posY: 1.70661747 + posZ: 36.30023 + rotX: 359.919525 + rotY: 270.006927 + rotZ: 184.833725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Coastal. + DragSelectable: true + GMNotes: '' + GUID: 104e07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The House on Water Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5944462 + posY: 1.65625644 + posZ: 36.36113 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 180.016937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Coastal. Midtown. + DragSelectable: true + GMNotes: '' + GUID: c0d0df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shoreward Slums + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.48921 + posY: 1.64653349 + posZ: 36.44753 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 180.016937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. + DragSelectable: true + GMNotes: '' + GUID: e58cff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sawbone Alley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2110252 + posY: 1.64420581 + posZ: 37.3686447 + rotX: 359.9521 + rotY: 270.000061 + rotZ: 180.221039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Innsmouth. Midtown. + DragSelectable: true + GMNotes: '' + GUID: ef8cef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Esoteric Order of Dagon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.76338 + posY: 1.37362731 + posZ: 51.0804863 + rotX: 0.0006880607 + rotY: 270.000916 + rotZ: 180.016739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Act 1 + DragSelectable: true + GMNotes: '' + GUID: b8638a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Through the Labyrinth + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9808283 + posY: 1.36365438 + posZ: 50.8257332 + rotX: 0.0124802832 + rotY: 270.000031 + rotZ: 180.013931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Agenda 4 + DragSelectable: true + GMNotes: '' + GUID: 2cbe0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rage of the Deep + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.595871 + posY: 1.35979378 + posZ: 50.5707245 + rotX: 0.0125796944 + rotY: 269.999329 + rotZ: 180.220657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Agenda 3 + DragSelectable: true + GMNotes: '' + GUID: cea106 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flooded Streets + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4084444 + posY: 1.34448671 + posZ: 51.1606941 + rotX: 0.016647201 + rotY: 270.0 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Agenda 2 + DragSelectable: true + GMNotes: '' + GUID: f743bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relentless Tide + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8670349 + posY: 1.34308708 + posZ: 50.81005 + rotX: 0.15016596 + rotY: 270.1388 + rotZ: 179.878769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Agenda 1 + DragSelectable: true + GMNotes: '' + GUID: 76323e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Barricaded Streets + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8011265 + posY: 1.31098473 + posZ: 51.1957626 + rotX: 0.0124813523 + rotY: 270.01593 + rotZ: 180.010056 + 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: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: In Too Deep + DragSelectable: true + GMNotes: '' + GUID: 7c4014 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1818056 + posY: 1.26949787 + posZ: 51.0291138 + rotX: 0.0208084881 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266322 +- 266221 +- 266220 +- 266220 +- 266220 +- 266219 +- 266219 +- 266218 +- 266217 +- 266217 +- 266217 +- 266216 +- 266216 +- 266215 +- 266420 +- 266419 +- 266418 +- 266417 +- 266416 +- 266415 +- 266414 +- 266413 +- 266412 +- 266411 +- 266410 +- 266409 +- 266408 +- 266407 +- 266406 +- 266505 +- 266504 +- 266503 +- 266502 +- 266501 +- 266400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 60643c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: In Too Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 46.54 + posY: 3.34 + posZ: -90.42 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b.yaml index a00c15e36..1db91d16e 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b.yaml @@ -4,7 +4,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Riot Whistle 55fc3d.yaml' - !include 'Custom_Model_Bag Guardian 1d802b/Card .35 Winchester 0a7642.yaml' - !include 'Custom_Model_Bag Guardian 1d802b/Card First Watch 0da344.yaml' - !include 'Custom_Model_Bag Guardian 1d802b/Card Self-Sacrifice 184380.yaml' @@ -99,7 +100,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Guardian 1d802b.ttslua' -LuaScriptState: '{"ml":{"03367f":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208070911467075,"y":270.004760742188,"z":0.0167728867381811}},"037dc7":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151224136353,"z":69.4412155151367},"rot":{"x":0.0208070278167725,"y":270.005157470703,"z":0.016772884875536}},"0a7642":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.020813774317503,"y":269.982269287109,"z":0.0167646184563637}},"0da344":{"lock":false,"pos":{"x":53.2285614013672,"y":1.302858710289,"z":74.0412216186523},"rot":{"x":0.0208069738000631,"y":270.005218505859,"z":0.016773022711277}},"184380":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903610229492},"rot":{"x":0.0208059623837471,"y":270.008636474609,"z":0.0167743097990751}},"19507d":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208070427179337,"y":270.005187988281,"z":0.0167730711400509}},"195b7f":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208070632070303,"y":270.005126953125,"z":0.0167731214314699}},"20645e":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30757141113281,"z":90.141242980957},"rot":{"x":0.0208143051713705,"y":269.980102539063,"z":0.0167638771235943}},"22bb1e":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208144877105951,"y":269.979919433594,"z":0.0167638473212719}},"22c65b":{"lock":false,"pos":{"x":53.228572845459,"y":1.30555176734924,"z":83.2412338256836},"rot":{"x":0.0208071935921907,"y":270.004638671875,"z":0.0167727563530207}},"273584":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30151224136353,"z":69.4412231445313},"rot":{"x":0.0208144653588533,"y":269.979858398438,"z":0.0167640466243029}},"273797":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208137631416321,"y":269.981811523438,"z":0.0167645625770092}},"293e8d":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.020818380638957,"y":269.966278076172,"z":0.0167590137571096}},"310d95":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208068396896124,"y":270.005554199219,"z":0.0167730785906315}},"3319be":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3082447052002,"z":92.4412307739258},"rot":{"x":0.0208144783973694,"y":269.979644775391,"z":0.0167636536061764}},"3a4576":{"lock":false,"pos":{"x":40.9601860046387,"y":1.29571235179901,"z":64.8486633300781},"rot":{"x":0.0208133514970541,"y":269.981994628906,"z":0.0167643446475267}},"45a012":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208137147128582,"y":269.981750488281,"z":0.016764497384429}},"460cb8":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208136439323425,"y":269.98193359375,"z":0.0167646463960409}},"4719d3":{"lock":false,"pos":{"x":40.960205078125,"y":1.29638564586639,"z":67.1486892700195},"rot":{"x":0.0208132304251194,"y":269.981994628906,"z":0.0167643893510103}},"493908":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0597648620605},"rot":{"x":0.0208142362535,"y":269.981781005859,"z":0.0167653206735849}},"4b1e76":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29100203514099,"z":48.7527351379395},"rot":{"x":0.020814212039113,"y":269.981750488281,"z":0.0167643204331398}},"4f6ede":{"lock":false,"pos":{"x":40.960205078125,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208138786256313,"y":269.982269287109,"z":0.0167647395282984}},"52c686":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503929615021,"z":62.5487480163574},"rot":{"x":0.0208145324140787,"y":269.979675292969,"z":0.0167636275291443}},"55ce00":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30355060100555,"z":80.9527740478516},"rot":{"x":0.0208071190863848,"y":270.005187988281,"z":0.01677305996418}},"591f6f":{"lock":false,"pos":{"x":40.9601898193359,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208138152956963,"y":269.981811523438,"z":0.0167644992470741}},"59390b":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29840540885925,"z":74.048698425293},"rot":{"x":0.0208082180470228,"y":269.999328613281,"z":0.0167707819491625}},"5b0f86":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30218553543091,"z":71.7412261962891},"rot":{"x":0.0208142232149839,"y":269.980529785156,"z":0.016764048486948}},"5ec2d2":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.0208143461495638,"y":269.982147216797,"z":0.0167657192796469}},"5fa99a":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.020807109773159,"y":270.005157470703,"z":0.0167731214314699}},"60acf8":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208071302622557,"y":270.004699707031,"z":0.0167728792876005}},"63b3e5":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29679954051971,"z":53.3411674499512},"rot":{"x":0.0208144448697567,"y":269.979583740234,"z":0.0167636126279831}},"660d08":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.0208139102905989,"y":269.981781005859,"z":0.016764584928751}},"6aa477":{"lock":false,"pos":{"x":49.5628395080566,"y":1.3069167137146,"z":92.4527816772461},"rot":{"x":0.0208068080246449,"y":270.005432128906,"z":0.0167732760310173}},"6d3fdf":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949247837067,"z":62.5411834716797},"rot":{"x":0.0208067465573549,"y":270.006042480469,"z":0.0167733579874039}},"724c85":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30016565322876,"z":64.8410797119141},"rot":{"x":0.0208068769425154,"y":270.006134033203,"z":0.0167733374983072}},"7646d6":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.0208067148923874,"y":270.005859375,"z":0.0167734157294035}},"7b6fd8":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30420517921448,"z":78.6412200927734},"rot":{"x":0.0208070296794176,"y":270.0048828125,"z":0.016773073002696}},"7db258":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30183446407318,"z":90.1607437133789},"rot":{"x":0.0208080802112818,"y":269.999328613281,"z":0.0167706049978733}},"7dc5e1":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.020804962143302,"y":270.011932373047,"z":0.0167755428701639}},"7dce77":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208137650042772,"y":269.981811523438,"z":0.0167645085602999}},"7ec473":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208146665245295,"y":269.979675292969,"z":0.0167638473212719}},"826897":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208137780427933,"y":269.981750488281,"z":0.016764584928751}},"82ee35":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846811294556,"z":78.6607131958008},"rot":{"x":0.0208139270544052,"y":269.981719970703,"z":0.0167644266039133}},"840b3d":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208138488233089,"y":269.981719970703,"z":0.0167645253241062}},"8475cc":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30353200435638,"z":76.3412170410156},"rot":{"x":0.0208068937063217,"y":270.006164550781,"z":0.0167732853442431}},"86cf73":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903579711914},"rot":{"x":0.0208162404596806,"y":269.973419189453,"z":0.0167615339159966}},"88cd33":{"lock":false,"pos":{"x":58.3843688964844,"y":1.30875563621521,"z":87.7903823852539},"rot":{"x":0.0208063405007124,"y":270.007446289063,"z":0.0167739801108837}},"8a25a0":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208071134984493,"y":270.005126953125,"z":0.016773009672761}},"8b7da2":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30042505264282,"z":80.9486999511719},"rot":{"x":0.0208136718720198,"y":269.982177734375,"z":0.016764597967267}},"8c5d4c":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.020806884393096,"y":270.005615234375,"z":0.0167731009423733}},"8d6ae6":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208142325282097,"y":269.980102539063,"z":0.0167638529092073}},"9230a8":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486801147461},"rot":{"x":0.0208099149167538,"y":269.999298095703,"z":0.0167703218758106}},"92c7df":{"lock":false,"pos":{"x":58.3838233947754,"y":1.32234311103821,"z":76.2903518676758},"rot":{"x":0.0208156257867813,"y":269.980285644531,"z":0.0167646165937185}},"930b6b":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30083894729614,"z":67.1411056518555},"rot":{"x":0.0208081733435392,"y":269.999389648438,"z":0.0167707856744528}},"99765a":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208069384098053,"y":270.006042480469,"z":0.0167734976857901}},"9eeca1":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30220401287079,"z":76.3527679443359},"rot":{"x":0.0208071041852236,"y":270.004974365234,"z":0.0167728792876005}},"a88e8d":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30606257915497,"z":78.5903549194336},"rot":{"x":0.0208041574805975,"y":270.014892578125,"z":0.0167765263468027}},"ad73d9":{"lock":false,"pos":{"x":44.5133094787598,"y":1.3067045211792,"z":92.4607315063477},"rot":{"x":0.0208088736981153,"y":269.998962402344,"z":0.0167707800865173}},"af3efd":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607162475586},"rot":{"x":0.020814310759306,"y":269.980285644531,"z":0.0167641676962376}},"af4c03":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208072457462549,"y":270.0048828125,"z":0.0167729929089546}},"b2fedd":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208136513829231,"y":269.982238769531,"z":0.0167647115886211}},"b58038":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30487847328186,"z":80.9412231445313},"rot":{"x":0.0208067633211613,"y":270.006042480469,"z":0.0167732927948236}},"b789ac":{"lock":false,"pos":{"x":58.3838272094727,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.0208052564412355,"y":270.011291503906,"z":0.016775218769908}},"bd34f2":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.1486740112305},"rot":{"x":0.0208139270544052,"y":269.981567382813,"z":0.0167643502354622}},"bf3261":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.0208070650696754,"y":270.005340576172,"z":0.0167732927948236}},"c021fd":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30757141113281,"z":90.141242980957},"rot":{"x":0.0208068154752254,"y":270.006042480469,"z":0.0167733337730169}},"c634a0":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208051260560751,"y":270.011688232422,"z":0.0167754255235195}},"ca17b8":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208072271198034,"y":270.004486083984,"z":0.0167728345841169}},"ca8448":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208138711750507,"y":269.981567382813,"z":0.0167643893510103}},"cc23ea":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30287730693817,"z":78.6527709960938},"rot":{"x":0.0208072364330292,"y":270.005035400391,"z":0.0167728997766972}},"ce4f97":{"lock":false,"pos":{"x":40.9602012634277,"y":1.30244481563568,"z":87.8486938476563},"rot":{"x":0.0208137556910515,"y":269.982330322266,"z":0.0167647879570723}},"db2e8d":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208136755973101,"y":269.98193359375,"z":0.0167647115886211}},"db4a43":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705882072449,"z":69.4486770629883},"rot":{"x":0.0208144597709179,"y":269.980041503906,"z":0.0167637970298529}},"e29603":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29571235179901,"z":64.8486557006836},"rot":{"x":0.0208136383444071,"y":269.982055664063,"z":0.0167646966874599}},"e4c7c9":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.0208137836307287,"y":269.981994628906,"z":0.0167646147310734}},"ea9ad0":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208038724958897,"y":270.015808105469,"z":0.0167768951505423}},"edd051":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30218553543091,"z":71.7412185668945},"rot":{"x":0.0208070613443851,"y":270.004791259766,"z":0.0167730432003737}},"f2f912":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712176322937,"z":74.0607147216797},"rot":{"x":0.0208138562738895,"y":269.98193359375,"z":0.0167645402252674}},"f6dfe5":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.020814461633563,"y":269.979736328125,"z":0.0167637839913368}},"f8d22e":{"lock":false,"pos":{"x":40.9602012634277,"y":1.30379128456116,"z":92.4486923217773},"rot":{"x":0.0208144262433052,"y":269.979888916016,"z":0.0167637169361115}}}}' +LuaScriptState: '{"ml":{"03367f":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208070911467075,"y":270.004760742188,"z":0.0167728867381811}},"037dc7":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151224136353,"z":69.4412155151367},"rot":{"x":0.0208070278167725,"y":270.005157470703,"z":0.016772884875536}},"0a7642":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.0208136718720198,"y":269.982269287109,"z":0.0167649462819099}},"0da344":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30285882949829,"z":74.0412216186523},"rot":{"x":0.0208069160580635,"y":270.005218505859,"z":0.0167732164263725}},"184380":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740916728973,"z":83.1903610229492},"rot":{"x":0.0208060517907143,"y":270.008636474609,"z":0.0167742259800434}},"19507d":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208068899810314,"y":270.005187988281,"z":0.0167731214314699}},"195b7f":{"lock":false,"pos":{"x":53.2284660339355,"y":1.2974728345871,"z":55.641185760498},"rot":{"x":0.0208070483058691,"y":270.005126953125,"z":0.0167729463428259}},"20645e":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3075715303421,"z":90.141242980957},"rot":{"x":0.0208143573254347,"y":269.980102539063,"z":0.0167639069259167}},"22bb1e":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7452774047852},"rot":{"x":0.0208145808428526,"y":269.979919433594,"z":0.0167638100683689}},"22c65b":{"lock":false,"pos":{"x":53.228572845459,"y":1.30555176734924,"z":83.2412338256836},"rot":{"x":0.0208071786910295,"y":270.004638671875,"z":0.0167727079242468}},"273584":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30151224136353,"z":69.4412231445313},"rot":{"x":0.0208144839853048,"y":269.979858398438,"z":0.0167638082057238}},"273797":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29167747497559,"z":51.0597610473633},"rot":{"x":0.0208138637244701,"y":269.981811523438,"z":0.0167645085602999}},"293e8d":{"lock":false,"pos":{"x":37.4159774780273,"y":1.2957751750946,"z":69.4607086181641},"rot":{"x":0.0208194348961115,"y":269.96630859375,"z":0.0167593434453011}},"310d95":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208068396896124,"y":270.005554199219,"z":0.0167730785906315}},"3319be":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3082447052002,"z":92.4412307739258},"rot":{"x":0.0208146441727877,"y":269.979644775391,"z":0.0167635250836611}},"3a4576":{"lock":false,"pos":{"x":40.9601860046387,"y":1.29571235179901,"z":64.8486633300781},"rot":{"x":0.0208133514970541,"y":269.981994628906,"z":0.0167643446475267}},"45a012":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100215435028,"z":48.7527389526367},"rot":{"x":0.0208139382302761,"y":269.981750488281,"z":0.0167645905166864}},"460cb8":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302084445953,"z":55.6492195129395},"rot":{"x":0.0208137258887291,"y":269.98193359375,"z":0.016764797270298}},"4719d3":{"lock":false,"pos":{"x":40.960205078125,"y":1.29638564586639,"z":67.1486892700195},"rot":{"x":0.0208132304251194,"y":269.981994628906,"z":0.0167643893510103}},"493908":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0597648620605},"rot":{"x":0.0208142362535,"y":269.981781005859,"z":0.0167653206735849}},"4b1e76":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29100203514099,"z":48.7527351379395},"rot":{"x":0.020814212039113,"y":269.981750488281,"z":0.0167643204331398}},"4f6ede":{"lock":false,"pos":{"x":40.960205078125,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208136234432459,"y":269.982269287109,"z":0.016764622181654}},"52c686":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.02081448584795,"y":269.979675292969,"z":0.0167636964470148}},"55ce00":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30355060100555,"z":80.9527740478516},"rot":{"x":0.0208069998770952,"y":270.005187988281,"z":0.0167731419205666}},"55fc3d":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30183446407318,"z":90.1607437133789},"rot":{"x":0.020808320492506,"y":269.998931884766,"z":0.0167705565690994}},"591f6f":{"lock":false,"pos":{"x":40.9601898193359,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208139047026634,"y":269.981811523438,"z":0.0167643539607525}},"59390b":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29840540885925,"z":74.048698425293},"rot":{"x":0.0208086222410202,"y":269.999328613281,"z":0.0167710185050964}},"5b0f86":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30218553543091,"z":71.7412261962891},"rot":{"x":0.0208142660558224,"y":269.980529785156,"z":0.0167641099542379}},"5ec2d2":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.0208143461495638,"y":269.982147216797,"z":0.0167657192796469}},"5fa99a":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557036399841,"z":87.8527908325195},"rot":{"x":0.0208068955689669,"y":270.005157470703,"z":0.0167733505368233}},"60acf8":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814684391022,"z":57.9409637451172},"rot":{"x":0.0208073649555445,"y":270.004699707031,"z":0.0167727395892143}},"63b3e5":{"lock":false,"pos":{"x":53.2285957336426,"y":1.296799659729,"z":53.3411674499512},"rot":{"x":0.0208146069198847,"y":269.979583740234,"z":0.0167639888823032}},"660d08":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607269287109},"rot":{"x":0.0208135545253754,"y":269.981781005859,"z":0.0167634300887585}},"6aa477":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30691683292389,"z":92.4527816772461},"rot":{"x":0.020806921645999,"y":270.005432128906,"z":0.0167733915150166}},"6d3fdf":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949259757996,"z":62.5411834716797},"rot":{"x":0.0208067242056131,"y":270.006042480469,"z":0.0167733654379845}},"724c85":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30016577243805,"z":64.8410797119141},"rot":{"x":0.0208067856729031,"y":270.006134033203,"z":0.0167732369154692}},"7646d6":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.0208070110529661,"y":270.005859375,"z":0.0167735200375319}},"7b6fd8":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30420529842377,"z":78.6412200927734},"rot":{"x":0.020807096734643,"y":270.0048828125,"z":0.0167731232941151}},"7db258":{"lock":false,"pos":{"x":37.4159851074219,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208097919821739,"y":269.999328613281,"z":0.0167713314294815}},"7dc5e1":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208050832152367,"y":270.011932373047,"z":0.0167753808200359}},"7dce77":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208137426525354,"y":269.981811523438,"z":0.0167646948248148}},"7ec473":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208145100623369,"y":269.979675292969,"z":0.0167635511606932}},"826897":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208148453384638,"y":269.981719970703,"z":0.0167649444192648}},"82ee35":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208145175129175,"y":269.981689453125,"z":0.0167654789984226}},"840b3d":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846811294556,"z":78.6607131958008},"rot":{"x":0.0208146180957556,"y":269.981689453125,"z":0.0167655181139708}},"8475cc":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30353200435638,"z":76.3412170410156},"rot":{"x":0.0208068881183863,"y":270.006164550781,"z":0.0167732499539852}},"86cf73":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903579711914},"rot":{"x":0.020816283300519,"y":269.973419189453,"z":0.0167614966630936}},"88cd33":{"lock":false,"pos":{"x":58.3843688964844,"y":1.30875587463379,"z":87.7903823852539},"rot":{"x":0.0208063516765833,"y":270.007446289063,"z":0.0167740974575281}},"8a25a0":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422389507294,"z":83.2527770996094},"rot":{"x":0.0208070613443851,"y":270.005126953125,"z":0.0167729742825031}},"8b7da2":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30042517185211,"z":80.9486999511719},"rot":{"x":0.0208137836307287,"y":269.982177734375,"z":0.0167644713073969}},"8c5d4c":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.020806884393096,"y":270.005615234375,"z":0.0167731009423733}},"8d6ae6":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.020815335214138,"y":269.980072021484,"z":0.0167642217129469}},"9230a8":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773223400116,"z":71.7486801147461},"rot":{"x":0.0208087638020515,"y":269.999298095703,"z":0.0167709235101938}},"92c7df":{"lock":false,"pos":{"x":58.3838233947754,"y":1.32234311103821,"z":76.2903518676758},"rot":{"x":0.0208156257867813,"y":269.980285644531,"z":0.0167646165937185}},"930b6b":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30083906650543,"z":67.1411056518555},"rot":{"x":0.0208088103681803,"y":269.999389648438,"z":0.0167707744985819}},"99765a":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208069384098053,"y":270.006042480469,"z":0.0167734976857901}},"9eeca1":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30220413208008,"z":76.3527679443359},"rot":{"x":0.0208071004599333,"y":270.004974365234,"z":0.0167730562388897}},"a88e8d":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30606269836426,"z":78.5903549194336},"rot":{"x":0.0208041407167912,"y":270.014892578125,"z":0.0167764984071255}},"ad73d9":{"lock":false,"pos":{"x":44.5133094787598,"y":1.3067045211792,"z":92.4607315063477},"rot":{"x":0.0208088736981153,"y":269.998962402344,"z":0.0167707800865173}},"af3efd":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607162475586},"rot":{"x":0.020814435556531,"y":269.980285644531,"z":0.0167641080915928}},"af4c03":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208071358501911,"y":270.0048828125,"z":0.0167728383094072}},"b2fedd":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208136811852455,"y":269.982238769531,"z":0.0167647060006857}},"b58038":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30487847328186,"z":80.9412231445313},"rot":{"x":0.0208067949861288,"y":270.006042480469,"z":0.0167733337730169}},"b789ac":{"lock":false,"pos":{"x":58.3838272094727,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.020805262029171,"y":270.011291503906,"z":0.0167752914130688}},"bd34f2":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638576507568,"z":67.1486740112305},"rot":{"x":0.0208139177411795,"y":269.981567382813,"z":0.01676463522017}},"bf3261":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612374305725,"z":51.0517272949219},"rot":{"x":0.0208069682121277,"y":270.005340576172,"z":0.0167731642723084}},"c021fd":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30757141113281,"z":90.141242980957},"rot":{"x":0.0208068154752254,"y":270.006042480469,"z":0.0167733337730169}},"c634a0":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208052285015583,"y":270.011688232422,"z":0.0167755782604218}},"ca17b8":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208072159439325,"y":270.004486083984,"z":0.0167728140950203}},"ca8448":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712164402008,"z":74.0607147216797},"rot":{"x":0.0208148509263992,"y":269.981536865234,"z":0.0167648028582335}},"cc23ea":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30287742614746,"z":78.6527709960938},"rot":{"x":0.0208071172237396,"y":270.005035400391,"z":0.0167727582156658}},"ce4f97":{"lock":false,"pos":{"x":40.9602012634277,"y":1.30244481563568,"z":87.8486938476563},"rot":{"x":0.0208135992288589,"y":269.982330322266,"z":0.0167646650224924}},"db2e8d":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369390010834,"z":57.9485626220703},"rot":{"x":0.0208137389272451,"y":269.98193359375,"z":0.0167646091431379}},"db4a43":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486770629883},"rot":{"x":0.0208143647760153,"y":269.980041503906,"z":0.0167637933045626}},"e29603":{"lock":false,"pos":{"x":40.9601745605469,"y":1.2957124710083,"z":64.8486557006836},"rot":{"x":0.020813837647438,"y":269.982055664063,"z":0.0167643800377846}},"e4c7c9":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.0208138786256313,"y":269.981994628906,"z":0.0167646780610085}},"ea9ad0":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208039283752441,"y":270.015808105469,"z":0.0167768690735102}},"edd051":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30218553543091,"z":71.7412185668945},"rot":{"x":0.0208070613443851,"y":270.004791259766,"z":0.0167730432003737}},"f2f912":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208147224038839,"y":269.981842041016,"z":0.0167650356888771}},"f6dfe5":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436612129211,"z":60.2487869262695},"rot":{"x":0.0208144374191761,"y":269.979736328125,"z":0.0167638752609491}},"f8d22e":{"lock":false,"pos":{"x":40.9602012634277,"y":1.30379140377045,"z":92.4486923217773},"rot":{"x":0.0208144206553698,"y":269.979888916016,"z":0.016763923689723}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Blessed Blade 59390b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Blessed Blade 59390b.yaml index cefad9044..0e0061d59 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Blessed Blade 59390b.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Blessed Blade 59390b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266312 +CardID: 554112 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Book of Psalms 9230a8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Book of Psalms 9230a8.yaml index 8d139b480..3df1ddeb2 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Book of Psalms 9230a8.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Book of Psalms 9230a8.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266311 +CardID: 554711 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Boxing Gloves db4a43.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Boxing Gloves db4a43.yaml index 388c4ec52..b4110cee7 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Boxing Gloves db4a43.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Boxing Gloves db4a43.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553703 +CardID: 555003 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5537': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Counterpunch 20645e.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Counterpunch 20645e.yaml index afe996197..24b4180c6 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Counterpunch 20645e.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Counterpunch 20645e.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 552710 +CardID: 553910 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5527': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Flesh Ward 52c686.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Flesh Ward 52c686.yaml index 8ea70b252..0e358ae32 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Flesh Ward 52c686.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Flesh Ward 52c686.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553104 +CardID: 554004 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5531': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Get over here! 5b0f86.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Get over here! 5b0f86.yaml index 118887037..3e986997d 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Get over here! 5b0f86.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Get over here! 5b0f86.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553212 +CardID: 554212 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5532': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Grete Wagner f6dfe5.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Grete Wagner f6dfe5.yaml index afb6478b2..40fcc2728 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Grete Wagner f6dfe5.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Grete Wagner f6dfe5.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553805 +CardID: 555105 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5538': + '5551': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Hand of Fate 930b6b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Hand of Fate 930b6b.yaml index 6abb89b9e..6b9daf9bd 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Hand of Fate 930b6b.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Hand of Fate 930b6b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266314 +CardID: 554814 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Monster Slayer 63b3e5.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Monster Slayer 63b3e5.yaml index 3de40f850..c82aacb73 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Monster Slayer 63b3e5.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Monster Slayer 63b3e5.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553314 +CardID: 554314 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5533': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Relentless af3efd.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Relentless af3efd.yaml index a15e8aaf8..aa66d0de9 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Relentless af3efd.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Relentless af3efd.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553607 +CardID: 554907 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5536': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Riot Whistle 55fc3d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Riot Whistle 55fc3d.yaml new file mode 100644 index 000000000..952b71f73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Riot Whistle 55fc3d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 55fc3d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Riot Whistle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 37.42 + posY: 1.3 + posZ: 90.16 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Rite of Sanctification 7db258.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Rite of Sanctification 7db258.yaml index 8b1a4547a..999070477 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Rite of Sanctification 7db258.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Rite of Sanctification 7db258.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266313 +CardID: 554413 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 90.16 + posZ: 87.86 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Safeguard 8d6ae6.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Safeguard 8d6ae6.yaml index e37f2aac5..638429484 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Safeguard 8d6ae6.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Safeguard 8d6ae6.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553508 +CardID: 554608 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5535': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 87.86 + posZ: 85.56 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 1d50c154f..87b146efa 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Solemn Vow 660d08.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Solemn Vow 660d08.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 85.56 + posZ: 83.26 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index f4aed68ba..c233f41c6 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 83.26 + posZ: 80.96 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Stand Together 7ec473.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Stand Together 7ec473.yaml index 87c682599..ed44342fc 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Stand Together 7ec473.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Stand Together 7ec473.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553416 +CardID: 554516 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5534': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ 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 index 9cda1ec46..340dc3d9b 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Survival Knife 840b3d.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Survival Knife 840b3d.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 80.96 + posZ: 78.66 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index eef3ac16d..062e65e62 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Tetsuo Mori 82ee35.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Tetsuo Mori 82ee35.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 78.66 + posZ: 76.36 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 3950ba014..e8c393360 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Trench Knife ca8448.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Trench Knife ca8448.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 76.36 + posZ: 74.06 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 218ab2823..319898af6 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card True Grit f2f912.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card True Grit f2f912.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 74.06 + posZ: 71.76 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Venturer 293e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Venturer 293e8d.yaml index bfa8674ac..009e537cf 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Venturer 293e8d.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Venturer 293e8d.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 71.76 + posZ: 69.46 rotX: 0.02 rotY: 269.97 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0.yaml deleted file mode 100644 index 312181f2a..000000000 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0.yaml +++ /dev/null @@ -1,120 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Guardian 18cab0/Card Rite of Sanctification 7db258.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Hand of Fate 930b6b.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Book of Psalms 9230a8.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Blessed Blade 59390b.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card .35 Winchester 0a7642.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card First Watch 0da344.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Self-Sacrifice 184380.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card I''ll see you in hell! 19507d.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Let me handle this! 195b7f.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Counterpunch 20645e.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card One-Two Punch 22bb1e.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Dynamite Blast 22c65b.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Glory 273584.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Machete 273797.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Venturer 293e8d.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Clean Them Out 3319be.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Physical Training 45a012.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Hallowed Mirror 460cb8.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card .45 Thompson 4f6ede.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Flesh Ward 52c686.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Teamwork 55ce00.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Beat Cop 591f6f.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Get over here! 5b0f86.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Second Wind 5fa99a.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Interrogate 60acf8.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Monster Slayer 63b3e5.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Solemn Vow 660d08.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Prepared for the Worst 6aa477.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card If it bleeds... 6d3fdf.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Heroic Rescue 724c85.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Dodge 7646d6.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Emergency Aid 7b6fd8.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Leadership 7dc5e1.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Handcuffs 7dce77.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Stand Together 7ec473.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Something Worth Fighting For 826897.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Tetsuo Mori 82ee35.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Survival Knife 840b3d.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Evidence! 8475cc.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Daring 86cf73.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Intrepid 88cd33.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Taunt 8a25a0.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Bandolier 8b7da2.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Safeguard 8d6ae6.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Warning Shot 9eeca1.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Take the Initiative a88e8d.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Relentless af3efd.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Delay the Inevitable af4c03.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Alice Luxley b2fedd.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Eat lead! b58038.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Inspiring Presence b789ac.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Enchanted Blade bd34f2.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card On The Hunt bf3261.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Steadfast c634a0.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Scene of the Crime ca17b8.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Trench Knife ca8448.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Trusted cc23ea.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card .45 Automatic ce4f97.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Guard Dog db2e8d.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Boxing Gloves db4a43.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card First Aid e29603.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Blackjack e4c7c9.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Vicious Blow ea9ad0.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card True Grit f2f912.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card Grete Wagner f6dfe5.yaml' -- !include 'Custom_Model_Bag Guardian 18cab0/Card .32 Colt f8d22e.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: '' -DragSelectable: true -GMNotes: '' -GUID: 18cab0 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Guardian 18cab0.ttslua' -LuaScriptState: '{"ml":{"03367f":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208070911467075,"y":270.004760742188,"z":0.0167728867381811}},"037dc7":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151224136353,"z":69.4412155151367},"rot":{"x":0.0208070278167725,"y":270.005157470703,"z":0.016772884875536}},"0a7642":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.020813774317503,"y":269.982269287109,"z":0.0167646184563637}},"0da344":{"lock":false,"pos":{"x":53.2285614013672,"y":1.302858710289,"z":74.0412216186523},"rot":{"x":0.0208069738000631,"y":270.005218505859,"z":0.016773022711277}},"184380":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903610229492},"rot":{"x":0.0208059623837471,"y":270.008636474609,"z":0.0167743097990751}},"19507d":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208070427179337,"y":270.005187988281,"z":0.0167730711400509}},"195b7f":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208070632070303,"y":270.005126953125,"z":0.0167731214314699}},"20645e":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30757141113281,"z":90.141242980957},"rot":{"x":0.0208143051713705,"y":269.980102539063,"z":0.0167638771235943}},"22bb1e":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208144877105951,"y":269.979919433594,"z":0.0167638473212719}},"22c65b":{"lock":false,"pos":{"x":53.228572845459,"y":1.30555176734924,"z":83.2412338256836},"rot":{"x":0.0208071935921907,"y":270.004638671875,"z":0.0167727563530207}},"273584":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30151224136353,"z":69.4412231445313},"rot":{"x":0.0208144653588533,"y":269.979858398438,"z":0.0167640466243029}},"273797":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208137631416321,"y":269.981811523438,"z":0.0167645625770092}},"293e8d":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.020818380638957,"y":269.966278076172,"z":0.0167590137571096}},"310d95":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208068396896124,"y":270.005554199219,"z":0.0167730785906315}},"3319be":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3082447052002,"z":92.4412307739258},"rot":{"x":0.0208144783973694,"y":269.979644775391,"z":0.0167636536061764}},"3a4576":{"lock":false,"pos":{"x":40.9601860046387,"y":1.29571235179901,"z":64.8486633300781},"rot":{"x":0.0208133514970541,"y":269.981994628906,"z":0.0167643446475267}},"45a012":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208137147128582,"y":269.981750488281,"z":0.016764497384429}},"460cb8":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208136439323425,"y":269.98193359375,"z":0.0167646463960409}},"4719d3":{"lock":false,"pos":{"x":40.960205078125,"y":1.29638564586639,"z":67.1486892700195},"rot":{"x":0.0208132304251194,"y":269.981994628906,"z":0.0167643893510103}},"493908":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0597648620605},"rot":{"x":0.0208142362535,"y":269.981781005859,"z":0.0167653206735849}},"4b1e76":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29100203514099,"z":48.7527351379395},"rot":{"x":0.020814212039113,"y":269.981750488281,"z":0.0167643204331398}},"4f6ede":{"lock":false,"pos":{"x":40.960205078125,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208138786256313,"y":269.982269287109,"z":0.0167647395282984}},"52c686":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503929615021,"z":62.5487480163574},"rot":{"x":0.0208145324140787,"y":269.979675292969,"z":0.0167636275291443}},"55ce00":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30355060100555,"z":80.9527740478516},"rot":{"x":0.0208071190863848,"y":270.005187988281,"z":0.01677305996418}},"591f6f":{"lock":false,"pos":{"x":40.9601898193359,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208138152956963,"y":269.981811523438,"z":0.0167644992470741}},"59390b":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29840540885925,"z":74.048698425293},"rot":{"x":0.0208082180470228,"y":269.999328613281,"z":0.0167707819491625}},"5b0f86":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30218553543091,"z":71.7412261962891},"rot":{"x":0.0208142232149839,"y":269.980529785156,"z":0.016764048486948}},"5ec2d2":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.0208143461495638,"y":269.982147216797,"z":0.0167657192796469}},"5fa99a":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.020807109773159,"y":270.005157470703,"z":0.0167731214314699}},"60acf8":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208071302622557,"y":270.004699707031,"z":0.0167728792876005}},"63b3e5":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29679954051971,"z":53.3411674499512},"rot":{"x":0.0208144448697567,"y":269.979583740234,"z":0.0167636126279831}},"660d08":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.0208139102905989,"y":269.981781005859,"z":0.016764584928751}},"6aa477":{"lock":false,"pos":{"x":49.5628395080566,"y":1.3069167137146,"z":92.4527816772461},"rot":{"x":0.0208068080246449,"y":270.005432128906,"z":0.0167732760310173}},"6d3fdf":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949247837067,"z":62.5411834716797},"rot":{"x":0.0208067465573549,"y":270.006042480469,"z":0.0167733579874039}},"724c85":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30016565322876,"z":64.8410797119141},"rot":{"x":0.0208068769425154,"y":270.006134033203,"z":0.0167733374983072}},"7646d6":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.0208067148923874,"y":270.005859375,"z":0.0167734157294035}},"7b6fd8":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30420517921448,"z":78.6412200927734},"rot":{"x":0.0208070296794176,"y":270.0048828125,"z":0.016773073002696}},"7db258":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30183446407318,"z":90.1607437133789},"rot":{"x":0.0208080802112818,"y":269.999328613281,"z":0.0167706049978733}},"7dc5e1":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.020804962143302,"y":270.011932373047,"z":0.0167755428701639}},"7dce77":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208137650042772,"y":269.981811523438,"z":0.0167645085602999}},"7ec473":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208146665245295,"y":269.979675292969,"z":0.0167638473212719}},"826897":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208137780427933,"y":269.981750488281,"z":0.016764584928751}},"82ee35":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846811294556,"z":78.6607131958008},"rot":{"x":0.0208139270544052,"y":269.981719970703,"z":0.0167644266039133}},"840b3d":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208138488233089,"y":269.981719970703,"z":0.0167645253241062}},"8475cc":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30353200435638,"z":76.3412170410156},"rot":{"x":0.0208068937063217,"y":270.006164550781,"z":0.0167732853442431}},"86cf73":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903579711914},"rot":{"x":0.0208162404596806,"y":269.973419189453,"z":0.0167615339159966}},"88cd33":{"lock":false,"pos":{"x":58.3843688964844,"y":1.30875563621521,"z":87.7903823852539},"rot":{"x":0.0208063405007124,"y":270.007446289063,"z":0.0167739801108837}},"8a25a0":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208071134984493,"y":270.005126953125,"z":0.016773009672761}},"8b7da2":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30042505264282,"z":80.9486999511719},"rot":{"x":0.0208136718720198,"y":269.982177734375,"z":0.016764597967267}},"8c5d4c":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.020806884393096,"y":270.005615234375,"z":0.0167731009423733}},"8d6ae6":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208142325282097,"y":269.980102539063,"z":0.0167638529092073}},"9230a8":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486801147461},"rot":{"x":0.0208099149167538,"y":269.999298095703,"z":0.0167703218758106}},"92c7df":{"lock":false,"pos":{"x":58.3838233947754,"y":1.32234311103821,"z":76.2903518676758},"rot":{"x":0.0208156257867813,"y":269.980285644531,"z":0.0167646165937185}},"930b6b":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30083894729614,"z":67.1411056518555},"rot":{"x":0.0208081733435392,"y":269.999389648438,"z":0.0167707856744528}},"99765a":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208069384098053,"y":270.006042480469,"z":0.0167734976857901}},"9eeca1":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30220401287079,"z":76.3527679443359},"rot":{"x":0.0208071041852236,"y":270.004974365234,"z":0.0167728792876005}},"a88e8d":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30606257915497,"z":78.5903549194336},"rot":{"x":0.0208041574805975,"y":270.014892578125,"z":0.0167765263468027}},"ad73d9":{"lock":false,"pos":{"x":44.5133094787598,"y":1.3067045211792,"z":92.4607315063477},"rot":{"x":0.0208088736981153,"y":269.998962402344,"z":0.0167707800865173}},"af3efd":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607162475586},"rot":{"x":0.020814310759306,"y":269.980285644531,"z":0.0167641676962376}},"af4c03":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208072457462549,"y":270.0048828125,"z":0.0167729929089546}},"b2fedd":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208136513829231,"y":269.982238769531,"z":0.0167647115886211}},"b58038":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30487847328186,"z":80.9412231445313},"rot":{"x":0.0208067633211613,"y":270.006042480469,"z":0.0167732927948236}},"b789ac":{"lock":false,"pos":{"x":58.3838272094727,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.0208052564412355,"y":270.011291503906,"z":0.016775218769908}},"bd34f2":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.1486740112305},"rot":{"x":0.0208139270544052,"y":269.981567382813,"z":0.0167643502354622}},"bf3261":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.0208070650696754,"y":270.005340576172,"z":0.0167732927948236}},"c021fd":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30757141113281,"z":90.141242980957},"rot":{"x":0.0208068154752254,"y":270.006042480469,"z":0.0167733337730169}},"c634a0":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208051260560751,"y":270.011688232422,"z":0.0167754255235195}},"ca17b8":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208072271198034,"y":270.004486083984,"z":0.0167728345841169}},"ca8448":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208138711750507,"y":269.981567382813,"z":0.0167643893510103}},"cc23ea":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30287730693817,"z":78.6527709960938},"rot":{"x":0.0208072364330292,"y":270.005035400391,"z":0.0167728997766972}},"ce4f97":{"lock":false,"pos":{"x":40.9602012634277,"y":1.30244481563568,"z":87.8486938476563},"rot":{"x":0.0208137556910515,"y":269.982330322266,"z":0.0167647879570723}},"db2e8d":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208136755973101,"y":269.98193359375,"z":0.0167647115886211}},"db4a43":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705882072449,"z":69.4486770629883},"rot":{"x":0.0208144597709179,"y":269.980041503906,"z":0.0167637970298529}},"e29603":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29571235179901,"z":64.8486557006836},"rot":{"x":0.0208136383444071,"y":269.982055664063,"z":0.0167646966874599}},"e4c7c9":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.0208137836307287,"y":269.981994628906,"z":0.0167646147310734}},"ea9ad0":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208038724958897,"y":270.015808105469,"z":0.0167768951505423}},"edd051":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30218553543091,"z":71.7412185668945},"rot":{"x":0.0208070613443851,"y":270.004791259766,"z":0.0167730432003737}},"f2f912":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712176322937,"z":74.0607147216797},"rot":{"x":0.0208138562738895,"y":269.98193359375,"z":0.0167645402252674}},"f6dfe5":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.020814461633563,"y":269.979736328125,"z":0.0167637839913368}},"f8d22e":{"lock":false,"pos":{"x":40.9602012634277,"y":1.30379128456116,"z":92.4486923217773},"rot":{"x":0.0208144262433052,"y":269.979888916016,"z":0.0167637169361115}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Guardian -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.61 - posY: 1.67 - posZ: 75.88 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0.ttslua b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0.ttslua rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210.ttslua diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210.yaml new file mode 100644 index 000000000..e9998773c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210.yaml @@ -0,0 +1,121 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian bc3210/Card Riot Whistle 55fc3d.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card .35 Winchester 0a7642.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card First Watch 0da344.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Self-Sacrifice 184380.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card I''ll see you in hell! 19507d.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Let me handle this! 195b7f.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Counterpunch 20645e.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card One-Two Punch 22bb1e.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Dynamite Blast 22c65b.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Glory 273584.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Machete 273797.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Venturer 293e8d.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Clean Them Out 3319be.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Physical Training 45a012.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Hallowed Mirror 460cb8.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card .45 Thompson 4f6ede.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Flesh Ward 52c686.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Teamwork 55ce00.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Beat Cop 591f6f.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Blessed Blade 59390b.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Get over here! 5b0f86.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Second Wind 5fa99a.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Interrogate 60acf8.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Monster Slayer 63b3e5.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Solemn Vow 660d08.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Prepared for the Worst 6aa477.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card If it bleeds... 6d3fdf.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Heroic Rescue 724c85.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Dodge 7646d6.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Emergency Aid 7b6fd8.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Rite of Sanctification 7db258.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Leadership 7dc5e1.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Handcuffs 7dce77.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Stand Together 7ec473.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Something Worth Fighting For 826897.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Tetsuo Mori 82ee35.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Survival Knife 840b3d.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Evidence! 8475cc.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Daring 86cf73.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Intrepid 88cd33.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Taunt 8a25a0.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Bandolier 8b7da2.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Safeguard 8d6ae6.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Book of Psalms 9230a8.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Hand of Fate 930b6b.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Warning Shot 9eeca1.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Take the Initiative a88e8d.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Relentless af3efd.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Delay the Inevitable af4c03.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Alice Luxley b2fedd.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Eat lead! b58038.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Inspiring Presence b789ac.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Enchanted Blade bd34f2.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card On The Hunt bf3261.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Steadfast c634a0.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Scene of the Crime ca17b8.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Trench Knife ca8448.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Trusted cc23ea.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card .45 Automatic ce4f97.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Guard Dog db2e8d.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Boxing Gloves db4a43.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card First Aid e29603.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Blackjack e4c7c9.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Vicious Blow ea9ad0.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card True Grit f2f912.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card Grete Wagner f6dfe5.yaml' +- !include 'Custom_Model_Bag Guardian bc3210/Card .32 Colt f8d22e.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: '' +DragSelectable: true +GMNotes: '' +GUID: bc3210 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Guardian bc3210.ttslua' +LuaScriptState: '{"ml":{"03367f":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208070911467075,"y":270.004760742188,"z":0.0167728867381811}},"037dc7":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151224136353,"z":69.4412155151367},"rot":{"x":0.0208070278167725,"y":270.005157470703,"z":0.016772884875536}},"0a7642":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.0208136718720198,"y":269.982269287109,"z":0.0167649462819099}},"0da344":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30285882949829,"z":74.0412216186523},"rot":{"x":0.0208069160580635,"y":270.005218505859,"z":0.0167732164263725}},"184380":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740916728973,"z":83.1903610229492},"rot":{"x":0.0208060517907143,"y":270.008636474609,"z":0.0167742259800434}},"19507d":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208068899810314,"y":270.005187988281,"z":0.0167731214314699}},"195b7f":{"lock":false,"pos":{"x":53.2284660339355,"y":1.2974728345871,"z":55.641185760498},"rot":{"x":0.0208070483058691,"y":270.005126953125,"z":0.0167729463428259}},"20645e":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3075715303421,"z":90.141242980957},"rot":{"x":0.0208143573254347,"y":269.980102539063,"z":0.0167639069259167}},"22bb1e":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7452774047852},"rot":{"x":0.0208145808428526,"y":269.979919433594,"z":0.0167638100683689}},"22c65b":{"lock":false,"pos":{"x":53.228572845459,"y":1.30555176734924,"z":83.2412338256836},"rot":{"x":0.0208071786910295,"y":270.004638671875,"z":0.0167727079242468}},"273584":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30151224136353,"z":69.4412231445313},"rot":{"x":0.0208144839853048,"y":269.979858398438,"z":0.0167638082057238}},"273797":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29167747497559,"z":51.0597610473633},"rot":{"x":0.0208138637244701,"y":269.981811523438,"z":0.0167645085602999}},"293e8d":{"lock":false,"pos":{"x":37.4159774780273,"y":1.2957751750946,"z":69.4607086181641},"rot":{"x":0.0208194348961115,"y":269.96630859375,"z":0.0167593434453011}},"310d95":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208068396896124,"y":270.005554199219,"z":0.0167730785906315}},"3319be":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3082447052002,"z":92.4412307739258},"rot":{"x":0.0208146441727877,"y":269.979644775391,"z":0.0167635250836611}},"3a4576":{"lock":false,"pos":{"x":40.9601860046387,"y":1.29571235179901,"z":64.8486633300781},"rot":{"x":0.0208133514970541,"y":269.981994628906,"z":0.0167643446475267}},"45a012":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100215435028,"z":48.7527389526367},"rot":{"x":0.0208139382302761,"y":269.981750488281,"z":0.0167645905166864}},"460cb8":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302084445953,"z":55.6492195129395},"rot":{"x":0.0208137258887291,"y":269.98193359375,"z":0.016764797270298}},"4719d3":{"lock":false,"pos":{"x":40.960205078125,"y":1.29638564586639,"z":67.1486892700195},"rot":{"x":0.0208132304251194,"y":269.981994628906,"z":0.0167643893510103}},"493908":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0597648620605},"rot":{"x":0.0208142362535,"y":269.981781005859,"z":0.0167653206735849}},"4b1e76":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29100203514099,"z":48.7527351379395},"rot":{"x":0.020814212039113,"y":269.981750488281,"z":0.0167643204331398}},"4f6ede":{"lock":false,"pos":{"x":40.960205078125,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208136234432459,"y":269.982269287109,"z":0.016764622181654}},"52c686":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.02081448584795,"y":269.979675292969,"z":0.0167636964470148}},"55ce00":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30355060100555,"z":80.9527740478516},"rot":{"x":0.0208069998770952,"y":270.005187988281,"z":0.0167731419205666}},"55fc3d":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30183446407318,"z":90.1607437133789},"rot":{"x":0.020808320492506,"y":269.998931884766,"z":0.0167705565690994}},"591f6f":{"lock":false,"pos":{"x":40.9601898193359,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208139047026634,"y":269.981811523438,"z":0.0167643539607525}},"59390b":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29840540885925,"z":74.048698425293},"rot":{"x":0.0208086222410202,"y":269.999328613281,"z":0.0167710185050964}},"5b0f86":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30218553543091,"z":71.7412261962891},"rot":{"x":0.0208142660558224,"y":269.980529785156,"z":0.0167641099542379}},"5ec2d2":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.0208143461495638,"y":269.982147216797,"z":0.0167657192796469}},"5fa99a":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557036399841,"z":87.8527908325195},"rot":{"x":0.0208068955689669,"y":270.005157470703,"z":0.0167733505368233}},"60acf8":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814684391022,"z":57.9409637451172},"rot":{"x":0.0208073649555445,"y":270.004699707031,"z":0.0167727395892143}},"63b3e5":{"lock":false,"pos":{"x":53.2285957336426,"y":1.296799659729,"z":53.3411674499512},"rot":{"x":0.0208146069198847,"y":269.979583740234,"z":0.0167639888823032}},"660d08":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607269287109},"rot":{"x":0.0208135545253754,"y":269.981781005859,"z":0.0167634300887585}},"6aa477":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30691683292389,"z":92.4527816772461},"rot":{"x":0.020806921645999,"y":270.005432128906,"z":0.0167733915150166}},"6d3fdf":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949259757996,"z":62.5411834716797},"rot":{"x":0.0208067242056131,"y":270.006042480469,"z":0.0167733654379845}},"724c85":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30016577243805,"z":64.8410797119141},"rot":{"x":0.0208067856729031,"y":270.006134033203,"z":0.0167732369154692}},"7646d6":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.0208070110529661,"y":270.005859375,"z":0.0167735200375319}},"7b6fd8":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30420529842377,"z":78.6412200927734},"rot":{"x":0.020807096734643,"y":270.0048828125,"z":0.0167731232941151}},"7db258":{"lock":false,"pos":{"x":37.4159851074219,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208097919821739,"y":269.999328613281,"z":0.0167713314294815}},"7dc5e1":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208050832152367,"y":270.011932373047,"z":0.0167753808200359}},"7dce77":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208137426525354,"y":269.981811523438,"z":0.0167646948248148}},"7ec473":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208145100623369,"y":269.979675292969,"z":0.0167635511606932}},"826897":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208148453384638,"y":269.981719970703,"z":0.0167649444192648}},"82ee35":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208145175129175,"y":269.981689453125,"z":0.0167654789984226}},"840b3d":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846811294556,"z":78.6607131958008},"rot":{"x":0.0208146180957556,"y":269.981689453125,"z":0.0167655181139708}},"8475cc":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30353200435638,"z":76.3412170410156},"rot":{"x":0.0208068881183863,"y":270.006164550781,"z":0.0167732499539852}},"86cf73":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903579711914},"rot":{"x":0.020816283300519,"y":269.973419189453,"z":0.0167614966630936}},"88cd33":{"lock":false,"pos":{"x":58.3843688964844,"y":1.30875587463379,"z":87.7903823852539},"rot":{"x":0.0208063516765833,"y":270.007446289063,"z":0.0167740974575281}},"8a25a0":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422389507294,"z":83.2527770996094},"rot":{"x":0.0208070613443851,"y":270.005126953125,"z":0.0167729742825031}},"8b7da2":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30042517185211,"z":80.9486999511719},"rot":{"x":0.0208137836307287,"y":269.982177734375,"z":0.0167644713073969}},"8c5d4c":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.020806884393096,"y":270.005615234375,"z":0.0167731009423733}},"8d6ae6":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.020815335214138,"y":269.980072021484,"z":0.0167642217129469}},"9230a8":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773223400116,"z":71.7486801147461},"rot":{"x":0.0208087638020515,"y":269.999298095703,"z":0.0167709235101938}},"92c7df":{"lock":false,"pos":{"x":58.3838233947754,"y":1.32234311103821,"z":76.2903518676758},"rot":{"x":0.0208156257867813,"y":269.980285644531,"z":0.0167646165937185}},"930b6b":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30083906650543,"z":67.1411056518555},"rot":{"x":0.0208088103681803,"y":269.999389648438,"z":0.0167707744985819}},"99765a":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208069384098053,"y":270.006042480469,"z":0.0167734976857901}},"9eeca1":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30220413208008,"z":76.3527679443359},"rot":{"x":0.0208071004599333,"y":270.004974365234,"z":0.0167730562388897}},"a88e8d":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30606269836426,"z":78.5903549194336},"rot":{"x":0.0208041407167912,"y":270.014892578125,"z":0.0167764984071255}},"ad73d9":{"lock":false,"pos":{"x":44.5133094787598,"y":1.3067045211792,"z":92.4607315063477},"rot":{"x":0.0208088736981153,"y":269.998962402344,"z":0.0167707800865173}},"af3efd":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607162475586},"rot":{"x":0.020814435556531,"y":269.980285644531,"z":0.0167641080915928}},"af4c03":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208071358501911,"y":270.0048828125,"z":0.0167728383094072}},"b2fedd":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208136811852455,"y":269.982238769531,"z":0.0167647060006857}},"b58038":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30487847328186,"z":80.9412231445313},"rot":{"x":0.0208067949861288,"y":270.006042480469,"z":0.0167733337730169}},"b789ac":{"lock":false,"pos":{"x":58.3838272094727,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.020805262029171,"y":270.011291503906,"z":0.0167752914130688}},"bd34f2":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638576507568,"z":67.1486740112305},"rot":{"x":0.0208139177411795,"y":269.981567382813,"z":0.01676463522017}},"bf3261":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612374305725,"z":51.0517272949219},"rot":{"x":0.0208069682121277,"y":270.005340576172,"z":0.0167731642723084}},"c021fd":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30757141113281,"z":90.141242980957},"rot":{"x":0.0208068154752254,"y":270.006042480469,"z":0.0167733337730169}},"c634a0":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208052285015583,"y":270.011688232422,"z":0.0167755782604218}},"ca17b8":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208072159439325,"y":270.004486083984,"z":0.0167728140950203}},"ca8448":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712164402008,"z":74.0607147216797},"rot":{"x":0.0208148509263992,"y":269.981536865234,"z":0.0167648028582335}},"cc23ea":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30287742614746,"z":78.6527709960938},"rot":{"x":0.0208071172237396,"y":270.005035400391,"z":0.0167727582156658}},"ce4f97":{"lock":false,"pos":{"x":40.9602012634277,"y":1.30244481563568,"z":87.8486938476563},"rot":{"x":0.0208135992288589,"y":269.982330322266,"z":0.0167646650224924}},"db2e8d":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369390010834,"z":57.9485626220703},"rot":{"x":0.0208137389272451,"y":269.98193359375,"z":0.0167646091431379}},"db4a43":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486770629883},"rot":{"x":0.0208143647760153,"y":269.980041503906,"z":0.0167637933045626}},"e29603":{"lock":false,"pos":{"x":40.9601745605469,"y":1.2957124710083,"z":64.8486557006836},"rot":{"x":0.020813837647438,"y":269.982055664063,"z":0.0167643800377846}},"e4c7c9":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.0208138786256313,"y":269.981994628906,"z":0.0167646780610085}},"ea9ad0":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208039283752441,"y":270.015808105469,"z":0.0167768690735102}},"edd051":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30218553543091,"z":71.7412185668945},"rot":{"x":0.0208070613443851,"y":270.004791259766,"z":0.0167730432003737}},"f2f912":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208147224038839,"y":269.981842041016,"z":0.0167650356888771}},"f6dfe5":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436612129211,"z":60.2487869262695},"rot":{"x":0.0208144374191761,"y":269.979736328125,"z":0.0167638752609491}},"f8d22e":{"lock":false,"pos":{"x":40.9602012634277,"y":1.30379140377045,"z":92.4486923217773},"rot":{"x":0.0208144206553698,"y":269.979888916016,"z":0.016763923689723}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.61 + posY: 1.66 + posZ: 75.88 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card .32 Colt f8d22e.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card .32 Colt f8d22e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card .32 Colt f8d22e.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card .32 Colt f8d22e.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card .35 Winchester 0a7642.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card .35 Winchester 0a7642.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card .35 Winchester 0a7642.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card .35 Winchester 0a7642.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card .45 Automatic ce4f97.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card .45 Automatic ce4f97.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card .45 Automatic ce4f97.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card .45 Automatic ce4f97.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card .45 Thompson 4f6ede.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card .45 Thompson 4f6ede.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card .45 Thompson 4f6ede.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card .45 Thompson 4f6ede.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Alice Luxley b2fedd.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Alice Luxley b2fedd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Alice Luxley b2fedd.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Alice Luxley b2fedd.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Bandolier 8b7da2.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Bandolier 8b7da2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Bandolier 8b7da2.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Bandolier 8b7da2.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Beat Cop 591f6f.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Beat Cop 591f6f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Beat Cop 591f6f.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Beat Cop 591f6f.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Blackjack e4c7c9.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Blackjack e4c7c9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Blackjack e4c7c9.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Blackjack e4c7c9.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Blessed Blade 59390b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Blessed Blade 59390b.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Blessed Blade 59390b.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Blessed Blade 59390b.yaml index 301356ba5..e535f4f21 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Blessed Blade 59390b.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Blessed Blade 59390b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266312 +CardID: 554112 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Book of Psalms 9230a8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Book of Psalms 9230a8.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Book of Psalms 9230a8.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Book of Psalms 9230a8.yaml index f29444ecb..792ad8c17 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Book of Psalms 9230a8.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Book of Psalms 9230a8.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266311 +CardID: 554711 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Boxing Gloves db4a43.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Boxing Gloves db4a43.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Boxing Gloves db4a43.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Boxing Gloves db4a43.yaml index 3a8a2c3b1..d2bdc5b30 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Boxing Gloves db4a43.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Boxing Gloves db4a43.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553703 +CardID: 555003 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5537': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Clean Them Out 3319be.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Clean Them Out 3319be.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Clean Them Out 3319be.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Clean Them Out 3319be.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Counterpunch 20645e.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Counterpunch 20645e.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Counterpunch 20645e.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Counterpunch 20645e.yaml index 094247018..3c5228142 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Counterpunch 20645e.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Counterpunch 20645e.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 552710 +CardID: 553910 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5527': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Daring 86cf73.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Daring 86cf73.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Daring 86cf73.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Daring 86cf73.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Delay the Inevitable af4c03.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Delay the Inevitable af4c03.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Delay the Inevitable af4c03.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Delay the Inevitable af4c03.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Dodge 7646d6.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Dodge 7646d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Dodge 7646d6.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Dodge 7646d6.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Dynamite Blast 22c65b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Dynamite Blast 22c65b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Dynamite Blast 22c65b.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Dynamite Blast 22c65b.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Eat lead! b58038.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Eat lead! b58038.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Eat lead! b58038.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Eat lead! b58038.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Emergency Aid 7b6fd8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Emergency Aid 7b6fd8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Emergency Aid 7b6fd8.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Emergency Aid 7b6fd8.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Enchanted Blade bd34f2.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Enchanted Blade bd34f2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Enchanted Blade bd34f2.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Enchanted Blade bd34f2.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Evidence! 8475cc.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Evidence! 8475cc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Evidence! 8475cc.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Evidence! 8475cc.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card First Aid e29603.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card First Aid e29603.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card First Aid e29603.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card First Aid e29603.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card First Watch 0da344.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card First Watch 0da344.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card First Watch 0da344.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card First Watch 0da344.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Flesh Ward 52c686.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Flesh Ward 52c686.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Flesh Ward 52c686.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Flesh Ward 52c686.yaml index a72be294a..21c76af19 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Flesh Ward 52c686.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Flesh Ward 52c686.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553104 +CardID: 554004 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5531': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Get over here! 5b0f86.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Get over here! 5b0f86.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Get over here! 5b0f86.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Get over here! 5b0f86.yaml index 73af8fc20..cc72515f3 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Get over here! 5b0f86.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Get over here! 5b0f86.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553212 +CardID: 554212 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5532': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Glory 273584.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Glory 273584.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Glory 273584.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Glory 273584.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Grete Wagner f6dfe5.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Grete Wagner f6dfe5.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Grete Wagner f6dfe5.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Grete Wagner f6dfe5.yaml index bf89744ee..6a46a805a 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Grete Wagner f6dfe5.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Grete Wagner f6dfe5.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553805 +CardID: 555105 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5538': + '5551': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Guard Dog db2e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Guard Dog db2e8d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Guard Dog db2e8d.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Guard Dog db2e8d.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Hallowed Mirror 460cb8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Hallowed Mirror 460cb8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Hallowed Mirror 460cb8.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Hallowed Mirror 460cb8.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Hand of Fate 930b6b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Hand of Fate 930b6b.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Hand of Fate 930b6b.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Hand of Fate 930b6b.yaml index 1c0c1968b..c2d1fedfd 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Hand of Fate 930b6b.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Hand of Fate 930b6b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266314 +CardID: 554814 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Handcuffs 7dce77.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Handcuffs 7dce77.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Handcuffs 7dce77.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Handcuffs 7dce77.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Heroic Rescue 724c85.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Heroic Rescue 724c85.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Heroic Rescue 724c85.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Heroic Rescue 724c85.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card I'll see you in hell! 19507d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card I'll see you in hell! 19507d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card I'll see you in hell! 19507d.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card I'll see you in hell! 19507d.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card If it bleeds... 6d3fdf.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card If it bleeds... 6d3fdf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card If it bleeds... 6d3fdf.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card If it bleeds... 6d3fdf.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Inspiring Presence b789ac.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Inspiring Presence b789ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Inspiring Presence b789ac.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Inspiring Presence b789ac.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Interrogate 60acf8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Interrogate 60acf8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Interrogate 60acf8.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Interrogate 60acf8.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Intrepid 88cd33.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Intrepid 88cd33.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Intrepid 88cd33.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Intrepid 88cd33.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Leadership 7dc5e1.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Leadership 7dc5e1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Leadership 7dc5e1.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Leadership 7dc5e1.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Let me handle this! 195b7f.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Let me handle this! 195b7f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Let me handle this! 195b7f.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Let me handle this! 195b7f.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Machete 273797.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Machete 273797.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Machete 273797.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Machete 273797.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Monster Slayer 63b3e5.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Monster Slayer 63b3e5.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Monster Slayer 63b3e5.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Monster Slayer 63b3e5.yaml index 313dc85af..23314371d 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Monster Slayer 63b3e5.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Monster Slayer 63b3e5.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553314 +CardID: 554314 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5533': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card On The Hunt bf3261.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card On The Hunt bf3261.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card On The Hunt bf3261.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card On The Hunt bf3261.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card One-Two Punch 22bb1e.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card One-Two Punch 22bb1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card One-Two Punch 22bb1e.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card One-Two Punch 22bb1e.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Physical Training 45a012.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Physical Training 45a012.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Physical Training 45a012.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Physical Training 45a012.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Prepared for the Worst 6aa477.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Prepared for the Worst 6aa477.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Prepared for the Worst 6aa477.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Prepared for the Worst 6aa477.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Relentless af3efd.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Relentless af3efd.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Relentless af3efd.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Relentless af3efd.yaml index da871c729..ed267e250 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Relentless af3efd.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Relentless af3efd.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553607 +CardID: 554907 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5536': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Riot Whistle 55fc3d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Riot Whistle 55fc3d.yaml new file mode 100644 index 000000000..3bbfc4d03 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Riot Whistle 55fc3d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 55fc3d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Riot Whistle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.62 + posY: 1.41 + posZ: 75.88 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Rite of Sanctification 7db258.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Rite of Sanctification 7db258.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Rite of Sanctification 7db258.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Rite of Sanctification 7db258.yaml index 9d26f994c..afe5b2b49 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Rite of Sanctification 7db258.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Rite of Sanctification 7db258.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266313 +CardID: 554413 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Safeguard 8d6ae6.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Safeguard 8d6ae6.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Safeguard 8d6ae6.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Safeguard 8d6ae6.yaml index 81d44b52e..96d2f2ca3 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Safeguard 8d6ae6.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Safeguard 8d6ae6.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553508 +CardID: 554608 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5535': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Scene of the Crime ca17b8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Scene of the Crime ca17b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Scene of the Crime ca17b8.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Scene of the Crime ca17b8.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Second Wind 5fa99a.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Second Wind 5fa99a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Second Wind 5fa99a.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Second Wind 5fa99a.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Self-Sacrifice 184380.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Self-Sacrifice 184380.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Self-Sacrifice 184380.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Self-Sacrifice 184380.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Solemn Vow 660d08.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Solemn Vow 660d08.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Solemn Vow 660d08.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Solemn Vow 660d08.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Something Worth Fighting For 826897.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Something Worth Fighting For 826897.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Something Worth Fighting For 826897.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Something Worth Fighting For 826897.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Stand Together 7ec473.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Stand Together 7ec473.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Stand Together 7ec473.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Stand Together 7ec473.yaml index 2fef03fd5..9efd737fa 100644 --- a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Stand Together 7ec473.yaml +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Stand Together 7ec473.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553416 +CardID: 554516 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5534': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Steadfast c634a0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Steadfast c634a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Steadfast c634a0.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Steadfast c634a0.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Survival Knife 840b3d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Survival Knife 840b3d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Survival Knife 840b3d.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Survival Knife 840b3d.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Take the Initiative a88e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Take the Initiative a88e8d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Take the Initiative a88e8d.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Take the Initiative a88e8d.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Taunt 8a25a0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Taunt 8a25a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Taunt 8a25a0.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Taunt 8a25a0.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Teamwork 55ce00.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Teamwork 55ce00.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Teamwork 55ce00.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Teamwork 55ce00.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Tetsuo Mori 82ee35.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Tetsuo Mori 82ee35.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Tetsuo Mori 82ee35.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Tetsuo Mori 82ee35.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Trench Knife ca8448.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Trench Knife ca8448.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Trench Knife ca8448.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Trench Knife ca8448.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card True Grit f2f912.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card True Grit f2f912.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card True Grit f2f912.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card True Grit f2f912.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Trusted cc23ea.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Trusted cc23ea.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Trusted cc23ea.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Trusted cc23ea.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Venturer 293e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Venturer 293e8d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Venturer 293e8d.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Venturer 293e8d.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Vicious Blow ea9ad0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Vicious Blow ea9ad0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Vicious Blow ea9ad0.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Vicious Blow ea9ad0.yaml diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Warning Shot 9eeca1.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Warning Shot 9eeca1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian 18cab0/Card Warning Shot 9eeca1.yaml rename to unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian bc3210/Card Warning Shot 9eeca1.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a.yaml index 64ae6de41..9cff7b252 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a.yaml @@ -4,7 +4,9 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Sacred Covenant (2) 87226d.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Righteous Hunt (1) 491c09.yaml' - !include 'Custom_Model_Bag Guardian cd002a/Card Overpower (2) 017e1f.yaml' - !include 'Custom_Model_Bag Guardian cd002a/Card Lesson Learned (2) 037b2e.yaml' - !include 'Custom_Model_Bag Guardian cd002a/Card Empty Vessel (4) 043971.yaml' @@ -98,7 +100,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Guardian cd002a.ttslua' -LuaScriptState: '{"ml":{"017e1f":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950915813446,"z":-49.7709617614746},"rot":{"x":0.0208087116479874,"y":269.999145507813,"z":0.0167708992958069}},"037b2e":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29687976837158,"z":-86.5202484130859},"rot":{"x":0.0208094529807568,"y":269.997528076172,"z":0.0167702399194241}},"043971":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.008430480957},"rot":{"x":0.0208088364452124,"y":269.998962402344,"z":0.0167706701904535}},"066c18":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.4083099365234},"rot":{"x":0.020812600851059,"y":269.986053466797,"z":0.0167660694569349}},"0c278c":{"lock":false,"pos":{"x":49.274528503418,"y":1.3063223361969,"z":-49.708812713623},"rot":{"x":0.0208088085055351,"y":269.998748779297,"z":0.0167706850916147}},"0c2f37":{"lock":false,"pos":{"x":52.9442481994629,"y":1.31544828414917,"z":-70.4206771850586},"rot":{"x":0.0208147875964642,"y":269.978454589844,"z":0.742669463157654}},"1408ad":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208151116967201,"y":269.977447509766,"z":0.0167629327625036}},"14424c":{"lock":false,"pos":{"x":52.9284210205078,"y":1.29620397090912,"z":-88.8097076416016},"rot":{"x":0.0208087153732777,"y":269.9990234375,"z":0.0167709030210972}},"14dcc4":{"lock":false,"pos":{"x":49.2784996032715,"y":1.30565047264099,"z":-52.0087699890137},"rot":{"x":0.0208091102540493,"y":269.998779296875,"z":0.016771474853158}},"15fa11":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036306381226,"z":-58.9200057983398},"rot":{"x":0.0208087470382452,"y":269.999755859375,"z":0.0167711228132248}},"17f807":{"lock":false,"pos":{"x":40.2899856567383,"y":1.30103969573975,"z":-56.6086387634277},"rot":{"x":0.0208086650818586,"y":269.999176025391,"z":0.0167710445821285}},"187591":{"lock":false,"pos":{"x":52.9419898986816,"y":1.30221772193909,"z":-68.2735443115234},"rot":{"x":0.0208369139581919,"y":269.977355957031,"z":0.0166110564023256}},"1c0bcd":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083068847656},"rot":{"x":0.0208127722144127,"y":269.985900878906,"z":0.0167660973966122}},"1e7f9a":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208085160702467,"y":269.999542236328,"z":0.0167709700763226}},"1fc1f4":{"lock":false,"pos":{"x":40.2899971008301,"y":1.29430389404297,"z":-79.6198883056641},"rot":{"x":0.0208158474415541,"y":269.974731445313,"z":0.0167619977146387}},"218e04":{"lock":false,"pos":{"x":40.2900657653809,"y":1.30170965194702,"z":-54.3199005126953},"rot":{"x":0.0208080373704433,"y":270.001770019531,"z":0.0167718436568975}},"22256f":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208036489784718,"y":270.016387939453,"z":0.016777016222477}},"2901ee":{"lock":false,"pos":{"x":40.2900657653809,"y":1.29632365703583,"z":-72.7199859619141},"rot":{"x":0.0208085849881172,"y":270.000122070313,"z":0.0167713407427073}},"2b76c6":{"lock":false,"pos":{"x":52.9369277954102,"y":1.30024325847626,"z":-75.0206756591797},"rot":{"x":0.0208088699728251,"y":269.997833251953,"z":0.0167694501578808}},"2badf6":{"lock":false,"pos":{"x":49.278491973877,"y":1.30363070964813,"z":-58.9087905883789},"rot":{"x":0.0208089184015989,"y":269.998748779297,"z":0.0167706552892923}},"32b458":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208086594939232,"y":269.999206542969,"z":0.0167707484215498}},"33fb3a":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208096783608198,"y":269.997863769531,"z":0.0167707931250334}},"36ffa9":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208150930702686,"y":269.977416992188,"z":0.016762861981988}},"390a86":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30565047264099,"z":-52.0087776184082},"rot":{"x":0.0208108201622963,"y":269.992736816406,"z":0.0167682971805334}},"3a622d":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29836189746857,"z":-61.2084426879883},"rot":{"x":0.0208088252693415,"y":269.998962402344,"z":0.0167707577347755}},"3accaf":{"lock":false,"pos":{"x":49.278491973877,"y":1.3049772977829,"z":-54.3087844848633},"rot":{"x":0.0208089053630829,"y":269.998748779297,"z":0.0167706366628408}},"3b042e":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29768872261047,"z":-63.5084457397461},"rot":{"x":0.0208088848739862,"y":269.998962402344,"z":0.0167709160596132}},"3df5fb":{"lock":false,"pos":{"x":52.9442176818848,"y":1.3063051700592,"z":-54.3203392028809},"rot":{"x":0.0208086371421814,"y":270,"z":0.0167711433023214}},"415ca2":{"lock":false,"pos":{"x":52.9442100524902,"y":1.29889953136444,"z":-79.6202392578125},"rot":{"x":0.0208085756748915,"y":269.999176025391,"z":0.0167709477245808}},"43b3a5":{"lock":false,"pos":{"x":49.278491973877,"y":1.30161106586456,"z":-65.8086547851563},"rot":{"x":0.0208033956587315,"y":270.020324707031,"z":0.0167789477854967}},"467460":{"lock":false,"pos":{"x":52.9189834594727,"y":1.29620051383972,"z":-88.809700012207},"rot":{"x":0.0208094883710146,"y":269.997192382813,"z":0.016770800575614}},"537351":{"lock":false,"pos":{"x":49.2767753601074,"y":1.30699634552002,"z":-47.4087905883789},"rot":{"x":0.0208087302744389,"y":269.998748779297,"z":0.0167708117514849}},"54293e":{"lock":false,"pos":{"x":40.289966583252,"y":1.29295742511749,"z":-84.2198791503906},"rot":{"x":0.0208087712526321,"y":269.998901367188,"z":0.0167708322405815}},"5761c7":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30563187599182,"z":-56.6203498840332},"rot":{"x":0.0208151452243328,"y":269.977386474609,"z":0.0167629923671484}},"596620":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208153128623962,"y":269.977416992188,"z":0.0167630389332771}},"59bdfb":{"lock":false,"pos":{"x":49.278491973877,"y":1.30430400371552,"z":-56.6087875366211},"rot":{"x":0.0208091381937265,"y":269.998748779297,"z":0.0167705006897449}},"5a4bb5":{"lock":false,"pos":{"x":49.278491973877,"y":1.30295753479004,"z":-61.2087936401367},"rot":{"x":0.0208086315542459,"y":269.999694824219,"z":0.0167710706591606}},"5a7137":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208086967468262,"y":269.999206542969,"z":0.0167707167565823}},"5cfb72":{"lock":false,"pos":{"x":40.2900848388672,"y":1.2922842502594,"z":-86.5199203491211},"rot":{"x":0.0208037253469229,"y":270.016479492188,"z":0.0167770199477673}},"5efc92":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208152122795582,"y":269.977416992188,"z":0.0167629234492779}},"62392c":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208088885992765,"y":269.999450683594,"z":0.0167708992958069}},"639a09":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7083969116211},"rot":{"x":0.0208125412464142,"y":269.985961914063,"z":0.0167660769075155}},"650903":{"lock":false,"pos":{"x":40.2920799255371,"y":1.29363143444061,"z":-81.9201278686523},"rot":{"x":0.0208036415278912,"y":270.016571044922,"z":0.0167771019041538}},"661c3f":{"lock":false,"pos":{"x":49.278491973877,"y":1.30228424072266,"z":-63.5088005065918},"rot":{"x":0.0208086743950844,"y":269.999084472656,"z":0.0167708806693554}},"6b130d":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.0208151154220104,"y":269.977416992188,"z":0.0167628526687622}},"6c6340":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038177967072,"z":-54.3084411621094},"rot":{"x":0.020809069275856,"y":269.998962402344,"z":0.0167707540094852}},"7ab680":{"lock":false,"pos":{"x":36.624340057373,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.020812539383769,"y":269.986053466797,"z":0.0167659856379032}},"7dc42a":{"lock":false,"pos":{"x":40.2911109924316,"y":1.29564726352692,"z":-75.0319519042969},"rot":{"x":0.0208005644381046,"y":270.027770996094,"z":0.0167813431471586}},"80d5e3":{"lock":false,"pos":{"x":40.2742652893066,"y":1.29160833358765,"z":-88.8093643188477},"rot":{"x":0.0208036433905363,"y":270.016479492188,"z":0.0167771484702826}},"80fafa":{"lock":false,"pos":{"x":58.0996551513672,"y":1.31018245220184,"z":-47.4709815979004},"rot":{"x":0.0208081807941198,"y":270.001251220703,"z":0.0167715102434158}},"85fe46":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30430400371552,"z":-56.6087913513184},"rot":{"x":0.0208089351654053,"y":269.998840332031,"z":0.0167702734470367}},"88d2ba":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208149738609791,"y":269.977447509766,"z":0.016763074323535}},"88fdeb":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208089631050825,"y":269.999206542969,"z":0.0167710203677416}},"8f5533":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30883586406708,"z":-52.070972442627},"rot":{"x":0.0208083353936672,"y":270.000335693359,"z":0.0167711824178696}},"8ffa44":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30161106586456,"z":-65.8086547851563},"rot":{"x":0.0208098106086254,"y":269.998748779297,"z":0.0167710836976767}},"92436b":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.7203369140625},"rot":{"x":0.0208087135106325,"y":269.999206542969,"z":0.0167707856744528}},"93381d":{"lock":false,"pos":{"x":52.9462356567383,"y":1.2982269525528,"z":-81.9204788208008},"rot":{"x":0.0208091642707586,"y":269.997680664063,"z":0.0167702808976173}},"9e7f6a":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428540706635,"z":-61.2203521728516},"rot":{"x":0.0208084508776665,"y":270,"z":0.0167711284011602}},"a0e05d":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208150893449783,"y":269.977416992188,"z":0.0167628861963749}},"a26425":{"lock":false,"pos":{"x":36.6243438720703,"y":1.3017281293869,"z":-49.7084579467773},"rot":{"x":0.02080362662673,"y":270.016357421875,"z":0.0167771000415087}},"ab51ce":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29903519153595,"z":-58.9084396362305},"rot":{"x":0.0208090394735336,"y":269.998779296875,"z":0.0167716480791569}},"ab620e":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208151750266552,"y":269.977416992188,"z":0.0167628806084394}},"afef79":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084442138672},"rot":{"x":0.0208088904619217,"y":269.998962402344,"z":0.0167706850916147}},"b39b78":{"lock":false,"pos":{"x":40.2741165161133,"y":1.29093325138092,"z":-91.1157913208008},"rot":{"x":0.0208087246865034,"y":269.998901367188,"z":0.0167706664651632}},"b7c4cb":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30737829208374,"z":-54.3203010559082},"rot":{"x":0.0208084303885698,"y":270.000091552734,"z":0.016771150752902}},"bdffae":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.020808856934309,"y":269.999633789063,"z":0.0167709700763226}},"c1d796":{"lock":false,"pos":{"x":40.2900390625,"y":1.29497718811035,"z":-77.3199005126953},"rot":{"x":0.0208085887134075,"y":269.999969482422,"z":0.0167713109403849}},"c4018c":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29957270622253,"z":-77.3202590942383},"rot":{"x":0.0208092611283064,"y":269.997711181641,"z":0.016770463436842}},"c5aa89":{"lock":false,"pos":{"x":52.9284706115723,"y":1.29687416553497,"z":-86.5200881958008},"rot":{"x":0.0208092648535967,"y":269.99755859375,"z":0.0167701691389084}},"cdb540":{"lock":false,"pos":{"x":40.2899551391602,"y":1.29295742511749,"z":-84.2199020385742},"rot":{"x":0.0208042934536934,"y":270.016510009766,"z":0.0167777873575687}},"d93397":{"lock":false,"pos":{"x":52.9282722473145,"y":1.2955287694931,"z":-91.1161346435547},"rot":{"x":0.020809281617403,"y":269.997436523438,"z":0.0167701691389084}},"ddc9f8":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1158065795898},"rot":{"x":0.0208043809980154,"y":270.016479492188,"z":0.0167777389287949}},"dddd59":{"lock":false,"pos":{"x":44.2289009094238,"y":1.30152595043182,"z":-63.5009002685547},"rot":{"x":0.0208084173500538,"y":270,"z":0.016771262511611}},"de2d0a":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30950915813446,"z":-49.7709693908691},"rot":{"x":0.0208082906901836,"y":270.001678466797,"z":0.0167713053524494}},"e1748c":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208088457584381,"y":269.998962402344,"z":0.0167707521468401}},"e1ef43":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208084676414728,"y":269.999664306641,"z":0.0167711470276117}},"e3ae5c":{"lock":false,"pos":{"x":52.9414558410645,"y":1.29755198955536,"z":-84.2202682495117},"rot":{"x":0.0208093579858541,"y":269.997375488281,"z":0.0167702063918114}},"e55fe0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29889953136444,"z":-79.6202621459961},"rot":{"x":0.0208096522837877,"y":269.997619628906,"z":0.0167706999927759}},"e56d1d":{"lock":false,"pos":{"x":40.2900466918945,"y":1.2976701259613,"z":-68.119873046875},"rot":{"x":0.0208088513463736,"y":269.999420166016,"z":0.0167710110545158}},"f54b74":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083038330078},"rot":{"x":0.0208126213401556,"y":269.986022949219,"z":0.0167660675942898}}}}' +LuaScriptState: '{"ml":{"017e1f":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950927734375,"z":-49.7709617614746},"rot":{"x":0.0208088755607605,"y":269.999145507813,"z":0.016770975664258}},"037b2e":{"lock":false,"pos":{"x":52.9284248352051,"y":1.29620385169983,"z":-88.8097076416016},"rot":{"x":0.0208103228360415,"y":269.997467041016,"z":0.0167707335203886}},"043971":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208090879023075,"y":269.998962402344,"z":0.0167703498154879}},"066c18":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29499578475952,"z":-72.7083892822266},"rot":{"x":0.0208123717457056,"y":269.986083984375,"z":0.0167650487273932}},"0c278c":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30565047264099,"z":-52.0087776184082},"rot":{"x":0.0208090078085661,"y":269.998718261719,"z":0.0167703367769718}},"0c2f37":{"lock":false,"pos":{"x":52.944206237793,"y":1.30091917514801,"z":-72.7202529907227},"rot":{"x":0.0208148881793022,"y":269.978485107422,"z":0.016765171661973}},"1408ad":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293905735016,"z":-65.8202209472656},"rot":{"x":0.0208152998238802,"y":269.977447509766,"z":0.0167627055197954}},"14424c":{"lock":false,"pos":{"x":52.9282646179199,"y":1.29552865028381,"z":-91.1161499023438},"rot":{"x":0.0208097212016582,"y":269.998962402344,"z":0.0167710948735476}},"14dcc4":{"lock":false,"pos":{"x":49.2784881591797,"y":1.3049772977829,"z":-54.3087882995605},"rot":{"x":0.0208089277148247,"y":269.998748779297,"z":0.0167703647166491}},"15fa11":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036318302155,"z":-58.9200057983398},"rot":{"x":0.020808819681406,"y":269.999755859375,"z":0.0167711116373539}},"17f807":{"lock":false,"pos":{"x":40.2899856567383,"y":1.30103969573975,"z":-56.6086387634277},"rot":{"x":0.0208087936043739,"y":269.999176025391,"z":0.0167708341032267}},"187591":{"lock":false,"pos":{"x":52.9419898986816,"y":1.30221998691559,"z":-68.2735443115234},"rot":{"x":0.0208150614053011,"y":269.977355957031,"z":0.0167630184441805}},"1c0bcd":{"lock":false,"pos":{"x":36.624340057373,"y":1.29566895961761,"z":-70.4083023071289},"rot":{"x":0.0208125542849302,"y":269.985961914063,"z":0.0167640633881092}},"1e7f9a":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208088736981153,"y":269.999542236328,"z":0.0167710650712252}},"1fc1f4":{"lock":false,"pos":{"x":40.2920837402344,"y":1.29363143444061,"z":-81.9201202392578},"rot":{"x":0.020816495642066,"y":269.974792480469,"z":0.0167621523141861}},"218e04":{"lock":false,"pos":{"x":40.2900657653809,"y":1.30170965194702,"z":-54.3199005126953},"rot":{"x":0.0208080559968948,"y":270.001770019531,"z":0.0167718771845102}},"22256f":{"lock":false,"pos":{"x":36.6243362426758,"y":1.3017281293869,"z":-49.7084617614746},"rot":{"x":0.0208039414137602,"y":270.016357421875,"z":0.0167766492813826}},"2901ee":{"lock":false,"pos":{"x":40.2900657653809,"y":1.29632365703583,"z":-72.7199859619141},"rot":{"x":0.0208085346966982,"y":270.000122070313,"z":0.0167713034898043}},"2b76c6":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957270622253,"z":-77.3202514648438},"rot":{"x":0.0208099894225597,"y":269.997833251953,"z":0.0167708452790976}},"2badf6":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30295753479004,"z":-61.208797454834},"rot":{"x":0.0208091717213392,"y":269.998718261719,"z":0.0167704578489065}},"32b458":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208088271319866,"y":269.999206542969,"z":0.0167707689106464}},"33fb3a":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208096783608198,"y":269.997863769531,"z":0.0167707931250334}},"36ffa9":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208149626851082,"y":269.977416992188,"z":0.0167627148330212}},"390a86":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30565047264099,"z":-52.0087776184082},"rot":{"x":0.0208108201622963,"y":269.992736816406,"z":0.0167682971805334}},"3a622d":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29768872261047,"z":-63.5084495544434},"rot":{"x":0.0208085216581821,"y":269.998962402344,"z":0.0167698040604591}},"3accaf":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30430400371552,"z":-56.6087913513184},"rot":{"x":0.0208089966326952,"y":269.998718261719,"z":0.0167704094201326}},"3b042e":{"lock":false,"pos":{"x":36.624340057373,"y":1.29701554775238,"z":-65.8082962036133},"rot":{"x":0.0208088364452124,"y":269.9990234375,"z":0.0167689267545938}},"3df5fb":{"lock":false,"pos":{"x":52.9442176818848,"y":1.3063051700592,"z":-54.3203392028809},"rot":{"x":0.0208085998892784,"y":270,"z":0.0167711991816759}},"415ca2":{"lock":false,"pos":{"x":52.9462394714355,"y":1.2982269525528,"z":-81.9204711914063},"rot":{"x":0.0208098273724318,"y":269.999084472656,"z":0.0167713314294815}},"43b3a5":{"lock":false,"pos":{"x":49.278491973877,"y":1.30161106586456,"z":-65.8086547851563},"rot":{"x":0.0208033956587315,"y":270.020324707031,"z":0.0167789477854967}},"467460":{"lock":false,"pos":{"x":52.9189834594727,"y":1.29620051383972,"z":-88.809700012207},"rot":{"x":0.0208094883710146,"y":269.997192382813,"z":0.016770800575614}},"491c09":{"lock":false,"pos":{"x":52.9442749023438,"y":1.31542873382568,"z":-70.4270629882813},"rot":{"x":0.0204385947436094,"y":269.998352050781,"z":0.740688383579254}},"537351":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30632376670837,"z":-49.708812713623},"rot":{"x":0.0208090860396624,"y":269.998718261719,"z":0.0167703609913588}},"54293e":{"lock":false,"pos":{"x":40.2900886535645,"y":1.29228413105011,"z":-86.5199127197266},"rot":{"x":0.0208098310977221,"y":269.998840332031,"z":0.0167711600661278}},"5761c7":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30563199520111,"z":-56.6203498840332},"rot":{"x":0.0208150781691074,"y":269.977386474609,"z":0.0167628582566977}},"596620":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208152439445257,"y":269.977416992188,"z":0.0167629644274712}},"59bdfb":{"lock":false,"pos":{"x":49.278491973877,"y":1.30430400371552,"z":-56.6087875366211},"rot":{"x":0.0208091381937265,"y":269.998748779297,"z":0.0167705006897449}},"5a4bb5":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30228424072266,"z":-63.5088005065918},"rot":{"x":0.020809318870306,"y":269.999725341797,"z":0.0167710520327091}},"5a7137":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208089090883732,"y":269.999206542969,"z":0.0167707856744528}},"5cfb72":{"lock":false,"pos":{"x":40.2742691040039,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.0208044424653053,"y":270.016387939453,"z":0.016777578741312}},"5efc92":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765175819397,"z":-49.7203407287598},"rot":{"x":0.0208153259009123,"y":269.977416992188,"z":0.0167629905045033}},"62392c":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208086017519236,"y":269.999450683594,"z":0.0167710743844509}},"639a09":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.0208124220371246,"y":269.986022949219,"z":0.0167647935450077}},"650903":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208045095205307,"y":270.016479492188,"z":0.0167774986475706}},"661c3f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30161106586456,"z":-65.8086547851563},"rot":{"x":0.0208096783608198,"y":269.998992919922,"z":0.0167713351547718}},"6b130d":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.0208151154220104,"y":269.977416992188,"z":0.0167628526687622}},"6c6340":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.0208090525120497,"y":269.998962402344,"z":0.0167704243212938}},"7ab680":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29364931583405,"z":-77.3083267211914},"rot":{"x":0.0208120439201593,"y":269.986083984375,"z":0.0167658980935812}},"7dc42a":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29497718811035,"z":-77.3199005126953},"rot":{"x":0.0208012778311968,"y":270.027709960938,"z":0.01678173430264}},"80d5e3":{"lock":false,"pos":{"x":40.2741088867188,"y":1.29093313217163,"z":-91.1157989501953},"rot":{"x":0.0208045020699501,"y":270.016418457031,"z":0.0167775489389896}},"80fafa":{"lock":false,"pos":{"x":58.0996551513672,"y":1.31018245220184,"z":-47.4709815979004},"rot":{"x":0.020808020606637,"y":270.001251220703,"z":0.0167717840522528}},"85fe46":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30363070964813,"z":-58.9087944030762},"rot":{"x":0.0208090357482433,"y":269.998809814453,"z":0.0167705006897449}},"87226d":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29565036296844,"z":-75.0199813842773},"rot":{"x":0.0208084043115377,"y":269.998931884766,"z":0.0167704615741968}},"88d2ba":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208151657134295,"y":269.977447509766,"z":0.0167629681527615}},"88fdeb":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3023829460144,"z":-52.0199966430664},"rot":{"x":0.0208087898790836,"y":269.999206542969,"z":0.0167708527296782}},"8f5533":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30883598327637,"z":-52.070972442627},"rot":{"x":0.0208084378391504,"y":270.000335693359,"z":0.0167712084949017}},"8ffa44":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30093789100647,"z":-68.1086578369141},"rot":{"x":0.0208092238754034,"y":269.998657226563,"z":0.0167708266526461}},"92436b":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30024588108063,"z":-75.0203475952148},"rot":{"x":0.0208097212016582,"y":269.999176025391,"z":0.0167709644883871}},"93381d":{"lock":false,"pos":{"x":52.9441146850586,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.0208101253956556,"y":269.997680664063,"z":0.016770726069808}},"9e7f6a":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428552627563,"z":-61.2203521728516},"rot":{"x":0.0208087041974068,"y":270,"z":0.0167711563408375}},"a0e05d":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208150893449783,"y":269.977416992188,"z":0.0167628861963749}},"a26425":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30105495452881,"z":-52.0084266662598},"rot":{"x":0.0208039581775665,"y":270.016357421875,"z":0.0167769305408001}},"ab51ce":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29836189746857,"z":-61.2084465026855},"rot":{"x":0.0208092499524355,"y":269.998748779297,"z":0.0167703740298748}},"ab620e":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208152066916227,"y":269.977416992188,"z":0.0167629551142454}},"afef79":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29903519153595,"z":-58.9084434509277},"rot":{"x":0.0208090748637915,"y":269.998962402344,"z":0.0167701914906502}},"b39b78":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208090748637915,"y":269.998901367188,"z":0.0167702604085207}},"b7c4cb":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30737829208374,"z":-54.3203010559082},"rot":{"x":0.0208084303885698,"y":270.000091552734,"z":0.016771150752902}},"bdffae":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901671409607,"z":-63.5200119018555},"rot":{"x":0.0208086129277945,"y":269.999633789063,"z":0.0167709868401289}},"c1d796":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29430389404297,"z":-79.6199035644531},"rot":{"x":0.020809443667531,"y":269.999877929688,"z":0.0167715139687061}},"c4018c":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.6202545166016},"rot":{"x":0.0208098012953997,"y":269.997680664063,"z":0.0167713686823845}},"c5aa89":{"lock":false,"pos":{"x":52.9284706115723,"y":1.29687416553497,"z":-86.5200881958008},"rot":{"x":0.0208092648535967,"y":269.99755859375,"z":0.0167701691389084}},"cdb540":{"lock":false,"pos":{"x":40.2899551391602,"y":1.29295742511749,"z":-84.2199020385742},"rot":{"x":0.0208042934536934,"y":270.016510009766,"z":0.0167777873575687}},"d93397":{"lock":false,"pos":{"x":49.2784996032715,"y":1.30699694156647,"z":-47.4087791442871},"rot":{"x":0.0208096392452717,"y":269.997406005859,"z":0.0167709272354841}},"ddc9f8":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1158065795898},"rot":{"x":0.0208043809980154,"y":270.016479492188,"z":0.0167777389287949}},"dddd59":{"lock":false,"pos":{"x":44.2289009094238,"y":1.30152595043182,"z":-63.5009002685547},"rot":{"x":0.0208084173500538,"y":270,"z":0.016771262511611}},"de2d0a":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30950915813446,"z":-49.7709693908691},"rot":{"x":0.0208082906901836,"y":270.001678466797,"z":0.0167713053524494}},"e1748c":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208088457584381,"y":269.998962402344,"z":0.0167707521468401}},"e1ef43":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208086017519236,"y":269.999664306641,"z":0.0167709570378065}},"e3ae5c":{"lock":false,"pos":{"x":52.9442443847656,"y":1.29687976837158,"z":-86.5202560424805},"rot":{"x":0.0208088513463736,"y":269.997375488281,"z":0.0167687926441431}},"e55fe0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29889953136444,"z":-79.6202621459961},"rot":{"x":0.0208096522837877,"y":269.997619628906,"z":0.0167706999927759}},"e56d1d":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29767024517059,"z":-68.119873046875},"rot":{"x":0.0208087209612131,"y":269.999420166016,"z":0.0167708974331617}},"f54b74":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29634237289429,"z":-68.1082992553711},"rot":{"x":0.0208123158663511,"y":269.986083984375,"z":0.0167655292898417}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 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 index 4d5a2c24f..432134529 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -81.92 + posZ: -84.22 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index b752a72aa..79eaa799c 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -65.81 + posZ: -68.11 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index 490cf6ca1..fd87a5eba 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -68.11 + posZ: -70.41 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index 15b37e05b..4300bba18 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.28 posY: 1.31 - posZ: -47.41 + posZ: -49.71 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Boxing Gloves (3) 54293e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Boxing Gloves (3) 54293e.yaml index 5fd6d61f0..3960d83b9 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Boxing Gloves (3) 54293e.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Boxing Gloves (3) 54293e.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266225 +CardID: 554525 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -84.22 + posZ: -86.52 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Counterpunch (2) 92436b.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Counterpunch (2) 92436b.yaml index 82bfdbdf1..78645ee70 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Counterpunch (2) 92436b.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Counterpunch (2) 92436b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266220 +CardID: 554820 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -72.72 + posZ: -75.02 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index cd938095a..a2b96e1f2 100644 --- 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 @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 49.27 + posX: 49.28 posY: 1.31 - posZ: -49.71 + posZ: -52.01 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 0d2b1017a..4943d9e25 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -75.02 + posZ: -77.32 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Dynamite Blast (3) 14dcc4.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Dynamite Blast (3) 14dcc4.yaml index 4e5a1fe5f..d915625a6 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Dynamite Blast (3) 14dcc4.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Dynamite Blast (3) 14dcc4.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266227 +CardID: 554227 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 49.28 - posY: 1.31 - posZ: -52.01 + posY: 1.3 + posZ: -54.31 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 2474dedf7..5b46a32b0 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -77.32 + posZ: -79.62 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 1e1f98ca8..938bdaeb9 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -52.01 + posZ: -54.31 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 0ccd4788e..8a6e58456 100644 --- 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 @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.29 + posX: 40.27 posY: 1.29 - posZ: -86.52 + posZ: -88.81 rotX: 0.02 rotY: 270.02 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Evidence! (1) 3df5fb.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Evidence! (1) 3df5fb.yaml index 9a44801e9..d1d8e91a8 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Evidence! (1) 3df5fb.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Evidence! (1) 3df5fb.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266218 +CardID: 554318 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ 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 index 809c249c8..0bfa3799d 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.27 posY: 1.29 - posZ: -88.81 + posZ: -91.12 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index a62c4b75a..7c138934f 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Flamethrower (5) 066c18.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Flamethrower (5) 066c18.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 36.62 - posY: 1.3 - posZ: -70.41 + posY: 1.29 + posZ: -72.71 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Galvanize (1) 9e7f6a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Galvanize (1) 9e7f6a.yaml index 4bfed9938..83300adaa 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Galvanize (1) 9e7f6a.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Galvanize (1) 9e7f6a.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266219 +CardID: 554919 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Get over here! (2) 415ca2.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Get over here! (2) 415ca2.yaml index a6accec2d..542e07e96 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Get over here! (2) 415ca2.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Get over here! (2) 415ca2.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266221 +CardID: 554421 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52.94 + posX: 52.95 posY: 1.3 - posZ: -79.62 + posZ: -81.92 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Grete Wagner (3) b39b78.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Grete Wagner (3) b39b78.yaml index d5cf13495..d6136345b 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Grete Wagner (3) b39b78.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Grete Wagner (3) b39b78.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266226 +CardID: 555126 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5551': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.27 - posY: 1.29 - posZ: -91.12 + posX: 36.62 + posY: 1.3 + posZ: -47.41 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 820b2c516..ccc96d1a8 100644 --- 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 @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52.95 + posX: 52.94 posY: 1.3 - posZ: -81.92 + posZ: -84.22 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 287bc0d00..447101109 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -84.22 + posZ: -86.52 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index d995bcb31..b53386573 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.28 posY: 1.3 - posZ: -61.21 + posZ: -63.51 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 3c71eddf0..73b0c81dc 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -47.41 + posZ: -49.71 rotX: 0.02 rotY: 270.02 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Lesson Learned (2) 037b2e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Lesson Learned (2) 037b2e.yaml index 9a81e059e..a2a2ca8cb 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Lesson Learned (2) 037b2e.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Lesson Learned (2) 037b2e.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266222 +CardID: 554022 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52.94 + posX: 52.93 posY: 1.3 - posZ: -86.52 + posZ: -88.81 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index b0041651a..310cbc5f4 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -72.71 + posZ: -75.01 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index 5b9e32015..be6f96f24 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -54.31 + posZ: -56.61 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Mano a Mano (2) 14424c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Mano a Mano (2) 14424c.yaml index 7ce82933f..0a8c6324c 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Mano a Mano (2) 14424c.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Mano a Mano (2) 14424c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266223 +CardID: 554123 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.93 posY: 1.3 - posZ: -88.81 + posZ: -91.12 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 7905e5f9d..1a7f2a79a 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -56.61 + posZ: -58.91 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index a31ba1ac6..5a0bb4f48 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.28 posY: 1.3 - posZ: -63.51 + posZ: -65.81 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card One-Two Punch (5) 8ffa44.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card One-Two Punch (5) 8ffa44.yaml index 85726cdff..d815f4d70 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card One-Two Punch (5) 8ffa44.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card One-Two Punch (5) 8ffa44.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266230 +CardID: 554730 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.28 posY: 1.3 - posZ: -65.81 + posZ: -68.11 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Overpower (2) 017e1f.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Overpower (2) 017e1f.yaml index 60704e4bf..ad4071137 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Overpower (2) 017e1f.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Overpower (2) 017e1f.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266224 +CardID: 553924 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Physical Training (4) ab51ce.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Physical Training (4) ab51ce.yaml index 37e2cc028..41442769e 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Physical Training (4) ab51ce.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Physical Training (4) ab51ce.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266229 +CardID: 555029 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -58.91 + posZ: -61.21 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Righteous Hunt (1) 491c09.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Righteous Hunt (1) 491c09.yaml new file mode 100644 index 000000000..54c6351dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Righteous Hunt (1) 491c09.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 491c09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Righteous Hunt (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94 + posY: 1.32 + posZ: -70.43 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.74 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Sacred Covenant (2) 87226d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Sacred Covenant (2) 87226d.yaml new file mode 100644 index 000000000..c604ba824 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Sacred Covenant (2) 87226d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 87226d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Sacred Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.29 + posY: 1.3 + posZ: -75.02 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + 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 index 3c407846b..eaac6e878 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Safeguard (2) 7dc42a.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Safeguard (2) 7dc42a.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 40.29 - posY: 1.3 - posZ: -75.03 + posY: 1.29 + posZ: -77.32 rotX: 0.02 rotY: 270.03 rotZ: 0.02 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 index 36fbe073f..dc6fa55a2 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Shotgun (4) 3a622d.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Shotgun (4) 3a622d.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -61.21 + posZ: -63.51 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index e60d7f247..4bfabbbf1 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -75.01 + posZ: -77.31 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index 7097c34d2..201b0c51a 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -63.51 + posZ: -65.81 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 574923719..8d14f1329 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.28 posY: 1.3 - posZ: -54.31 + posZ: -56.61 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index c8c5a25d0..d8a930ab3 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -49.71 + posZ: -52.01 rotX: 0.02 rotY: 270.02 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Survival Knife (2) c1d796.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Survival Knife (2) c1d796.yaml index 0544aab1a..16b7443b7 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Survival Knife (2) c1d796.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Survival Knife (2) c1d796.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -77.32 + posZ: -79.62 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 6a727eaee..813894632 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (2) d93397.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (2) d93397.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52.93 - posY: 1.3 - posZ: -91.12 + posX: 49.28 + posY: 1.31 + posZ: -47.41 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (3) 85fe46.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (3) 85fe46.yaml index e2b8d2f78..1e1fb05f9 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (3) 85fe46.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (3) 85fe46.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266228 +CardID: 554628 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.28 posY: 1.3 - posZ: -56.61 + posZ: -58.91 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 86de65e89..4b8daa313 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.28 posY: 1.3 - posZ: -58.91 + posZ: -61.21 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index a70b0a3c3..d63e6898e 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -79.62 + posZ: -81.92 rotX: 0.02 rotY: 269.97 rotZ: 0.02 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 index 72924da29..5faf0e3dd 100644 --- 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 @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: 52.94 - posY: 1.32 - posZ: -70.42 + posY: 1.3 + posZ: -72.72 rotX: 0.02 rotY: 269.98 - rotZ: 0.74 + rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8.ttslua b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8.ttslua rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d.ttslua diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d.yaml new file mode 100644 index 000000000..9b1d07f70 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d.yaml @@ -0,0 +1,121 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian a3401d/Card Sacred Covenant (2) 87226d.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Righteous Hunt (1) 491c09.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Overpower (2) 017e1f.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Lesson Learned (2) 037b2e.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Empty Vessel (4) 043971.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Flamethrower (5) 066c18.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Custom Ammunition (3) 0c278c.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Well-Maintained (1) 0c2f37.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Marksmanship (1) 1408ad.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Mano a Mano (2) 14424c.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Dynamite Blast (3) 14dcc4.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card .32 Colt (2) 15fa11.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card The Hungering Blade (1) 17f807.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Reliable (1) 187591.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Armor of Ardennes (5) 1c0bcd.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Beat Cop (2) 1e7f9a.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Well Prepared (2) 1fc1f4.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Kerosene (1) 218e04.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Keen Eye (3) 22256f.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Police Badge (2) 2901ee.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Dynamite Blast (2) 2b76c6.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Telescopic Sight (3) 2badf6.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Ace of Swords (1) 32b458.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Ambush (1) 36ffa9.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Shotgun (4) 3a622d.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Stand Together (3) 3accaf.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Springfield M1903 (4) 3b042e.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Evidence! (1) 3df5fb.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Get over here! (2) 415ca2.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Blood Eclipse (3) 537351.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Boxing Gloves (3) 54293e.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Extra Ammunition (1) 5761c7.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Fool me once... (1) 596620.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card I''ve had worse... (4) 5a4bb5.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Brother Xavier (1) 5a7137.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Enchanted Blade (3) 5cfb72.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Blood Eclipse (1) 5efc92.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Physical Training (2) 62392c.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Lightning Gun (5) 639a09.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card .45 Thompson (3) 650903.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Monster Slayer (5) 661c3f.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card M1918 BAR (4) 6c6340.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Spiritual Resolve (5) 7ab680.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Safeguard (2) 7dc42a.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card First Aid (3) 80d5e3.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Leadership (2) 80fafa.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Taunt (3) 85fe46.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Mano a Mano (1) 88d2ba.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Combat Training (1) 88fdeb.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Vicious Blow (2) 8f5533.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card One-Two Punch (5) 8ffa44.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Counterpunch (2) 92436b.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Heroic Rescue (2) 93381d.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Galvanize (1) 9e7f6a.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Stick to the Plan (3) a26425.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Physical Training (4) ab51ce.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Ever Vigilant (1) ab620e.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Mk 1 Grenades (4) afef79.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Grete Wagner (3) b39b78.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Bandolier (2) bdffae.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Survival Knife (2) c1d796.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Eat lead! (2) c4018c.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Taunt (2) d93397.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card .45 Automatic (2) e1ef43.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card I''ve had worse... (2) e3ae5c.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Blackjack (2) e56d1d.yaml' +- !include 'Custom_Model_Bag Guardian a3401d/Card Agency Backup (5) f54b74.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: '' +DragSelectable: true +GMNotes: '' +GUID: a3401d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Guardian a3401d.ttslua' +LuaScriptState: '{"ml":{"017e1f":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950927734375,"z":-49.7709617614746},"rot":{"x":0.0208088755607605,"y":269.999145507813,"z":0.016770975664258}},"037b2e":{"lock":false,"pos":{"x":52.9284248352051,"y":1.29620385169983,"z":-88.8097076416016},"rot":{"x":0.0208103228360415,"y":269.997467041016,"z":0.0167707335203886}},"043971":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208090879023075,"y":269.998962402344,"z":0.0167703498154879}},"066c18":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29499578475952,"z":-72.7083892822266},"rot":{"x":0.0208123717457056,"y":269.986083984375,"z":0.0167650487273932}},"0c278c":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30565047264099,"z":-52.0087776184082},"rot":{"x":0.0208090078085661,"y":269.998718261719,"z":0.0167703367769718}},"0c2f37":{"lock":false,"pos":{"x":52.944206237793,"y":1.30091917514801,"z":-72.7202529907227},"rot":{"x":0.0208148881793022,"y":269.978485107422,"z":0.016765171661973}},"1408ad":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293905735016,"z":-65.8202209472656},"rot":{"x":0.0208152998238802,"y":269.977447509766,"z":0.0167627055197954}},"14424c":{"lock":false,"pos":{"x":52.9282646179199,"y":1.29552865028381,"z":-91.1161499023438},"rot":{"x":0.0208097212016582,"y":269.998962402344,"z":0.0167710948735476}},"14dcc4":{"lock":false,"pos":{"x":49.2784881591797,"y":1.3049772977829,"z":-54.3087882995605},"rot":{"x":0.0208089277148247,"y":269.998748779297,"z":0.0167703647166491}},"15fa11":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036318302155,"z":-58.9200057983398},"rot":{"x":0.020808819681406,"y":269.999755859375,"z":0.0167711116373539}},"17f807":{"lock":false,"pos":{"x":40.2899856567383,"y":1.30103969573975,"z":-56.6086387634277},"rot":{"x":0.0208087936043739,"y":269.999176025391,"z":0.0167708341032267}},"187591":{"lock":false,"pos":{"x":52.9419898986816,"y":1.30221998691559,"z":-68.2735443115234},"rot":{"x":0.0208150614053011,"y":269.977355957031,"z":0.0167630184441805}},"1c0bcd":{"lock":false,"pos":{"x":36.624340057373,"y":1.29566895961761,"z":-70.4083023071289},"rot":{"x":0.0208125542849302,"y":269.985961914063,"z":0.0167640633881092}},"1e7f9a":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208088736981153,"y":269.999542236328,"z":0.0167710650712252}},"1fc1f4":{"lock":false,"pos":{"x":40.2920837402344,"y":1.29363143444061,"z":-81.9201202392578},"rot":{"x":0.020816495642066,"y":269.974792480469,"z":0.0167621523141861}},"218e04":{"lock":false,"pos":{"x":40.2900657653809,"y":1.30170965194702,"z":-54.3199005126953},"rot":{"x":0.0208080559968948,"y":270.001770019531,"z":0.0167718771845102}},"22256f":{"lock":false,"pos":{"x":36.6243362426758,"y":1.3017281293869,"z":-49.7084617614746},"rot":{"x":0.0208039414137602,"y":270.016357421875,"z":0.0167766492813826}},"2901ee":{"lock":false,"pos":{"x":40.2900657653809,"y":1.29632365703583,"z":-72.7199859619141},"rot":{"x":0.0208085346966982,"y":270.000122070313,"z":0.0167713034898043}},"2b76c6":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957270622253,"z":-77.3202514648438},"rot":{"x":0.0208099894225597,"y":269.997833251953,"z":0.0167708452790976}},"2badf6":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30295753479004,"z":-61.208797454834},"rot":{"x":0.0208091717213392,"y":269.998718261719,"z":0.0167704578489065}},"32b458":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208088271319866,"y":269.999206542969,"z":0.0167707689106464}},"33fb3a":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208096783608198,"y":269.997863769531,"z":0.0167707931250334}},"36ffa9":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208149626851082,"y":269.977416992188,"z":0.0167627148330212}},"390a86":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30565047264099,"z":-52.0087776184082},"rot":{"x":0.0208108201622963,"y":269.992736816406,"z":0.0167682971805334}},"3a622d":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29768872261047,"z":-63.5084495544434},"rot":{"x":0.0208085216581821,"y":269.998962402344,"z":0.0167698040604591}},"3accaf":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30430400371552,"z":-56.6087913513184},"rot":{"x":0.0208089966326952,"y":269.998718261719,"z":0.0167704094201326}},"3b042e":{"lock":false,"pos":{"x":36.624340057373,"y":1.29701554775238,"z":-65.8082962036133},"rot":{"x":0.0208088364452124,"y":269.9990234375,"z":0.0167689267545938}},"3df5fb":{"lock":false,"pos":{"x":52.9442176818848,"y":1.3063051700592,"z":-54.3203392028809},"rot":{"x":0.0208085998892784,"y":270,"z":0.0167711991816759}},"415ca2":{"lock":false,"pos":{"x":52.9462394714355,"y":1.2982269525528,"z":-81.9204711914063},"rot":{"x":0.0208098273724318,"y":269.999084472656,"z":0.0167713314294815}},"43b3a5":{"lock":false,"pos":{"x":49.278491973877,"y":1.30161106586456,"z":-65.8086547851563},"rot":{"x":0.0208033956587315,"y":270.020324707031,"z":0.0167789477854967}},"467460":{"lock":false,"pos":{"x":52.9189834594727,"y":1.29620051383972,"z":-88.809700012207},"rot":{"x":0.0208094883710146,"y":269.997192382813,"z":0.016770800575614}},"491c09":{"lock":false,"pos":{"x":52.9442749023438,"y":1.31542873382568,"z":-70.4270629882813},"rot":{"x":0.0204385947436094,"y":269.998352050781,"z":0.740688383579254}},"537351":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30632376670837,"z":-49.708812713623},"rot":{"x":0.0208090860396624,"y":269.998718261719,"z":0.0167703609913588}},"54293e":{"lock":false,"pos":{"x":40.2900886535645,"y":1.29228413105011,"z":-86.5199127197266},"rot":{"x":0.0208098310977221,"y":269.998840332031,"z":0.0167711600661278}},"5761c7":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30563199520111,"z":-56.6203498840332},"rot":{"x":0.0208150781691074,"y":269.977386474609,"z":0.0167628582566977}},"596620":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208152439445257,"y":269.977416992188,"z":0.0167629644274712}},"59bdfb":{"lock":false,"pos":{"x":49.278491973877,"y":1.30430400371552,"z":-56.6087875366211},"rot":{"x":0.0208091381937265,"y":269.998748779297,"z":0.0167705006897449}},"5a4bb5":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30228424072266,"z":-63.5088005065918},"rot":{"x":0.020809318870306,"y":269.999725341797,"z":0.0167710520327091}},"5a7137":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208089090883732,"y":269.999206542969,"z":0.0167707856744528}},"5cfb72":{"lock":false,"pos":{"x":40.2742691040039,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.0208044424653053,"y":270.016387939453,"z":0.016777578741312}},"5efc92":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765175819397,"z":-49.7203407287598},"rot":{"x":0.0208153259009123,"y":269.977416992188,"z":0.0167629905045033}},"62392c":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208086017519236,"y":269.999450683594,"z":0.0167710743844509}},"639a09":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.0208124220371246,"y":269.986022949219,"z":0.0167647935450077}},"650903":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208045095205307,"y":270.016479492188,"z":0.0167774986475706}},"661c3f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30161106586456,"z":-65.8086547851563},"rot":{"x":0.0208096783608198,"y":269.998992919922,"z":0.0167713351547718}},"6b130d":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.0208151154220104,"y":269.977416992188,"z":0.0167628526687622}},"6c6340":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.0208090525120497,"y":269.998962402344,"z":0.0167704243212938}},"7ab680":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29364931583405,"z":-77.3083267211914},"rot":{"x":0.0208120439201593,"y":269.986083984375,"z":0.0167658980935812}},"7dc42a":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29497718811035,"z":-77.3199005126953},"rot":{"x":0.0208012778311968,"y":270.027709960938,"z":0.01678173430264}},"80d5e3":{"lock":false,"pos":{"x":40.2741088867188,"y":1.29093313217163,"z":-91.1157989501953},"rot":{"x":0.0208045020699501,"y":270.016418457031,"z":0.0167775489389896}},"80fafa":{"lock":false,"pos":{"x":58.0996551513672,"y":1.31018245220184,"z":-47.4709815979004},"rot":{"x":0.020808020606637,"y":270.001251220703,"z":0.0167717840522528}},"85fe46":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30363070964813,"z":-58.9087944030762},"rot":{"x":0.0208090357482433,"y":269.998809814453,"z":0.0167705006897449}},"87226d":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29565036296844,"z":-75.0199813842773},"rot":{"x":0.0208084043115377,"y":269.998931884766,"z":0.0167704615741968}},"88d2ba":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208151657134295,"y":269.977447509766,"z":0.0167629681527615}},"88fdeb":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3023829460144,"z":-52.0199966430664},"rot":{"x":0.0208087898790836,"y":269.999206542969,"z":0.0167708527296782}},"8f5533":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30883598327637,"z":-52.070972442627},"rot":{"x":0.0208084378391504,"y":270.000335693359,"z":0.0167712084949017}},"8ffa44":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30093789100647,"z":-68.1086578369141},"rot":{"x":0.0208092238754034,"y":269.998657226563,"z":0.0167708266526461}},"92436b":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30024588108063,"z":-75.0203475952148},"rot":{"x":0.0208097212016582,"y":269.999176025391,"z":0.0167709644883871}},"93381d":{"lock":false,"pos":{"x":52.9441146850586,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.0208101253956556,"y":269.997680664063,"z":0.016770726069808}},"9e7f6a":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428552627563,"z":-61.2203521728516},"rot":{"x":0.0208087041974068,"y":270,"z":0.0167711563408375}},"a0e05d":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208150893449783,"y":269.977416992188,"z":0.0167628861963749}},"a26425":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30105495452881,"z":-52.0084266662598},"rot":{"x":0.0208039581775665,"y":270.016357421875,"z":0.0167769305408001}},"ab51ce":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29836189746857,"z":-61.2084465026855},"rot":{"x":0.0208092499524355,"y":269.998748779297,"z":0.0167703740298748}},"ab620e":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208152066916227,"y":269.977416992188,"z":0.0167629551142454}},"afef79":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29903519153595,"z":-58.9084434509277},"rot":{"x":0.0208090748637915,"y":269.998962402344,"z":0.0167701914906502}},"b39b78":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208090748637915,"y":269.998901367188,"z":0.0167702604085207}},"b7c4cb":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30737829208374,"z":-54.3203010559082},"rot":{"x":0.0208084303885698,"y":270.000091552734,"z":0.016771150752902}},"bdffae":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901671409607,"z":-63.5200119018555},"rot":{"x":0.0208086129277945,"y":269.999633789063,"z":0.0167709868401289}},"c1d796":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29430389404297,"z":-79.6199035644531},"rot":{"x":0.020809443667531,"y":269.999877929688,"z":0.0167715139687061}},"c4018c":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.6202545166016},"rot":{"x":0.0208098012953997,"y":269.997680664063,"z":0.0167713686823845}},"c5aa89":{"lock":false,"pos":{"x":52.9284706115723,"y":1.29687416553497,"z":-86.5200881958008},"rot":{"x":0.0208092648535967,"y":269.99755859375,"z":0.0167701691389084}},"cdb540":{"lock":false,"pos":{"x":40.2899551391602,"y":1.29295742511749,"z":-84.2199020385742},"rot":{"x":0.0208042934536934,"y":270.016510009766,"z":0.0167777873575687}},"d93397":{"lock":false,"pos":{"x":49.2784996032715,"y":1.30699694156647,"z":-47.4087791442871},"rot":{"x":0.0208096392452717,"y":269.997406005859,"z":0.0167709272354841}},"ddc9f8":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1158065795898},"rot":{"x":0.0208043809980154,"y":270.016479492188,"z":0.0167777389287949}},"dddd59":{"lock":false,"pos":{"x":44.2289009094238,"y":1.30152595043182,"z":-63.5009002685547},"rot":{"x":0.0208084173500538,"y":270,"z":0.016771262511611}},"de2d0a":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30950915813446,"z":-49.7709693908691},"rot":{"x":0.0208082906901836,"y":270.001678466797,"z":0.0167713053524494}},"e1748c":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208088457584381,"y":269.998962402344,"z":0.0167707521468401}},"e1ef43":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208086017519236,"y":269.999664306641,"z":0.0167709570378065}},"e3ae5c":{"lock":false,"pos":{"x":52.9442443847656,"y":1.29687976837158,"z":-86.5202560424805},"rot":{"x":0.0208088513463736,"y":269.997375488281,"z":0.0167687926441431}},"e55fe0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29889953136444,"z":-79.6202621459961},"rot":{"x":0.0208096522837877,"y":269.997619628906,"z":0.0167706999927759}},"e56d1d":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29767024517059,"z":-68.119873046875},"rot":{"x":0.0208087209612131,"y":269.999420166016,"z":0.0167708974331617}},"f54b74":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29634237289429,"z":-68.1082992553711},"rot":{"x":0.0208123158663511,"y":269.986083984375,"z":0.0167655292898417}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.32 + posY: 1.67 + posZ: -63.98 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card .32 Colt (2) 15fa11.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card .32 Colt (2) 15fa11.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card .32 Colt (2) 15fa11.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card .32 Colt (2) 15fa11.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card .45 Automatic (2) e1ef43.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card .45 Automatic (2) e1ef43.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card .45 Automatic (2) e1ef43.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card .45 Automatic (2) e1ef43.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card .45 Thompson (3) 650903.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card .45 Thompson (3) 650903.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card .45 Thompson (3) 650903.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card .45 Thompson (3) 650903.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Ace of Swords (1) 32b458.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Ace of Swords (1) 32b458.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Ace of Swords (1) 32b458.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Ace of Swords (1) 32b458.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Agency Backup (5) f54b74.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Agency Backup (5) f54b74.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Agency Backup (5) f54b74.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Agency Backup (5) f54b74.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Ambush (1) 36ffa9.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Ambush (1) 36ffa9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Ambush (1) 36ffa9.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Ambush (1) 36ffa9.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Armor of Ardennes (5) 1c0bcd.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Armor of Ardennes (5) 1c0bcd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Armor of Ardennes (5) 1c0bcd.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Armor of Ardennes (5) 1c0bcd.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Bandolier (2) bdffae.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Bandolier (2) bdffae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Bandolier (2) bdffae.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Bandolier (2) bdffae.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Beat Cop (2) 1e7f9a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Beat Cop (2) 1e7f9a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Beat Cop (2) 1e7f9a.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Beat Cop (2) 1e7f9a.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Blackjack (2) e56d1d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Blackjack (2) e56d1d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Blackjack (2) e56d1d.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Blackjack (2) e56d1d.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Blood Eclipse (1) 5efc92.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Blood Eclipse (1) 5efc92.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Blood Eclipse (1) 5efc92.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Blood Eclipse (1) 5efc92.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Blood Eclipse (3) 537351.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Blood Eclipse (3) 537351.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Blood Eclipse (3) 537351.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Blood Eclipse (3) 537351.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Boxing Gloves (3) 54293e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Boxing Gloves (3) 54293e.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Boxing Gloves (3) 54293e.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Boxing Gloves (3) 54293e.yaml index fdfa45ead..8c78d7b7f 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Boxing Gloves (3) 54293e.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Boxing Gloves (3) 54293e.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266225 +CardID: 554525 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Brother Xavier (1) 5a7137.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Brother Xavier (1) 5a7137.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Brother Xavier (1) 5a7137.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Brother Xavier (1) 5a7137.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Combat Training (1) 88fdeb.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Combat Training (1) 88fdeb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Combat Training (1) 88fdeb.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Combat Training (1) 88fdeb.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Counterpunch (2) 92436b.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Counterpunch (2) 92436b.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Counterpunch (2) 92436b.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Counterpunch (2) 92436b.yaml index a775214a9..5a5445fcf 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Counterpunch (2) 92436b.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Counterpunch (2) 92436b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266220 +CardID: 554820 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Custom Ammunition (3) 0c278c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Custom Ammunition (3) 0c278c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Custom Ammunition (3) 0c278c.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Custom Ammunition (3) 0c278c.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Dynamite Blast (2) 2b76c6.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Dynamite Blast (2) 2b76c6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Dynamite Blast (2) 2b76c6.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Dynamite Blast (2) 2b76c6.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Dynamite Blast (3) 14dcc4.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Dynamite Blast (3) 14dcc4.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Dynamite Blast (3) 14dcc4.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Dynamite Blast (3) 14dcc4.yaml index 058d2b71d..fab3edfb7 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Dynamite Blast (3) 14dcc4.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Dynamite Blast (3) 14dcc4.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266227 +CardID: 554227 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Eat lead! (2) c4018c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Eat lead! (2) c4018c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Eat lead! (2) c4018c.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Eat lead! (2) c4018c.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Empty Vessel (4) 043971.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Empty Vessel (4) 043971.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Empty Vessel (4) 043971.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Empty Vessel (4) 043971.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Enchanted Blade (3) 5cfb72.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Enchanted Blade (3) 5cfb72.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Enchanted Blade (3) 5cfb72.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Enchanted Blade (3) 5cfb72.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Ever Vigilant (1) ab620e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Ever Vigilant (1) ab620e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Ever Vigilant (1) ab620e.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Ever Vigilant (1) ab620e.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Evidence! (1) 3df5fb.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Evidence! (1) 3df5fb.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Evidence! (1) 3df5fb.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Evidence! (1) 3df5fb.yaml index 904423e40..e11269af8 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Evidence! (1) 3df5fb.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Evidence! (1) 3df5fb.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266218 +CardID: 554318 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Extra Ammunition (1) 5761c7.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Extra Ammunition (1) 5761c7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Extra Ammunition (1) 5761c7.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Extra Ammunition (1) 5761c7.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card First Aid (3) 80d5e3.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card First Aid (3) 80d5e3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card First Aid (3) 80d5e3.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card First Aid (3) 80d5e3.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Flamethrower (5) 066c18.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Flamethrower (5) 066c18.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Flamethrower (5) 066c18.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Flamethrower (5) 066c18.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Fool me once... (1) 596620.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Fool me once... (1) 596620.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Fool me once... (1) 596620.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Fool me once... (1) 596620.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Galvanize (1) 9e7f6a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Galvanize (1) 9e7f6a.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Galvanize (1) 9e7f6a.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Galvanize (1) 9e7f6a.yaml index 7c569b0dd..c1b7b2cfc 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Galvanize (1) 9e7f6a.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Galvanize (1) 9e7f6a.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266219 +CardID: 554919 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Get over here! (2) 415ca2.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Get over here! (2) 415ca2.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Get over here! (2) 415ca2.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Get over here! (2) 415ca2.yaml index b41a7f5d0..54ac5dc22 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Get over here! (2) 415ca2.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Get over here! (2) 415ca2.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266221 +CardID: 554421 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Grete Wagner (3) b39b78.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Grete Wagner (3) b39b78.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Grete Wagner (3) b39b78.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Grete Wagner (3) b39b78.yaml index 80e6283c6..ef55b07da 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Grete Wagner (3) b39b78.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Grete Wagner (3) b39b78.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266226 +CardID: 555126 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5551': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Heroic Rescue (2) 93381d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Heroic Rescue (2) 93381d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Heroic Rescue (2) 93381d.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Heroic Rescue (2) 93381d.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card I've had worse... (2) e3ae5c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card I've had worse... (2) e3ae5c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card I've had worse... (2) e3ae5c.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card I've had worse... (2) e3ae5c.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card I've had worse... (4) 5a4bb5.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card I've had worse... (4) 5a4bb5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card I've had worse... (4) 5a4bb5.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card I've had worse... (4) 5a4bb5.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Keen Eye (3) 22256f.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Keen Eye (3) 22256f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Keen Eye (3) 22256f.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Keen Eye (3) 22256f.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Kerosene (1) 218e04.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Kerosene (1) 218e04.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Kerosene (1) 218e04.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Kerosene (1) 218e04.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Leadership (2) 80fafa.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Leadership (2) 80fafa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Leadership (2) 80fafa.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Leadership (2) 80fafa.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Lesson Learned (2) 037b2e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Lesson Learned (2) 037b2e.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Lesson Learned (2) 037b2e.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Lesson Learned (2) 037b2e.yaml index 3bde22110..4cd4ada79 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Lesson Learned (2) 037b2e.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Lesson Learned (2) 037b2e.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266222 +CardID: 554022 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Lightning Gun (5) 639a09.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Lightning Gun (5) 639a09.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Lightning Gun (5) 639a09.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Lightning Gun (5) 639a09.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card M1918 BAR (4) 6c6340.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card M1918 BAR (4) 6c6340.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card M1918 BAR (4) 6c6340.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card M1918 BAR (4) 6c6340.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Mano a Mano (1) 88d2ba.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Mano a Mano (1) 88d2ba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Mano a Mano (1) 88d2ba.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Mano a Mano (1) 88d2ba.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Mano a Mano (2) 14424c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Mano a Mano (2) 14424c.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Mano a Mano (2) 14424c.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Mano a Mano (2) 14424c.yaml index 149c64b27..4dd2f5217 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Mano a Mano (2) 14424c.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Mano a Mano (2) 14424c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266223 +CardID: 554123 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Marksmanship (1) 1408ad.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Marksmanship (1) 1408ad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Marksmanship (1) 1408ad.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Marksmanship (1) 1408ad.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Mk 1 Grenades (4) afef79.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Mk 1 Grenades (4) afef79.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Mk 1 Grenades (4) afef79.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Mk 1 Grenades (4) afef79.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Monster Slayer (5) 661c3f.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Monster Slayer (5) 661c3f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Monster Slayer (5) 661c3f.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Monster Slayer (5) 661c3f.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card One-Two Punch (5) 8ffa44.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card One-Two Punch (5) 8ffa44.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card One-Two Punch (5) 8ffa44.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card One-Two Punch (5) 8ffa44.yaml index c98295cb5..4181de4be 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card One-Two Punch (5) 8ffa44.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card One-Two Punch (5) 8ffa44.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266230 +CardID: 554730 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Overpower (2) 017e1f.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Overpower (2) 017e1f.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Overpower (2) 017e1f.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Overpower (2) 017e1f.yaml index 91b81de00..0857c3f30 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Overpower (2) 017e1f.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Overpower (2) 017e1f.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266224 +CardID: 553924 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Physical Training (2) 62392c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Physical Training (2) 62392c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Physical Training (2) 62392c.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Physical Training (2) 62392c.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Physical Training (4) ab51ce.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Physical Training (4) ab51ce.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Physical Training (4) ab51ce.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Physical Training (4) ab51ce.yaml index 665f2a465..c41332b12 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Physical Training (4) ab51ce.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Physical Training (4) ab51ce.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266229 +CardID: 555029 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Police Badge (2) 2901ee.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Police Badge (2) 2901ee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Police Badge (2) 2901ee.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Police Badge (2) 2901ee.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Reliable (1) 187591.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Reliable (1) 187591.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Reliable (1) 187591.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Reliable (1) 187591.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Righteous Hunt (1) 491c09.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Righteous Hunt (1) 491c09.yaml new file mode 100644 index 000000000..394dfc515 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Righteous Hunt (1) 491c09.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 491c09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Righteous Hunt (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.32 + posY: 1.42 + posZ: -63.98 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.74 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Sacred Covenant (2) 87226d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Sacred Covenant (2) 87226d.yaml new file mode 100644 index 000000000..03d2d872d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Sacred Covenant (2) 87226d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 87226d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Sacred Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.32 + posY: 1.42 + posZ: -63.98 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Safeguard (2) 7dc42a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Safeguard (2) 7dc42a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Safeguard (2) 7dc42a.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Safeguard (2) 7dc42a.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Shotgun (4) 3a622d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Shotgun (4) 3a622d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Shotgun (4) 3a622d.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Shotgun (4) 3a622d.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Spiritual Resolve (5) 7ab680.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Spiritual Resolve (5) 7ab680.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Spiritual Resolve (5) 7ab680.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Spiritual Resolve (5) 7ab680.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Springfield M1903 (4) 3b042e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Springfield M1903 (4) 3b042e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Springfield M1903 (4) 3b042e.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Springfield M1903 (4) 3b042e.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Stand Together (3) 3accaf.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Stand Together (3) 3accaf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Stand Together (3) 3accaf.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Stand Together (3) 3accaf.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Stick to the Plan (3) a26425.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Stick to the Plan (3) a26425.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Stick to the Plan (3) a26425.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Stick to the Plan (3) a26425.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Survival Knife (2) c1d796.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Survival Knife (2) c1d796.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Survival Knife (2) c1d796.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Survival Knife (2) c1d796.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Taunt (2) d93397.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Taunt (2) d93397.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Taunt (2) d93397.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Taunt (2) d93397.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Taunt (3) 85fe46.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Taunt (3) 85fe46.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Taunt (3) 85fe46.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Taunt (3) 85fe46.yaml index 4bcedb2c9..61d5cb511 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Taunt (3) 85fe46.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Taunt (3) 85fe46.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266228 +CardID: 554628 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/ diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Telescopic Sight (3) 2badf6.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Telescopic Sight (3) 2badf6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Telescopic Sight (3) 2badf6.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Telescopic Sight (3) 2badf6.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card The Hungering Blade (1) 17f807.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card The Hungering Blade (1) 17f807.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card The Hungering Blade (1) 17f807.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card The Hungering Blade (1) 17f807.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Vicious Blow (2) 8f5533.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Vicious Blow (2) 8f5533.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Vicious Blow (2) 8f5533.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Vicious Blow (2) 8f5533.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Well Prepared (2) 1fc1f4.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Well Prepared (2) 1fc1f4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Well Prepared (2) 1fc1f4.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Well Prepared (2) 1fc1f4.yaml diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Well-Maintained (1) 0c2f37.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Well-Maintained (1) 0c2f37.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Well-Maintained (1) 0c2f37.yaml rename to unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Well-Maintained (1) 0c2f37.yaml index 7a966a795..e782c711c 100644 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8/Card Well-Maintained (1) 0c2f37.yaml +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian a3401d/Card Well-Maintained (1) 0c2f37.yaml @@ -38,7 +38,7 @@ Transform: posZ: -63.98 rotX: 0.02 rotY: 269.98 - rotZ: 0.74 + rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8.yaml deleted file mode 100644 index 21a06d941..000000000 --- a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian e529d8.yaml +++ /dev/null @@ -1,119 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Guardian e529d8/Card Physical Training (4) ab51ce.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card One-Two Punch (5) 8ffa44.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Taunt (3) 85fe46.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Dynamite Blast (3) 14dcc4.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Boxing Gloves (3) 54293e.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Grete Wagner (3) b39b78.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Overpower (2) 017e1f.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Counterpunch (2) 92436b.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Get over here! (2) 415ca2.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Lesson Learned (2) 037b2e.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Mano a Mano (2) 14424c.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Evidence! (1) 3df5fb.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Galvanize (1) 9e7f6a.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Empty Vessel (4) 043971.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Flamethrower (5) 066c18.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Custom Ammunition (3) 0c278c.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Well-Maintained (1) 0c2f37.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Marksmanship (1) 1408ad.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card .32 Colt (2) 15fa11.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card The Hungering Blade (1) 17f807.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Reliable (1) 187591.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Armor of Ardennes (5) 1c0bcd.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Beat Cop (2) 1e7f9a.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Well Prepared (2) 1fc1f4.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Kerosene (1) 218e04.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Keen Eye (3) 22256f.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Police Badge (2) 2901ee.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Dynamite Blast (2) 2b76c6.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Telescopic Sight (3) 2badf6.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Ace of Swords (1) 32b458.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Ambush (1) 36ffa9.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Shotgun (4) 3a622d.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Stand Together (3) 3accaf.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Springfield M1903 (4) 3b042e.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Blood Eclipse (3) 537351.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Extra Ammunition (1) 5761c7.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Fool me once... (1) 596620.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card I''ve had worse... (4) 5a4bb5.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Brother Xavier (1) 5a7137.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Enchanted Blade (3) 5cfb72.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Blood Eclipse (1) 5efc92.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Physical Training (2) 62392c.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Lightning Gun (5) 639a09.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card .45 Thompson (3) 650903.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Monster Slayer (5) 661c3f.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card M1918 BAR (4) 6c6340.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Spiritual Resolve (5) 7ab680.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Safeguard (2) 7dc42a.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card First Aid (3) 80d5e3.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Leadership (2) 80fafa.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Mano a Mano (1) 88d2ba.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Combat Training (1) 88fdeb.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Vicious Blow (2) 8f5533.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Heroic Rescue (2) 93381d.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Stick to the Plan (3) a26425.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Ever Vigilant (1) ab620e.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Mk 1 Grenades (4) afef79.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Bandolier (2) bdffae.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Survival Knife (2) c1d796.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Eat lead! (2) c4018c.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Taunt (2) d93397.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card .45 Automatic (2) e1ef43.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card I''ve had worse... (2) e3ae5c.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Blackjack (2) e56d1d.yaml' -- !include 'Custom_Model_Bag Guardian e529d8/Card Agency Backup (5) f54b74.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: '' -DragSelectable: true -GMNotes: '' -GUID: e529d8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Guardian e529d8.ttslua' -LuaScriptState: '{"ml":{"017e1f":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950915813446,"z":-49.7709617614746},"rot":{"x":0.0208087116479874,"y":269.999145507813,"z":0.0167708992958069}},"037b2e":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29687976837158,"z":-86.5202484130859},"rot":{"x":0.0208094529807568,"y":269.997528076172,"z":0.0167702399194241}},"043971":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.008430480957},"rot":{"x":0.0208088364452124,"y":269.998962402344,"z":0.0167706701904535}},"066c18":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.4083099365234},"rot":{"x":0.020812600851059,"y":269.986053466797,"z":0.0167660694569349}},"0c278c":{"lock":false,"pos":{"x":49.274528503418,"y":1.3063223361969,"z":-49.708812713623},"rot":{"x":0.0208088085055351,"y":269.998748779297,"z":0.0167706850916147}},"0c2f37":{"lock":false,"pos":{"x":52.9442481994629,"y":1.31544828414917,"z":-70.4206771850586},"rot":{"x":0.0208147875964642,"y":269.978454589844,"z":0.742669463157654}},"1408ad":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208151116967201,"y":269.977447509766,"z":0.0167629327625036}},"14424c":{"lock":false,"pos":{"x":52.9284210205078,"y":1.29620397090912,"z":-88.8097076416016},"rot":{"x":0.0208087153732777,"y":269.9990234375,"z":0.0167709030210972}},"14dcc4":{"lock":false,"pos":{"x":49.2784996032715,"y":1.30565047264099,"z":-52.0087699890137},"rot":{"x":0.0208091102540493,"y":269.998779296875,"z":0.016771474853158}},"15fa11":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036306381226,"z":-58.9200057983398},"rot":{"x":0.0208087470382452,"y":269.999755859375,"z":0.0167711228132248}},"17f807":{"lock":false,"pos":{"x":40.2899856567383,"y":1.30103969573975,"z":-56.6086387634277},"rot":{"x":0.0208086650818586,"y":269.999176025391,"z":0.0167710445821285}},"187591":{"lock":false,"pos":{"x":52.9419898986816,"y":1.30221772193909,"z":-68.2735443115234},"rot":{"x":0.0208369139581919,"y":269.977355957031,"z":0.0166110564023256}},"1c0bcd":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083068847656},"rot":{"x":0.0208127722144127,"y":269.985900878906,"z":0.0167660973966122}},"1e7f9a":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208085160702467,"y":269.999542236328,"z":0.0167709700763226}},"1fc1f4":{"lock":false,"pos":{"x":40.2899971008301,"y":1.29430389404297,"z":-79.6198883056641},"rot":{"x":0.0208158474415541,"y":269.974731445313,"z":0.0167619977146387}},"218e04":{"lock":false,"pos":{"x":40.2900657653809,"y":1.30170965194702,"z":-54.3199005126953},"rot":{"x":0.0208080373704433,"y":270.001770019531,"z":0.0167718436568975}},"22256f":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208036489784718,"y":270.016387939453,"z":0.016777016222477}},"2901ee":{"lock":false,"pos":{"x":40.2900657653809,"y":1.29632365703583,"z":-72.7199859619141},"rot":{"x":0.0208085849881172,"y":270.000122070313,"z":0.0167713407427073}},"2b76c6":{"lock":false,"pos":{"x":52.9369277954102,"y":1.30024325847626,"z":-75.0206756591797},"rot":{"x":0.0208088699728251,"y":269.997833251953,"z":0.0167694501578808}},"2badf6":{"lock":false,"pos":{"x":49.278491973877,"y":1.30363070964813,"z":-58.9087905883789},"rot":{"x":0.0208089184015989,"y":269.998748779297,"z":0.0167706552892923}},"32b458":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208086594939232,"y":269.999206542969,"z":0.0167707484215498}},"33fb3a":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208096783608198,"y":269.997863769531,"z":0.0167707931250334}},"36ffa9":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208150930702686,"y":269.977416992188,"z":0.016762861981988}},"390a86":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30565047264099,"z":-52.0087776184082},"rot":{"x":0.0208108201622963,"y":269.992736816406,"z":0.0167682971805334}},"3a622d":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29836189746857,"z":-61.2084426879883},"rot":{"x":0.0208088252693415,"y":269.998962402344,"z":0.0167707577347755}},"3accaf":{"lock":false,"pos":{"x":49.278491973877,"y":1.3049772977829,"z":-54.3087844848633},"rot":{"x":0.0208089053630829,"y":269.998748779297,"z":0.0167706366628408}},"3b042e":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29768872261047,"z":-63.5084457397461},"rot":{"x":0.0208088848739862,"y":269.998962402344,"z":0.0167709160596132}},"3df5fb":{"lock":false,"pos":{"x":52.9442176818848,"y":1.3063051700592,"z":-54.3203392028809},"rot":{"x":0.0208086371421814,"y":270,"z":0.0167711433023214}},"415ca2":{"lock":false,"pos":{"x":52.9442100524902,"y":1.29889953136444,"z":-79.6202392578125},"rot":{"x":0.0208085756748915,"y":269.999176025391,"z":0.0167709477245808}},"43b3a5":{"lock":false,"pos":{"x":49.278491973877,"y":1.30161106586456,"z":-65.8086547851563},"rot":{"x":0.0208033956587315,"y":270.020324707031,"z":0.0167789477854967}},"467460":{"lock":false,"pos":{"x":52.9189834594727,"y":1.29620051383972,"z":-88.809700012207},"rot":{"x":0.0208094883710146,"y":269.997192382813,"z":0.016770800575614}},"537351":{"lock":false,"pos":{"x":49.2767753601074,"y":1.30699634552002,"z":-47.4087905883789},"rot":{"x":0.0208087302744389,"y":269.998748779297,"z":0.0167708117514849}},"54293e":{"lock":false,"pos":{"x":40.289966583252,"y":1.29295742511749,"z":-84.2198791503906},"rot":{"x":0.0208087712526321,"y":269.998901367188,"z":0.0167708322405815}},"5761c7":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30563187599182,"z":-56.6203498840332},"rot":{"x":0.0208151452243328,"y":269.977386474609,"z":0.0167629923671484}},"596620":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208153128623962,"y":269.977416992188,"z":0.0167630389332771}},"59bdfb":{"lock":false,"pos":{"x":49.278491973877,"y":1.30430400371552,"z":-56.6087875366211},"rot":{"x":0.0208091381937265,"y":269.998748779297,"z":0.0167705006897449}},"5a4bb5":{"lock":false,"pos":{"x":49.278491973877,"y":1.30295753479004,"z":-61.2087936401367},"rot":{"x":0.0208086315542459,"y":269.999694824219,"z":0.0167710706591606}},"5a7137":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208086967468262,"y":269.999206542969,"z":0.0167707167565823}},"5cfb72":{"lock":false,"pos":{"x":40.2900848388672,"y":1.2922842502594,"z":-86.5199203491211},"rot":{"x":0.0208037253469229,"y":270.016479492188,"z":0.0167770199477673}},"5efc92":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208152122795582,"y":269.977416992188,"z":0.0167629234492779}},"62392c":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208088885992765,"y":269.999450683594,"z":0.0167708992958069}},"639a09":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7083969116211},"rot":{"x":0.0208125412464142,"y":269.985961914063,"z":0.0167660769075155}},"650903":{"lock":false,"pos":{"x":40.2920799255371,"y":1.29363143444061,"z":-81.9201278686523},"rot":{"x":0.0208036415278912,"y":270.016571044922,"z":0.0167771019041538}},"661c3f":{"lock":false,"pos":{"x":49.278491973877,"y":1.30228424072266,"z":-63.5088005065918},"rot":{"x":0.0208086743950844,"y":269.999084472656,"z":0.0167708806693554}},"6b130d":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.0208151154220104,"y":269.977416992188,"z":0.0167628526687622}},"6c6340":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038177967072,"z":-54.3084411621094},"rot":{"x":0.020809069275856,"y":269.998962402344,"z":0.0167707540094852}},"7ab680":{"lock":false,"pos":{"x":36.624340057373,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.020812539383769,"y":269.986053466797,"z":0.0167659856379032}},"7dc42a":{"lock":false,"pos":{"x":40.2911109924316,"y":1.29564726352692,"z":-75.0319519042969},"rot":{"x":0.0208005644381046,"y":270.027770996094,"z":0.0167813431471586}},"80d5e3":{"lock":false,"pos":{"x":40.2742652893066,"y":1.29160833358765,"z":-88.8093643188477},"rot":{"x":0.0208036433905363,"y":270.016479492188,"z":0.0167771484702826}},"80fafa":{"lock":false,"pos":{"x":58.0996551513672,"y":1.31018245220184,"z":-47.4709815979004},"rot":{"x":0.0208081807941198,"y":270.001251220703,"z":0.0167715102434158}},"85fe46":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30430400371552,"z":-56.6087913513184},"rot":{"x":0.0208089351654053,"y":269.998840332031,"z":0.0167702734470367}},"88d2ba":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208149738609791,"y":269.977447509766,"z":0.016763074323535}},"88fdeb":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208089631050825,"y":269.999206542969,"z":0.0167710203677416}},"8f5533":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30883586406708,"z":-52.070972442627},"rot":{"x":0.0208083353936672,"y":270.000335693359,"z":0.0167711824178696}},"8ffa44":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30161106586456,"z":-65.8086547851563},"rot":{"x":0.0208098106086254,"y":269.998748779297,"z":0.0167710836976767}},"92436b":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.7203369140625},"rot":{"x":0.0208087135106325,"y":269.999206542969,"z":0.0167707856744528}},"93381d":{"lock":false,"pos":{"x":52.9462356567383,"y":1.2982269525528,"z":-81.9204788208008},"rot":{"x":0.0208091642707586,"y":269.997680664063,"z":0.0167702808976173}},"9e7f6a":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428540706635,"z":-61.2203521728516},"rot":{"x":0.0208084508776665,"y":270,"z":0.0167711284011602}},"a0e05d":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208150893449783,"y":269.977416992188,"z":0.0167628861963749}},"a26425":{"lock":false,"pos":{"x":36.6243438720703,"y":1.3017281293869,"z":-49.7084579467773},"rot":{"x":0.02080362662673,"y":270.016357421875,"z":0.0167771000415087}},"ab51ce":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29903519153595,"z":-58.9084396362305},"rot":{"x":0.0208090394735336,"y":269.998779296875,"z":0.0167716480791569}},"ab620e":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208151750266552,"y":269.977416992188,"z":0.0167628806084394}},"afef79":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084442138672},"rot":{"x":0.0208088904619217,"y":269.998962402344,"z":0.0167706850916147}},"b39b78":{"lock":false,"pos":{"x":40.2741165161133,"y":1.29093325138092,"z":-91.1157913208008},"rot":{"x":0.0208087246865034,"y":269.998901367188,"z":0.0167706664651632}},"b7c4cb":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30737829208374,"z":-54.3203010559082},"rot":{"x":0.0208084303885698,"y":270.000091552734,"z":0.016771150752902}},"bdffae":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.020808856934309,"y":269.999633789063,"z":0.0167709700763226}},"c1d796":{"lock":false,"pos":{"x":40.2900390625,"y":1.29497718811035,"z":-77.3199005126953},"rot":{"x":0.0208085887134075,"y":269.999969482422,"z":0.0167713109403849}},"c4018c":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29957270622253,"z":-77.3202590942383},"rot":{"x":0.0208092611283064,"y":269.997711181641,"z":0.016770463436842}},"c5aa89":{"lock":false,"pos":{"x":52.9284706115723,"y":1.29687416553497,"z":-86.5200881958008},"rot":{"x":0.0208092648535967,"y":269.99755859375,"z":0.0167701691389084}},"cdb540":{"lock":false,"pos":{"x":40.2899551391602,"y":1.29295742511749,"z":-84.2199020385742},"rot":{"x":0.0208042934536934,"y":270.016510009766,"z":0.0167777873575687}},"d93397":{"lock":false,"pos":{"x":52.9282722473145,"y":1.2955287694931,"z":-91.1161346435547},"rot":{"x":0.020809281617403,"y":269.997436523438,"z":0.0167701691389084}},"ddc9f8":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1158065795898},"rot":{"x":0.0208043809980154,"y":270.016479492188,"z":0.0167777389287949}},"dddd59":{"lock":false,"pos":{"x":44.2289009094238,"y":1.30152595043182,"z":-63.5009002685547},"rot":{"x":0.0208084173500538,"y":270,"z":0.016771262511611}},"de2d0a":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30950915813446,"z":-49.7709693908691},"rot":{"x":0.0208082906901836,"y":270.001678466797,"z":0.0167713053524494}},"e1748c":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208088457584381,"y":269.998962402344,"z":0.0167707521468401}},"e1ef43":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208084676414728,"y":269.999664306641,"z":0.0167711470276117}},"e3ae5c":{"lock":false,"pos":{"x":52.9414558410645,"y":1.29755198955536,"z":-84.2202682495117},"rot":{"x":0.0208093579858541,"y":269.997375488281,"z":0.0167702063918114}},"e55fe0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29889953136444,"z":-79.6202621459961},"rot":{"x":0.0208096522837877,"y":269.997619628906,"z":0.0167706999927759}},"e56d1d":{"lock":false,"pos":{"x":40.2900466918945,"y":1.2976701259613,"z":-68.119873046875},"rot":{"x":0.0208088513463736,"y":269.999420166016,"z":0.0167710110545158}},"f54b74":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083038330078},"rot":{"x":0.0208126213401556,"y":269.986022949219,"z":0.0167660675942898}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Guardian -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.32 - posY: 1.67 - posZ: -63.98 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml index 920d0b409..3e29d32db 100644 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml @@ -4,8 +4,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: +- !include 'Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657.yaml' - !include 'Custom_Model_Bag Leaked Items 42cd6e/Bag Devil Reef 57a8d9.yaml' -- !include 'Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657.yaml' CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657.yaml new file mode 100644 index 000000000..27733463d --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.169773847 + g: 0.196864039 + r: 0.129985124 +ContainedObjects: +- !include 'Bag Horror in High Gear 183657/CardCustom Signum Crucis (2) 549de5.yaml' +- !include 'Bag Horror in High Gear 183657/CardCustom Tristan Botley (2) 845053.yaml' +- !include "Bag Horror in High Gear 183657/CardCustom R\xEDastrad (1) ff6e31.yaml" +- !include 'Bag Horror in High Gear 183657/CardCustom Enchanted Armor (2) a18819.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '183657' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Horror in High Gear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.33 + posY: 3.13 + posZ: -38.41 + rotX: -0.01 + rotY: -0.0 + rotZ: 359.98 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Eldritch Sophist 3267cc.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Enchanted Armor (2) a18819.yaml similarity index 58% rename from unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Eldritch Sophist 3267cc.yaml rename to unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Enchanted Armor (2) a18819.yaml index 3981f9a52..87dc00308 100644 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Eldritch Sophist 3267cc.yaml +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Enchanted Armor (2) a18819.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 549300 +CardID: 553500 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5493': + '5535': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/766099859120034153/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373727958826520/EE54EF6510734FC86ADD47E84DB253493A2F87B7/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632247/1E1B6D93DBC33FA7C8DC93C7D06B7964CAD98AD0/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 3267cc +GUID: a18819 Grid: true GridProjection: false Hands: true @@ -27,18 +27,18 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: CardCustom -Nickname: Eldritch Sophist +Nickname: Enchanted Armor (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 21.51 - posY: 3.57 - posZ: -16.88 - rotX: 0.92 - rotY: 269.96 - rotZ: 356.19 + posX: 15.22 + posY: 3.5 + posZ: -24.68 + rotX: 357.95 + rotY: 270.07 + rotZ: 357.04 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Ancient Covenant (2) 436401.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Ríastrad (1) ff6e31.yaml similarity index 59% rename from unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Ancient Covenant (2) 436401.yaml rename to unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Ríastrad (1) ff6e31.yaml index da179f42d..348134941 100644 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Ancient Covenant (2) 436401.yaml +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Ríastrad (1) ff6e31.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 546600 +CardID: 553600 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5466': + '5536': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1597044073918730334/45D2725C3553953A73DAFBEF631E78D459716EA7/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507630340/07BD7D0674499D3B5B315239E1B9682B6E4D8285/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: '436401' +GUID: ff6e31 Grid: true GridProjection: false Hands: true @@ -27,18 +27,18 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: CardCustom -Nickname: Ancient Covenant (2) +Nickname: "R\xEDastrad (1)" SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 20.86 - posY: 3.55 - posZ: -18.03 - rotX: 2.04 + posX: 13.99 + posY: 3.51 + posZ: -25.5 + rotX: 2.2 rotY: 270.06 - rotZ: 2.53 + rotZ: 2.51 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Blasphemous Covenant (2) 10b087.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Signum Crucis (2) 549de5.yaml similarity index 57% rename from unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Blasphemous Covenant (2) 10b087.yaml rename to unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Signum Crucis (2) 549de5.yaml index 76db0c2af..586e6a1b9 100644 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Blasphemous Covenant (2) 10b087.yaml +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Signum Crucis (2) 549de5.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 545700 +CardID: 553700 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5457': + '5537': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1597044073918730883/0E7FEB9CC85CD11EB5194774E90A73163EDACBEC/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632620/1C7C9B898C919EDAD757709C161F0DFFF3FA9238/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 10b087 +GUID: 549de5 Grid: true GridProjection: false Hands: true @@ -27,18 +27,18 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: CardCustom -Nickname: Blasphemous Covenant (2) +Nickname: Signum Crucis (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 21.26 - posY: 3.55 - posZ: -16.8 - rotX: 1.4 - rotY: 269.94 - rotZ: 356.51 + posX: 14.76 + posY: 3.53 + posZ: -24.94 + rotX: 358.88 + rotY: 270.03 + rotZ: 357.48 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Tristan Botley (2) 845053.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Tristan Botley (2) 845053.yaml new file mode 100644 index 000000000..17b98e292 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Horror in High Gear 183657/CardCustom Tristan Botley (2) 845053.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5538': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870529507632983/CC643186858EEC718B5F3FEA9CD7D0CEDE055F13/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Fixer for Hire +DragSelectable: true +GMNotes: '' +GUID: '845053' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Tristan Botley (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.11 + posY: 3.52 + posZ: -25.28 + rotX: 357.4 + rotY: 269.97 + rotZ: 1.01 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657.yaml deleted file mode 100644 index 57350acbe..000000000 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657.yaml +++ /dev/null @@ -1,41 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 0.641792357 - g: 0.890244 - r: 0.271415532 -ContainedObjects: -- !include 'Bag In Too Deep 183657/CardCustom Ancient Covenant (2) 436401.yaml' -- !include 'Bag In Too Deep 183657/CardCustom Skeptic (1) 253018.yaml' -- !include 'Bag In Too Deep 183657/CardCustom Blasphemous Covenant (2) 10b087.yaml' -- !include 'Bag In Too Deep 183657/CardCustom Eldritch Sophist 3267cc.yaml' -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '183657' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: In Too Deep -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 30.48 - posY: 7.3 - posZ: -27.92 - rotX: 0.0 - rotY: -0.0 - rotZ: 359.96 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d.ttslua b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d.ttslua new file mode 100644 index 000000000..d4332d4c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d.yaml b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d.yaml new file mode 100644 index 000000000..1792f406e --- /dev/null +++ b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d.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 Maximillion Pegasus Custom Investigator 84be1d/CardCustom + Millennium Eye ef8ae4.yaml' +- !include 'Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom + Maximillion Pegasus 3ff7c0.yaml' +- !include 'Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom + Maximillion Pegasus 16ccdc.yaml' +- !include 'Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/Deck 8a25c7.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/1684870715280907223/1E9DE758F089D7F880ADC8CA594F9AA938743F8B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: By Game#0398 +DragSelectable: true +GMNotes: '' +GUID: 84be1d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d.ttslua' +LuaScriptState: '{"ml":{"16ccdc":{"lock":false,"pos":{"x":-16.6403007507324,"y":1.31316602230072,"z":-69.0603103637695},"rot":{"x":0.020808843895793,"y":269.999938964844,"z":0.0167706795036793}},"3ff7c0":{"lock":false,"pos":{"x":-19.295877456665,"y":1.31220149993896,"z":-69.0607070922852},"rot":{"x":0.020808769389987,"y":270.000030517578,"z":0.0167712140828371}},"8a25c7":{"lock":false,"pos":{"x":-26.3002052307129,"y":1.34105372428894,"z":-69.0606002807617},"rot":{"x":0.0208090171217918,"y":270,"z":0.0167707595974207}},"ef8ae4":{"lock":false,"pos":{"x":-22.6156921386719,"y":1.31099140644073,"z":-69.0756149291992},"rot":{"x":0.0208058264106512,"y":270.009246826172,"z":0.0167744681239128}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Maximillion Pegasus Custom Investigator +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.54 + posY: 1.43 + posZ: -16.28 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.36 + scaleY: 0.28 + scaleZ: 1.49 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Maximillion Pegasus 16ccdc.yaml b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Maximillion Pegasus 16ccdc.yaml new file mode 100644 index 000000000..873dce4eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Maximillion Pegasus 16ccdc.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 449700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4497': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252069122/3F3B498F86C6EF207BC57E0AD9E3C43EB7DF21D6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252068502/92BF63967B972576C8E21BC1FE1369E498464B50/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 16ccdc +Grid: false +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Maximillion Pegasus +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.64 + posY: 1.31 + posZ: -69.06 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Maximillion Pegasus 3ff7c0.yaml b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Maximillion Pegasus 3ff7c0.yaml new file mode 100644 index 000000000..4921901e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Maximillion Pegasus 3ff7c0.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 449100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4491': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252055874/348880C701158794EEE3AAF5AE87B4D6940FEC28/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252055512/DE1C069A4E623001009A834B9ECDE7AF63215C6D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: The President +DragSelectable: true +GMNotes: '' +GUID: 3ff7c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Maximillion Pegasus +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.3 + posY: 1.31 + posZ: -69.06 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Skeptic (1) 253018.yaml b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Millennium Eye ef8ae4.yaml similarity index 59% rename from unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Skeptic (1) 253018.yaml rename to unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Millennium Eye ef8ae4.yaml index 71eba54d6..bf874169e 100644 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag In Too Deep 183657/CardCustom Skeptic (1) 253018.yaml +++ b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/CardCustom Millennium Eye ef8ae4.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 550100 +CardID: 449400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5501': + '4494': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1537373966843931844/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1537373966843940006/71700050B0B2CD56C458047D94B9E605ED01B989/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252061978/CD7FE2E56264066865A44318A6227DC25501F189/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: '253018' +GUID: ef8ae4 Grid: true GridProjection: false Hands: true @@ -27,18 +27,18 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: CardCustom -Nickname: Skeptic (1) +Nickname: Millennium Eye SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 21.82 - posY: 3.55 - posZ: -16.68 - rotX: 359.85 + posX: -22.62 + posY: 1.31 + posZ: -69.08 + rotX: 0.02 rotY: 270.01 - rotZ: 356.01 + rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/Deck 8a25c7.yaml b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/Deck 8a25c7.yaml new file mode 100644 index 000000000..9e06856a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Maximillion Pegasus Custom Investigator 84be1d/Deck 8a25c7.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 449500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4495': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252063059/69B5F2FAA828441094DA4DE8F426B4F45AC17B7A/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: ede645 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Mirror Match + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.520771 + posY: 1.40046978 + posZ: -72.95467 + rotX: 0.0126066888 + rotY: 270.002747 + rotZ: 180.434265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252206440/995858C7E13C73B0B1086787545BCB5762485328/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 2b213a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: America + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6153889 + posY: 1.39129615 + posZ: -72.7226944 + rotX: 0.0126913991 + rotY: 270.002 + rotZ: 180.3607 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060096/BA684DE42B16B7E87E340A66897A9B83F63487DE/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 9347f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Joey-Boy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3810349 + posY: 1.37897 + posZ: -72.89627 + rotX: 0.0128096463 + rotY: 270.0008 + rotZ: 180.374649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4493': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252061132/AC54B36A247B76AAF6D985AA6E8A618E5114DE68/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 2ea333 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Kaiba-Boy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6069336 + posY: 1.38366175 + posZ: -72.44255 + rotX: 0.0125486581 + rotY: 269.9996 + rotZ: 181.4113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4496': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252064060/465A6F8629964DC2D6CCF899E82C0CBE21039A81/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: eee7b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Yugi-Boy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.7013073 + posY: 1.30885 + posZ: -72.5629959 + rotX: 0.02080783 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252206440/995858C7E13C73B0B1086787545BCB5762485328/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '4492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060096/BA684DE42B16B7E87E340A66897A9B83F63487DE/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '4493': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252061132/AC54B36A247B76AAF6D985AA6E8A618E5114DE68/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '4495': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252063059/69B5F2FAA828441094DA4DE8F426B4F45AC17B7A/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '4496': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016069769252060389/A2C325CF1EE748C46F0C4D8C57EB842E838B2659/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016069769252064060/465A6F8629964DC2D6CCF899E82C0CBE21039A81/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 449500 +- 266200 +- 449200 +- 449300 +- 449600 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8a25c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.3 + posY: 1.34 + posZ: -69.06 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Miskatonic Mouse 0954ef.yaml b/unpacked/Custom_Model_Bag Miskatonic Mouse 0954ef.yaml index bdc978e89..76ecbe799 100644 --- a/unpacked/Custom_Model_Bag Miskatonic Mouse 0954ef.yaml +++ b/unpacked/Custom_Model_Bag Miskatonic Mouse 0954ef.yaml @@ -97,9 +97,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.45 + posX: 32.69 posY: 1.43 - posZ: -13.12 + posZ: -10.1 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1.yaml index 49cbde679..0d2ee9816 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1.yaml @@ -4,26 +4,17 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Azure Flame (5) 0ee874.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (5) e21200.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (5) f00301.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (3) 604ed6.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (4) 0e808b.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (3) 943332.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Grotesque Statue (2) 6b2e97.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Robes of Endless Night (2) ef43db.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Azure Flame (3) c5fb42.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Hypnotic Gaze (2) e2bc49.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Recharge (4) 591789.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Guts (2) 219c78.yaml' -- !include 'Custom_Model_Bag Mystic 6117a1/Card Eldritch Inspiration (1) e84eff.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Paradoxical Covenant (2) 541ee9.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 Mists of R''lyeh (4) 0e2b00.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (4) 0e808b.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Summoned Hound (1) 0e8b75.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Azure Flame (5) 0ee874.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Word of Command (2) 16154f.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (3) 17c6c8.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Guts (2) 219c78.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Banish (1) 2403fa.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Scrying (3) 2b7765.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) 31051f.yaml' @@ -34,8 +25,11 @@ ContainedObjects: - !include 'Custom_Model_Bag Mystic 6117a1/Card Arcane Initiate (3) 45e559.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Mind''s Eye (2) 4e86c1.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Counterspell (2) 4fb7c0.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Recharge (4) 591789.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Clarity of Mind (3) 598837.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (3) 604ed6.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card The Chthonian Stone (3) 698fcc.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Grotesque Statue (2) 6b2e97.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Grounded (1) 7da732.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Seal of the Seventh Sign (5) 8272e9.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (3) 82d9bb.yaml' @@ -43,6 +37,7 @@ ContainedObjects: - !include 'Custom_Model_Bag Mystic 6117a1/Card Crystalline Elder Sign (3) 8c0e3b.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Bind Monster (2) 8f6cb3.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Seal of the Elder Sign (5) 918fde.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (3) 943332.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Stargazing (1) 9c0a3d.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Spirit Athame (1) a1c372.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Storm of Spirits (3) a906ee.yaml' @@ -55,16 +50,22 @@ ContainedObjects: - !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 Defiance (2) c311be.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Azure Flame (3) c5fb42.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Wither (4) c78082.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card De Vermis Mysteriis (2) cb968f.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Deny Existence (5) d26b84.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Song of the Dead (2) d4d8c4.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Alchemical Transmutation (2) d74e66.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (5) e21200.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Hypnotic Gaze (2) e2bc49.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Fearless (2) e53458.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Eldritch Inspiration (1) e84eff.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (4) ea3df4.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Time Warp (2) ec3a71.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Robes of Endless Night (2) ef43db.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Sacrifice (1) ef52e6.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Shining Trapezohedron (4) ef7b23.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (5) f00301.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Shrivelling (3) f1654d.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Recharge (2) f560b1.yaml' - !include 'Custom_Model_Bag Mystic 6117a1/Card Shards of the Void (3) f651e8.yaml' @@ -103,7 +104,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Mystic 6117a1.ttslua' -LuaScriptState: '{"ml":{"053015":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.0208089146763086,"y":269.998718261719,"z":0.0167709160596132}},"0919cf":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083145141602},"rot":{"x":0.0208089556545019,"y":269.998626708984,"z":0.0167706999927759}},"09ffbe":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208091791719198,"y":269.998870849609,"z":0.0167703963816166}},"0e2b00":{"lock":false,"pos":{"x":36.608642578125,"y":1.29028046131134,"z":-88.7977600097656},"rot":{"x":0.020510071888566,"y":271.009094238281,"z":0.0171350613236427}},"0e808b":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29162955284119,"z":-84.2085952758789},"rot":{"x":0.0208126381039619,"y":269.986358642578,"z":0.016766270622611}},"0e8b75":{"lock":false,"pos":{"x":40.2900810241699,"y":1.30036306381226,"z":-58.9199829101563},"rot":{"x":0.0208085887134075,"y":269.999694824219,"z":0.0167711116373539}},"0ee874":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29905998706818,"z":-54.3086357116699},"rot":{"x":0.0208140704780817,"y":269.981323242188,"z":0.01676413603127}},"16154f":{"lock":false,"pos":{"x":52.944206237793,"y":1.30024600028992,"z":-75.0203323364258},"rot":{"x":0.0208087489008904,"y":269.999481201172,"z":0.0167708918452263}},"17c6c8":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.0084266662598},"rot":{"x":0.0208086762577295,"y":269.998901367188,"z":0.0167708303779364}},"219c78":{"lock":false,"pos":{"x":58.099666595459,"y":1.30883586406708,"z":-52.0712699890137},"rot":{"x":0.0208075642585754,"y":270.003112792969,"z":0.0167722217738628}},"2403fa":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208089780062437,"y":269.998504638672,"z":0.0167704503983259}},"25c498":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208089295774698,"y":269.998504638672,"z":0.016770213842392}},"2b7765":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7084045410156},"rot":{"x":0.0208089705556631,"y":269.998596191406,"z":0.0167705155909061}},"31051f":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208085142076015,"y":269.999542236328,"z":0.016771100461483}},"3c7e85":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208090655505657,"y":269.998504638672,"z":0.016770638525486}},"3d57b4":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430389404297,"z":-79.6199111938477},"rot":{"x":0.0208089090883732,"y":269.999603271484,"z":0.0167709570378065}},"426c61":{"lock":false,"pos":{"x":40.2899551391602,"y":1.29295742511749,"z":-84.2199020385742},"rot":{"x":0.0208086743950844,"y":269.999572753906,"z":0.0167708955705166}},"443992":{"lock":false,"pos":{"x":52.944206237793,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208085216581821,"y":269.99951171875,"z":0.0167710389941931}},"45e559":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1157989501953},"rot":{"x":0.0208088047802448,"y":269.998901367188,"z":0.0167706552892923}},"4e86c1":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497718811035,"z":-77.3199081420898},"rot":{"x":0.0208085607737303,"y":269.999603271484,"z":0.0167708825320005}},"4fb7c0":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30361223220825,"z":-63.5203514099121},"rot":{"x":0.0208088103681803,"y":269.999450683594,"z":0.0167710557579994}},"576e76":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208088215440512,"y":269.998962402344,"z":0.0167707912623882}},"591789":{"lock":false,"pos":{"x":52.9462623596191,"y":1.29822671413422,"z":-81.9207382202148},"rot":{"x":0.0208091624081135,"y":269.997833251953,"z":0.0167707018554211}},"598837":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.0208087954670191,"y":269.998779296875,"z":0.0167706031352282}},"5a7a85":{"lock":false,"pos":{"x":44.2289886474609,"y":1.30017948150635,"z":-68.100715637207},"rot":{"x":0.0208088550716639,"y":269.999420166016,"z":0.0167716145515442}},"5ae7f5":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.020809218287468,"y":269.999603271484,"z":0.0167712103575468}},"604ed6":{"lock":false,"pos":{"x":36.624340057373,"y":1.30038154125214,"z":-54.3087425231934},"rot":{"x":0.0208110976964235,"y":269.991760253906,"z":0.0167680587619543}},"698fcc":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29297602176666,"z":-79.6082916259766},"rot":{"x":0.0208091381937265,"y":269.998474121094,"z":0.0167706478387117}},"6b2e97":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29565048217773,"z":-75.0203018188477},"rot":{"x":0.0208094827830791,"y":269.997192382813,"z":0.01677006483078}},"764515":{"lock":false,"pos":{"x":58.1054992675781,"y":1.30883800983429,"z":-52.0710487365723},"rot":{"x":0.020804388448596,"y":270.014465332031,"z":0.0167762618511915}},"7da732":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208087172359228,"y":269.999694824219,"z":0.0167710073292255}},"8272e9":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29704034328461,"z":-61.2083396911621},"rot":{"x":0.0208038911223412,"y":270.016479492188,"z":0.0167772267013788}},"82d9bb":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957282543182,"z":-77.3202514648438},"rot":{"x":0.0208086743950844,"y":269.999603271484,"z":0.0167710445821285}},"86ed13":{"lock":false,"pos":{"x":36.6243324279785,"y":1.3017281293869,"z":-49.7084655761719},"rot":{"x":0.0208088364452124,"y":269.998779296875,"z":0.0167706906795502}},"8c0e3b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208088476210833,"y":269.998748779297,"z":0.0167707279324532}},"8f6cb3":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208086296916008,"y":269.999450683594,"z":0.0167708750814199}},"918fde":{"lock":false,"pos":{"x":58.0996627807617,"y":1.30816268920898,"z":-54.3709754943848},"rot":{"x":0.0208086110651493,"y":269.999542236328,"z":0.0167710445821285}},"943332":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29701542854309,"z":-65.8086090087891},"rot":{"x":0.0208125486969948,"y":269.986572265625,"z":0.0167660806328058}},"94ebe8":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29162955284119,"z":-84.2083053588867},"rot":{"x":0.020510608330369,"y":271.009094238281,"z":0.0171348657459021}},"9c0a3d":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563187599182,"z":-56.6203422546387},"rot":{"x":0.0208090599626303,"y":269.998504638672,"z":0.0167705416679382}},"9c8a39":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083114624023},"rot":{"x":0.0208093039691448,"y":269.998687744141,"z":0.016771238297224}},"a1c372":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208085849881172,"y":269.999694824219,"z":0.016770988702774}},"a766a3":{"lock":false,"pos":{"x":32.985279083252,"y":1.29906010627747,"z":-54.3083381652832},"rot":{"x":0.0208035446703434,"y":270.0166015625,"z":0.0167771261185408}},"a7e5a4":{"lock":false,"pos":{"x":40.6758575439453,"y":1.30292499065399,"z":-54.3128776550293},"rot":{"x":0.0208086613565683,"y":269.999725341797,"z":0.0167705696076155}},"a906ee":{"lock":false,"pos":{"x":52.9442100524902,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208088513463736,"y":269.999450683594,"z":0.0167709831148386}},"b49ef1":{"lock":false,"pos":{"x":40.2900390625,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208086259663105,"y":269.999572753906,"z":0.016770863905549}},"b9b811":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29230272769928,"z":-81.9085006713867},"rot":{"x":0.020808931440115,"y":269.998443603516,"z":0.0167706217616796}},"b9dd5d":{"lock":false,"pos":{"x":32.985294342041,"y":1.30040621757507,"z":-49.7095527648926},"rot":{"x":0.0208111759275198,"y":269.990661621094,"z":0.0167678687721491}},"bb7d83":{"lock":false,"pos":{"x":32.9852905273438,"y":1.29636716842651,"z":-63.5083389282227},"rot":{"x":0.0208036731928587,"y":270.016479492188,"z":0.0167771652340889}},"bb9d20":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.0208088792860508,"y":269.998565673828,"z":0.0167707521468401}},"bdddfa":{"lock":false,"pos":{"x":40.2920799255371,"y":1.29363143444061,"z":-81.9201278686523},"rot":{"x":0.0208087060600519,"y":269.999572753906,"z":0.016770888119936}},"becb9c":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208084564656019,"y":269.999694824219,"z":0.0167711619287729}},"c2f6b1":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170953273773,"z":-54.3199996948242},"rot":{"x":0.0208085495978594,"y":269.999694824219,"z":0.0167710352689028}},"c311be":{"lock":false,"pos":{"x":58.099666595459,"y":1.31018245220184,"z":-47.4709739685059},"rot":{"x":0.0208086203783751,"y":269.999481201172,"z":0.0167710334062576}},"c4c4b1":{"lock":false,"pos":{"x":40.290096282959,"y":1.2922842502594,"z":-86.5198974609375},"rot":{"x":0.02080805785954,"y":269.999664306641,"z":0.0167709123343229}},"c5d676":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208092406392097,"y":269.999450683594,"z":0.0167713835835457}},"c5fb42":{"lock":false,"pos":{"x":36.6243438720703,"y":1.30240142345428,"z":-47.4087371826172},"rot":{"x":0.0208110604435205,"y":269.991851806641,"z":0.0167680457234383}},"c78082":{"lock":false,"pos":{"x":32.985279083252,"y":1.29973292350769,"z":-52.0095634460449},"rot":{"x":0.020811278373003,"y":269.990295410156,"z":0.0167677085846663}},"cb968f":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208084918558598,"y":269.999542236328,"z":0.0167710836976767}},"d26b84":{"lock":false,"pos":{"x":52.9441108703613,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.020808856934309,"y":269.999420166016,"z":0.016770962625742}},"d4d8c4":{"lock":false,"pos":{"x":40.2742652893066,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.0208088923245668,"y":269.999633789063,"z":0.0167709160596132}},"d73dce":{"lock":false,"pos":{"x":32.985279083252,"y":1.29838681221008,"z":-56.608341217041},"rot":{"x":0.0208037439733744,"y":270.016540527344,"z":0.0167768709361553}},"d74e66":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208088327199221,"y":269.99951171875,"z":0.0167710520327091}},"da25d8":{"lock":false,"pos":{"x":52.9462471008301,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208090394735336,"y":269.998657226563,"z":0.0167707167565823}},"dcd9ce":{"lock":false,"pos":{"x":32.985279083252,"y":1.29771363735199,"z":-58.9083442687988},"rot":{"x":0.0208036303520203,"y":270.016510009766,"z":0.0167771559208632}},"e21200":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29838693141937,"z":-56.6086387634277},"rot":{"x":0.0208160597831011,"y":269.974426269531,"z":0.0167615469545126}},"e2bc49":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30293905735016,"z":-65.8205108642578},"rot":{"x":0.0208076778799295,"y":270.002868652344,"z":0.0167720839381218}},"e53458":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950915813446,"z":-49.7709617614746},"rot":{"x":0.0208087358623743,"y":269.999481201172,"z":0.0167709551751614}},"e84eff":{"lock":false,"pos":{"x":52.9442329406738,"y":1.3076514005661,"z":-49.7206268310547},"rot":{"x":0.0208080112934113,"y":270.0029296875,"z":0.0167713426053524}},"ea3df4":{"lock":false,"pos":{"x":36.6082649230957,"y":1.28960514068604,"z":-91.1042861938477},"rot":{"x":0.0205099210143089,"y":271.008972167969,"z":0.0171349421143532}},"ec3a71":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30159246921539,"z":-70.4202270507813},"rot":{"x":0.0208089556545019,"y":269.999481201172,"z":0.0167710557579994}},"ef43db":{"lock":false,"pos":{"x":40.290096282959,"y":1.29228413105011,"z":-86.5202178955078},"rot":{"x":0.0208109896630049,"y":269.992065429688,"z":0.0167684461921453}},"ef52e6":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.020809156820178,"y":269.998504638672,"z":0.0167705155909061}},"ef7b23":{"lock":false,"pos":{"x":32.985294342041,"y":1.30107951164246,"z":-47.4095573425293},"rot":{"x":0.0207426361739635,"y":270.224182128906,"z":0.0168525166809559}},"f00301":{"lock":false,"pos":{"x":32.9853057861328,"y":1.29771339893341,"z":-58.9086074829102},"rot":{"x":0.0208163466304541,"y":269.974304199219,"z":0.0167616214603186}},"f1654d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083419799805},"rot":{"x":0.0208091288805008,"y":269.998474121094,"z":0.0167705528438091}},"f560b1":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208087116479874,"y":269.999450683594,"z":0.0167708992958069}},"f651e8":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29432249069214,"z":-75.008430480957},"rot":{"x":0.0208091344684362,"y":269.998504638672,"z":0.0167706906795502}},"f71c08":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29095637798309,"z":-86.5083084106445},"rot":{"x":0.0205099526792765,"y":271.009063720703,"z":0.0171350054442883}},"f89dd6":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208084844052792,"y":269.999542236328,"z":0.0167710911482573}},"f9a151":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208085644990206,"y":269.999694824219,"z":0.0167711265385151}},"fa4a56":{"lock":false,"pos":{"x":52.9441871643066,"y":1.30428540706635,"z":-61.2203636169434},"rot":{"x":0.0208087526261806,"y":269.999450683594,"z":0.0167709141969681}},"fc4caf":{"lock":false,"pos":{"x":52.9442405700684,"y":1.29687976837158,"z":-86.520263671875},"rot":{"x":0.0208045169711113,"y":270.013793945313,"z":0.0167760942131281}},"fcd9ce":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208087228238583,"y":269.998718261719,"z":0.0167708117514849}},"fea03b":{"lock":false,"pos":{"x":40.3117637634277,"y":1.29767489433289,"z":-68.1306838989258},"rot":{"x":0.0208087395876646,"y":269.999481201172,"z":0.0167709998786449}}}}' +LuaScriptState: '{"ml":{"053015":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29701554775238,"z":-65.8082885742188},"rot":{"x":0.020808445289731,"y":269.998687744141,"z":0.0167705323547125}},"0919cf":{"lock":false,"pos":{"x":36.6243438720703,"y":1.2956690788269,"z":-70.4082946777344},"rot":{"x":0.0208081621676683,"y":269.998687744141,"z":0.0167705528438091}},"09ffbe":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208091791719198,"y":269.998870849609,"z":0.0167703963816166}},"0e2b00":{"lock":false,"pos":{"x":36.608268737793,"y":1.28960514068604,"z":-91.1042785644531},"rot":{"x":0.020812351256609,"y":269.990234375,"z":0.0167682394385338}},"0e808b":{"lock":false,"pos":{"x":36.6243362426758,"y":1.2909562587738,"z":-86.50830078125},"rot":{"x":0.0208134297281504,"y":269.986297607422,"z":0.0167666058987379}},"0e8b75":{"lock":false,"pos":{"x":40.2900810241699,"y":1.30036318302155,"z":-58.9199829101563},"rot":{"x":0.0208086092025042,"y":269.999694824219,"z":0.0167709924280643}},"0ee874":{"lock":false,"pos":{"x":32.985279083252,"y":1.29838681221008,"z":-56.608341217041},"rot":{"x":0.020814148709178,"y":269.981323242188,"z":0.016764048486948}},"16154f":{"lock":false,"pos":{"x":52.944206237793,"y":1.30024600028992,"z":-75.0203323364258},"rot":{"x":0.0208085775375366,"y":269.999481201172,"z":0.0167707987129688}},"17c6c8":{"lock":false,"pos":{"x":36.6243438720703,"y":1.30038166046143,"z":-54.3084335327148},"rot":{"x":0.0208090711385012,"y":269.998870849609,"z":0.0167714860290289}},"219c78":{"lock":false,"pos":{"x":58.099666595459,"y":1.30883586406708,"z":-52.0712699890137},"rot":{"x":0.020807595923543,"y":270.003112792969,"z":0.0167722105979919}},"2403fa":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208090115338564,"y":269.998504638672,"z":0.0167705416679382}},"25c498":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208089295774698,"y":269.998504638672,"z":0.016770213842392}},"2b7765":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.0084228515625},"rot":{"x":0.0208097230643034,"y":269.998626708984,"z":0.0167710725218058}},"31051f":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208087731152773,"y":269.999542236328,"z":0.0167708154767752}},"3c7e85":{"lock":false,"pos":{"x":52.944206237793,"y":1.30697846412659,"z":-52.0203437805176},"rot":{"x":0.0208088029175997,"y":269.998504638672,"z":0.0167705211788416}},"3d57b4":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430401325226,"z":-79.6199111938477},"rot":{"x":0.0208086464554071,"y":269.999603271484,"z":0.0167708545923233}},"426c61":{"lock":false,"pos":{"x":40.2900886535645,"y":1.2922842502594,"z":-86.5199127197266},"rot":{"x":0.02080955542624,"y":269.999481201172,"z":0.0167714059352875}},"443992":{"lock":false,"pos":{"x":52.944206237793,"y":1.3009192943573,"z":-72.720329284668},"rot":{"x":0.0208086874336004,"y":269.99951171875,"z":0.0167712066322565}},"45e559":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084358215332},"rot":{"x":0.0208088960498571,"y":269.998901367188,"z":0.0167704187333584}},"4e86c1":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497730731964,"z":-77.3199081420898},"rot":{"x":0.0208085626363754,"y":269.999603271484,"z":0.0167709644883871}},"4fb7c0":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30361223220825,"z":-63.5203514099121},"rot":{"x":0.0208085179328918,"y":269.999450683594,"z":0.0167710352689028}},"541ee9":{"lock":false,"pos":{"x":40.2920875549316,"y":1.29363143444061,"z":-81.9201126098633},"rot":{"x":0.0208084173500538,"y":269.998931884766,"z":0.0167705211788416}},"576e76":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208088215440512,"y":269.998962402344,"z":0.0167707912623882}},"591789":{"lock":false,"pos":{"x":52.9462623596191,"y":1.2982269525528,"z":-81.9207382202148},"rot":{"x":0.0208091605454683,"y":269.997863769531,"z":0.0167703274637461}},"598837":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29903519153595,"z":-58.9084396362305},"rot":{"x":0.0208092778921127,"y":269.998748779297,"z":0.0167714301496744}},"5a7a85":{"lock":false,"pos":{"x":44.2289886474609,"y":1.30017948150635,"z":-68.100715637207},"rot":{"x":0.0208088550716639,"y":269.999420166016,"z":0.0167716145515442}},"5ae7f5":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.020809218287468,"y":269.999603271484,"z":0.0167712103575468}},"604ed6":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29970848560333,"z":-56.6084365844727},"rot":{"x":0.0208109244704247,"y":269.99169921875,"z":0.0167684536427259}},"698fcc":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29230284690857,"z":-81.9085159301758},"rot":{"x":0.0208095349371433,"y":269.998413085938,"z":0.0167707577347755}},"6b2e97":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29565024375916,"z":-75.0203018188477},"rot":{"x":0.0208092723041773,"y":269.997192382813,"z":0.0167701914906502}},"764515":{"lock":false,"pos":{"x":58.1054992675781,"y":1.30883800983429,"z":-52.0710487365723},"rot":{"x":0.020804388448596,"y":270.014465332031,"z":0.0167762618511915}},"7da732":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208086781203747,"y":269.999694824219,"z":0.0167707167565823}},"8272e9":{"lock":false,"pos":{"x":32.985279083252,"y":1.29636716842651,"z":-63.5083465576172},"rot":{"x":0.0208042487502098,"y":270.016479492188,"z":0.0167774185538292}},"82d9bb":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957282543182,"z":-77.3202514648438},"rot":{"x":0.0208084657788277,"y":269.999603271484,"z":0.016771050170064}},"86ed13":{"lock":false,"pos":{"x":36.6243438720703,"y":1.30105495452881,"z":-52.0084228515625},"rot":{"x":0.0208091046661139,"y":269.998748779297,"z":0.0167714338749647}},"8c0e3b":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29836189746857,"z":-61.2084426879883},"rot":{"x":0.0208090618252754,"y":269.998718261719,"z":0.0167712923139334}},"8f6cb3":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208087079226971,"y":269.999450683594,"z":0.0167709980159998}},"918fde":{"lock":false,"pos":{"x":58.0996627807617,"y":1.30816268920898,"z":-54.3709754943848},"rot":{"x":0.0208085142076015,"y":269.999542236328,"z":0.016770776361227}},"943332":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29634237289429,"z":-68.1082916259766},"rot":{"x":0.0208121873438358,"y":269.986694335938,"z":0.0167664512991905}},"94ebe8":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29162955284119,"z":-84.2083053588867},"rot":{"x":0.020510608330369,"y":271.009094238281,"z":0.0171348657459021}},"9c0a3d":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563199520111,"z":-56.6203422546387},"rot":{"x":0.0208090599626303,"y":269.998504638672,"z":0.0167707595974207}},"9c8a39":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083114624023},"rot":{"x":0.0208093039691448,"y":269.998687744141,"z":0.016771238297224}},"a1c372":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208085440099239,"y":269.999694824219,"z":0.0167711935937405}},"a766a3":{"lock":false,"pos":{"x":32.985279083252,"y":1.29906010627747,"z":-54.3083381652832},"rot":{"x":0.0208035446703434,"y":270.0166015625,"z":0.0167771261185408}},"a7e5a4":{"lock":false,"pos":{"x":40.6758575439453,"y":1.30292499065399,"z":-54.3128776550293},"rot":{"x":0.0208086613565683,"y":269.999725341797,"z":0.0167705696076155}},"a906ee":{"lock":false,"pos":{"x":52.9442100524902,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208088904619217,"y":269.999450683594,"z":0.0167709067463875}},"b49ef1":{"lock":false,"pos":{"x":40.2900390625,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208086352795362,"y":269.999572753906,"z":0.0167709495872259}},"b9b811":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29162967205048,"z":-84.2082977294922},"rot":{"x":0.0208093579858541,"y":269.998382568359,"z":0.0167710036039352}},"b9dd5d":{"lock":false,"pos":{"x":32.985279083252,"y":1.29973304271698,"z":-52.0095634460449},"rot":{"x":0.020811365917325,"y":269.990661621094,"z":0.0167676210403442}},"bb7d83":{"lock":false,"pos":{"x":32.985279083252,"y":1.29569387435913,"z":-65.8082733154297},"rot":{"x":0.0208044536411762,"y":270.016479492188,"z":0.0167773440480232}},"bb9d20":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29499578475952,"z":-72.708381652832},"rot":{"x":0.0208084005862474,"y":269.998596191406,"z":0.0167705789208412}},"bdddfa":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208094511181116,"y":269.99951171875,"z":0.0167712606489658}},"becb9c":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208087619394064,"y":269.999694824219,"z":0.0167710836976767}},"c2f6b1":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170965194702,"z":-54.3199996948242},"rot":{"x":0.0208084788173437,"y":269.999694824219,"z":0.0167709421366453}},"c311be":{"lock":false,"pos":{"x":58.099666595459,"y":1.31018245220184,"z":-47.4709739685059},"rot":{"x":0.0208086762577295,"y":269.999481201172,"z":0.0167709030210972}},"c4c4b1":{"lock":false,"pos":{"x":40.290096282959,"y":1.2922842502594,"z":-86.5198974609375},"rot":{"x":0.02080805785954,"y":269.999664306641,"z":0.0167709123343229}},"c5d676":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208092406392097,"y":269.999450683594,"z":0.0167713835835457}},"c5fb42":{"lock":false,"pos":{"x":36.6243438720703,"y":1.30172801017761,"z":-49.7084579467773},"rot":{"x":0.0208113435655832,"y":269.991821289063,"z":0.0167690087109804}},"c78082":{"lock":false,"pos":{"x":32.985279083252,"y":1.29906010627747,"z":-54.3083381652832},"rot":{"x":0.0208115912973881,"y":269.990295410156,"z":0.0167674403637648}},"cb968f":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208089128136635,"y":269.999542236328,"z":0.0167709365487099}},"d26b84":{"lock":false,"pos":{"x":52.9441108703613,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.020808769389987,"y":269.999420166016,"z":0.0167707987129688}},"d4d8c4":{"lock":false,"pos":{"x":40.2741088867188,"y":1.29093325138092,"z":-91.1157989501953},"rot":{"x":0.0208089891821146,"y":269.999572753906,"z":0.0167711246758699}},"d73dce":{"lock":false,"pos":{"x":32.985279083252,"y":1.29838681221008,"z":-56.608341217041},"rot":{"x":0.0208037439733744,"y":270.016540527344,"z":0.0167768709361553}},"d74e66":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.020808782428503,"y":269.99951171875,"z":0.016770988702774}},"da25d8":{"lock":false,"pos":{"x":52.9462471008301,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208090394735336,"y":269.998657226563,"z":0.0167707167565823}},"dcd9ce":{"lock":false,"pos":{"x":32.985279083252,"y":1.29771363735199,"z":-58.9083442687988},"rot":{"x":0.0208036303520203,"y":270.016510009766,"z":0.0167771559208632}},"e21200":{"lock":false,"pos":{"x":32.985279083252,"y":1.29771363735199,"z":-58.9083442687988},"rot":{"x":0.0208160802721977,"y":269.974426269531,"z":0.0167615935206413}},"e2bc49":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30293893814087,"z":-65.8205108642578},"rot":{"x":0.020807757973671,"y":270.002868652344,"z":0.0167724471539259}},"e53458":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950915813446,"z":-49.7709617614746},"rot":{"x":0.0208087526261806,"y":269.999481201172,"z":0.0167711358517408}},"e84eff":{"lock":false,"pos":{"x":52.9442329406738,"y":1.30765163898468,"z":-49.7206268310547},"rot":{"x":0.0208075102418661,"y":270.0029296875,"z":0.0167722459882498}},"ea3df4":{"lock":false,"pos":{"x":32.9852828979492,"y":1.30107951164246,"z":-47.4095649719238},"rot":{"x":0.020811602473259,"y":269.990295410156,"z":0.0167672950774431}},"ec3a71":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30159246921539,"z":-70.4202270507813},"rot":{"x":0.0208085626363754,"y":269.999481201172,"z":0.0167711190879345}},"ef43db":{"lock":false,"pos":{"x":40.2742691040039,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.0208111740648746,"y":269.991973876953,"z":0.016768604516983}},"ef52e6":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30630528926849,"z":-54.3203468322754},"rot":{"x":0.0208091028034687,"y":269.998504638672,"z":0.0167706944048405}},"ef7b23":{"lock":false,"pos":{"x":32.985279083252,"y":1.30040621757507,"z":-49.7095642089844},"rot":{"x":0.0208046119660139,"y":270.014190673828,"z":0.0167759694159031}},"f00301":{"lock":false,"pos":{"x":32.985279083252,"y":1.29704034328461,"z":-61.2083473205566},"rot":{"x":0.0208161864429712,"y":269.974273681641,"z":0.0167614631354809}},"f1654d":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29297602176666,"z":-79.6082916259766},"rot":{"x":0.0208099409937859,"y":269.998413085938,"z":0.016771137714386}},"f560b1":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208086706697941,"y":269.999450683594,"z":0.0167709514498711}},"f651e8":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208097696304321,"y":269.998596191406,"z":0.0167711637914181}},"f71c08":{"lock":false,"pos":{"x":36.6086463928223,"y":1.29028046131134,"z":-88.7977523803711},"rot":{"x":0.0208122748881578,"y":269.990356445313,"z":0.0167679339647293}},"f89dd6":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901671409607,"z":-63.5200119018555},"rot":{"x":0.0208085849881172,"y":269.999542236328,"z":0.0167708601802588}},"f9a151":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208087358623743,"y":269.999694824219,"z":0.0167710725218058}},"fa4a56":{"lock":false,"pos":{"x":52.9441871643066,"y":1.30428552627563,"z":-61.2203636169434},"rot":{"x":0.0208088718354702,"y":269.999450683594,"z":0.0167711451649666}},"fc4caf":{"lock":false,"pos":{"x":52.9442405700684,"y":1.29687988758087,"z":-86.520263671875},"rot":{"x":0.0208046659827232,"y":270.013793945313,"z":0.0167762096971273}},"fcd9ce":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29768872261047,"z":-63.5084457397461},"rot":{"x":0.0208085589110851,"y":269.998687744141,"z":0.0167708657681942}},"fea03b":{"lock":false,"pos":{"x":40.3117637634277,"y":1.29767489433289,"z":-68.1306838989258},"rot":{"x":0.0208088606595993,"y":269.999481201172,"z":0.0167710557579994}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 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 index 9e0a17b13..0558ebdd9 100644 --- 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 @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.27 - posY: 1.29 - posZ: -91.12 + posX: 36.62 + posY: 1.3 + posZ: -47.41 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (4) 0e808b.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (4) 0e808b.yaml index b73e9affa..296f97195 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (4) 0e808b.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (4) 0e808b.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -84.21 + posZ: -86.51 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Azure Flame (3) c5fb42.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Azure Flame (3) c5fb42.yaml index a1cc55bd0..13a7891a4 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Azure Flame (3) c5fb42.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Azure Flame (3) c5fb42.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -47.41 + posZ: -49.71 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Azure Flame (5) 0ee874.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Azure Flame (5) 0ee874.yaml index acaf3e858..bcb9f29a0 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Azure Flame (5) 0ee874.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Azure Flame (5) 0ee874.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -54.31 + posZ: -56.61 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 5e7d38020..363d341d2 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -49.71 + posZ: -52.01 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 21bf86a8f..d9014651a 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -52.01 + posZ: -54.31 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (3) 604ed6.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (3) 604ed6.yaml index 6e7e77e46..62fecc16f 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (3) 604ed6.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (3) 604ed6.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -54.31 + posZ: -56.61 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (5) e21200.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (5) e21200.yaml index 859cf79f9..1084b771c 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (5) e21200.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clairvoyance (5) e21200.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -56.61 + posZ: -58.91 rotX: 0.02 rotY: 269.97 rotZ: 0.02 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 index 61dd4d3de..410aaaf54 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -56.61 + posZ: -58.91 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 25814464f..df81af82c 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -58.91 + posZ: -61.21 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 418f5d3da..7fd632974 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -61.21 + posZ: -63.51 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index ac6babe76..995e1745f 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -63.51 + posZ: -65.81 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 9b34d15b2..fa62c058f 100644 --- 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 @@ -33,11 +33,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 36.62 + posX: 36.61 posY: 1.29 - posZ: -86.51 + posZ: -88.8 rotX: 0.02 - rotY: 271.01 + rotY: 269.99 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (3) 943332.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (3) 943332.yaml index 9da50b576..8adc123b0 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (3) 943332.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (3) 943332.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -65.81 + posZ: -68.11 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (5) f00301.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (5) f00301.yaml index 1cecddc99..a2a68404f 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (5) f00301.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ineffable Truth (5) f00301.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -58.91 + posZ: -61.21 rotX: 0.02 rotY: 269.97 rotZ: 0.02 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 index 8ab7e4f04..0387103ee 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -68.11 + posZ: -70.41 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 3b623eee9..f5a655c0c 100644 --- 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 @@ -35,9 +35,9 @@ Tooltip: true Transform: posX: 36.61 posY: 1.29 - posZ: -88.8 + posZ: -91.1 rotX: 0.02 - rotY: 271.01 + rotY: 269.99 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Paradoxical Covenant (2) 541ee9.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Paradoxical Covenant (2) 541ee9.yaml new file mode 100644 index 000000000..1bb98e986 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Paradoxical Covenant (2) 541ee9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 541ee9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Paradoxical Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.29 + posY: 1.29 + posZ: -81.92 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + 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 index ff812ad08..9b1ea801a 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -81.92 + posZ: -84.22 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 065266e61..7a8c03246 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -84.22 + posZ: -86.52 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 5857ea7b8..3eb8fbc47 100644 --- 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 @@ -33,11 +33,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 36.61 - posY: 1.29 - posZ: -91.1 + posX: 32.99 + posY: 1.3 + posZ: -47.41 rotX: 0.02 - rotY: 271.01 + rotY: 269.99 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Robes of Endless Night (2) ef43db.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Robes of Endless Night (2) ef43db.yaml index 4b0ee175d..1d4ca179e 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Robes of Endless Night (2) ef43db.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Robes of Endless Night (2) ef43db.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.29 + posX: 40.27 posY: 1.29 - posZ: -86.52 + posZ: -88.81 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index aa4164bbd..2cf4aecfe 100644 --- 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 @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 36.62 - posY: 1.3 - posZ: -70.41 + posY: 1.29 + posZ: -72.71 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 44d2510dc..a0e8e8b02 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Scrying (3) 2b7765.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Scrying (3) 2b7765.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -72.71 + posZ: -75.01 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 835b7af94..47f33ae51 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -61.21 + posZ: -63.51 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index 2e68b810b..53bbdff46 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -75.01 + posZ: -77.31 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 9b222f15c..3d33852a7 100644 --- 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 @@ -35,9 +35,9 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -47.41 + posZ: -49.71 rotX: 0.02 - rotY: 270.22 + rotY: 270.01 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 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 index 1a041050c..6724d1398 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (3) f1654d.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (3) f1654d.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -77.31 + posZ: -79.61 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index e98457b97..5220619cd 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (5) bb7d83.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (5) bb7d83.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -63.51 + posZ: -65.81 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index c20515f13..2be4ed6eb 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -49.71 + posZ: -52.01 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index d55714d1f..e6432712e 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.27 posY: 1.29 - posZ: -88.81 + posZ: -91.12 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card The Chthonian Stone (3) 698fcc.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card The Chthonian Stone (3) 698fcc.yaml index 03208a191..b5db16b2a 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card The Chthonian Stone (3) 698fcc.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card The Chthonian Stone (3) 698fcc.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -79.61 + posZ: -81.91 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 93c101032..f118769e3 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -81.91 + posZ: -84.21 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index e0c928b87..d1f0d974e 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Wither (4) c78082.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Wither (4) c78082.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -52.01 + posZ: -54.31 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75.ttslua b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75.ttslua rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99.ttslua diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99.yaml new file mode 100644 index 000000000..2746fe00c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99.yaml @@ -0,0 +1,125 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Paradoxical Covenant (2) 541ee9.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Enchanted Blade (3) 053015.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Jewel of Aureolus (3) 0919cf.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Mists of R''lyeh (4) 0e2b00.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Arcane Studies (4) 0e808b.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Summoned Hound (1) 0e8b75.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Azure Flame (5) 0ee874.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Word of Command (2) 16154f.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Book of Shadows (3) 17c6c8.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Guts (2) 219c78.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Banish (1) 2403fa.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Scrying (3) 2b7765.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) 31051f.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Mind Wipe (1) 3c7e85.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Mists of R''lyeh (2) 3d57b4.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Rite of Seeking (2) 426c61.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Ward of Protection (2) 443992.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Arcane Initiate (3) 45e559.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Mind''s Eye (2) 4e86c1.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Counterspell (2) 4fb7c0.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Recharge (4) 591789.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Clarity of Mind (3) 598837.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Clairvoyance (3) 604ed6.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card The Chthonian Stone (3) 698fcc.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Grotesque Statue (2) 6b2e97.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Grounded (1) 7da732.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Seal of the Seventh Sign (5) 8272e9.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Mind Wipe (3) 82d9bb.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Blood Pact (3) 86ed13.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Crystalline Elder Sign (3) 8c0e3b.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Bind Monster (2) 8f6cb3.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Seal of the Elder Sign (5) 918fde.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Ineffable Truth (3) 943332.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Stargazing (1) 9c0a3d.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Spirit Athame (1) a1c372.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Storm of Spirits (3) a906ee.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) b49ef1.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Twila Katherine Price (3) b9b811.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Sixth Sense (4) b9dd5d.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Shrivelling (5) bb7d83.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Scroll of Secrets (3) bb9d20.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Recall the Future (2) bdddfa.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Book of Shadows (1) becb9c.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Protective Incantation (1) c2f6b1.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Defiance (2) c311be.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Azure Flame (3) c5fb42.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Wither (4) c78082.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card De Vermis Mysteriis (2) cb968f.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Deny Existence (5) d26b84.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Song of the Dead (2) d4d8c4.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Alchemical Transmutation (2) d74e66.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Clairvoyance (5) e21200.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Hypnotic Gaze (2) e2bc49.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Fearless (2) e53458.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Eldritch Inspiration (1) e84eff.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Rite of Seeking (4) ea3df4.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Time Warp (2) ec3a71.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Robes of Endless Night (2) ef43db.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Sacrifice (1) ef52e6.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Shining Trapezohedron (4) ef7b23.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Ineffable Truth (5) f00301.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Shrivelling (3) f1654d.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Recharge (2) f560b1.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Shards of the Void (3) f651e8.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Grotesque Statue (4) f71c08.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Arcane Studies (2) f89dd6.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Four of Cups (1) f9a151.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Blinding Light (2) fa4a56.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Ward of Protection (5) fc4caf.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Dayana Esperence (3) fcd9ce.yaml' +- !include 'Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) fea03b.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: '' +DragSelectable: true +GMNotes: '' +GUID: 2c2b99 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Mystic 2c2b99.ttslua' +LuaScriptState: '{"ml":{"053015":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29701554775238,"z":-65.8082885742188},"rot":{"x":0.020808445289731,"y":269.998687744141,"z":0.0167705323547125}},"0919cf":{"lock":false,"pos":{"x":36.6243438720703,"y":1.2956690788269,"z":-70.4082946777344},"rot":{"x":0.0208081621676683,"y":269.998687744141,"z":0.0167705528438091}},"09ffbe":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208091791719198,"y":269.998870849609,"z":0.0167703963816166}},"0e2b00":{"lock":false,"pos":{"x":36.608268737793,"y":1.28960514068604,"z":-91.1042785644531},"rot":{"x":0.020812351256609,"y":269.990234375,"z":0.0167682394385338}},"0e808b":{"lock":false,"pos":{"x":36.6243362426758,"y":1.2909562587738,"z":-86.50830078125},"rot":{"x":0.0208134297281504,"y":269.986297607422,"z":0.0167666058987379}},"0e8b75":{"lock":false,"pos":{"x":40.2900810241699,"y":1.30036318302155,"z":-58.9199829101563},"rot":{"x":0.0208086092025042,"y":269.999694824219,"z":0.0167709924280643}},"0ee874":{"lock":false,"pos":{"x":32.985279083252,"y":1.29838681221008,"z":-56.608341217041},"rot":{"x":0.020814148709178,"y":269.981323242188,"z":0.016764048486948}},"16154f":{"lock":false,"pos":{"x":52.944206237793,"y":1.30024600028992,"z":-75.0203323364258},"rot":{"x":0.0208085775375366,"y":269.999481201172,"z":0.0167707987129688}},"17c6c8":{"lock":false,"pos":{"x":36.6243438720703,"y":1.30038166046143,"z":-54.3084335327148},"rot":{"x":0.0208090711385012,"y":269.998870849609,"z":0.0167714860290289}},"219c78":{"lock":false,"pos":{"x":58.099666595459,"y":1.30883586406708,"z":-52.0712699890137},"rot":{"x":0.020807595923543,"y":270.003112792969,"z":0.0167722105979919}},"2403fa":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208090115338564,"y":269.998504638672,"z":0.0167705416679382}},"25c498":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208089295774698,"y":269.998504638672,"z":0.016770213842392}},"2b7765":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.0084228515625},"rot":{"x":0.0208097230643034,"y":269.998626708984,"z":0.0167710725218058}},"31051f":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208087731152773,"y":269.999542236328,"z":0.0167708154767752}},"3c7e85":{"lock":false,"pos":{"x":52.944206237793,"y":1.30697846412659,"z":-52.0203437805176},"rot":{"x":0.0208088029175997,"y":269.998504638672,"z":0.0167705211788416}},"3d57b4":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430401325226,"z":-79.6199111938477},"rot":{"x":0.0208086464554071,"y":269.999603271484,"z":0.0167708545923233}},"426c61":{"lock":false,"pos":{"x":40.2900886535645,"y":1.2922842502594,"z":-86.5199127197266},"rot":{"x":0.02080955542624,"y":269.999481201172,"z":0.0167714059352875}},"443992":{"lock":false,"pos":{"x":52.944206237793,"y":1.3009192943573,"z":-72.720329284668},"rot":{"x":0.0208086874336004,"y":269.99951171875,"z":0.0167712066322565}},"45e559":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084358215332},"rot":{"x":0.0208088960498571,"y":269.998901367188,"z":0.0167704187333584}},"4e86c1":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497730731964,"z":-77.3199081420898},"rot":{"x":0.0208085626363754,"y":269.999603271484,"z":0.0167709644883871}},"4fb7c0":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30361223220825,"z":-63.5203514099121},"rot":{"x":0.0208085179328918,"y":269.999450683594,"z":0.0167710352689028}},"541ee9":{"lock":false,"pos":{"x":40.2920875549316,"y":1.29363143444061,"z":-81.9201126098633},"rot":{"x":0.0208084173500538,"y":269.998931884766,"z":0.0167705211788416}},"576e76":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208088215440512,"y":269.998962402344,"z":0.0167707912623882}},"591789":{"lock":false,"pos":{"x":52.9462623596191,"y":1.2982269525528,"z":-81.9207382202148},"rot":{"x":0.0208091605454683,"y":269.997863769531,"z":0.0167703274637461}},"598837":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29903519153595,"z":-58.9084396362305},"rot":{"x":0.0208092778921127,"y":269.998748779297,"z":0.0167714301496744}},"5a7a85":{"lock":false,"pos":{"x":44.2289886474609,"y":1.30017948150635,"z":-68.100715637207},"rot":{"x":0.0208088550716639,"y":269.999420166016,"z":0.0167716145515442}},"5ae7f5":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.020809218287468,"y":269.999603271484,"z":0.0167712103575468}},"604ed6":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29970848560333,"z":-56.6084365844727},"rot":{"x":0.0208109244704247,"y":269.99169921875,"z":0.0167684536427259}},"698fcc":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29230284690857,"z":-81.9085159301758},"rot":{"x":0.0208095349371433,"y":269.998413085938,"z":0.0167707577347755}},"6b2e97":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29565024375916,"z":-75.0203018188477},"rot":{"x":0.0208092723041773,"y":269.997192382813,"z":0.0167701914906502}},"764515":{"lock":false,"pos":{"x":58.1054992675781,"y":1.30883800983429,"z":-52.0710487365723},"rot":{"x":0.020804388448596,"y":270.014465332031,"z":0.0167762618511915}},"7da732":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208086781203747,"y":269.999694824219,"z":0.0167707167565823}},"8272e9":{"lock":false,"pos":{"x":32.985279083252,"y":1.29636716842651,"z":-63.5083465576172},"rot":{"x":0.0208042487502098,"y":270.016479492188,"z":0.0167774185538292}},"82d9bb":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957282543182,"z":-77.3202514648438},"rot":{"x":0.0208084657788277,"y":269.999603271484,"z":0.016771050170064}},"86ed13":{"lock":false,"pos":{"x":36.6243438720703,"y":1.30105495452881,"z":-52.0084228515625},"rot":{"x":0.0208091046661139,"y":269.998748779297,"z":0.0167714338749647}},"8c0e3b":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29836189746857,"z":-61.2084426879883},"rot":{"x":0.0208090618252754,"y":269.998718261719,"z":0.0167712923139334}},"8f6cb3":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208087079226971,"y":269.999450683594,"z":0.0167709980159998}},"918fde":{"lock":false,"pos":{"x":58.0996627807617,"y":1.30816268920898,"z":-54.3709754943848},"rot":{"x":0.0208085142076015,"y":269.999542236328,"z":0.016770776361227}},"943332":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29634237289429,"z":-68.1082916259766},"rot":{"x":0.0208121873438358,"y":269.986694335938,"z":0.0167664512991905}},"94ebe8":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29162955284119,"z":-84.2083053588867},"rot":{"x":0.020510608330369,"y":271.009094238281,"z":0.0171348657459021}},"9c0a3d":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563199520111,"z":-56.6203422546387},"rot":{"x":0.0208090599626303,"y":269.998504638672,"z":0.0167707595974207}},"9c8a39":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083114624023},"rot":{"x":0.0208093039691448,"y":269.998687744141,"z":0.016771238297224}},"a1c372":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208085440099239,"y":269.999694824219,"z":0.0167711935937405}},"a766a3":{"lock":false,"pos":{"x":32.985279083252,"y":1.29906010627747,"z":-54.3083381652832},"rot":{"x":0.0208035446703434,"y":270.0166015625,"z":0.0167771261185408}},"a7e5a4":{"lock":false,"pos":{"x":40.6758575439453,"y":1.30292499065399,"z":-54.3128776550293},"rot":{"x":0.0208086613565683,"y":269.999725341797,"z":0.0167705696076155}},"a906ee":{"lock":false,"pos":{"x":52.9442100524902,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208088904619217,"y":269.999450683594,"z":0.0167709067463875}},"b49ef1":{"lock":false,"pos":{"x":40.2900390625,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208086352795362,"y":269.999572753906,"z":0.0167709495872259}},"b9b811":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29162967205048,"z":-84.2082977294922},"rot":{"x":0.0208093579858541,"y":269.998382568359,"z":0.0167710036039352}},"b9dd5d":{"lock":false,"pos":{"x":32.985279083252,"y":1.29973304271698,"z":-52.0095634460449},"rot":{"x":0.020811365917325,"y":269.990661621094,"z":0.0167676210403442}},"bb7d83":{"lock":false,"pos":{"x":32.985279083252,"y":1.29569387435913,"z":-65.8082733154297},"rot":{"x":0.0208044536411762,"y":270.016479492188,"z":0.0167773440480232}},"bb9d20":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29499578475952,"z":-72.708381652832},"rot":{"x":0.0208084005862474,"y":269.998596191406,"z":0.0167705789208412}},"bdddfa":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208094511181116,"y":269.99951171875,"z":0.0167712606489658}},"becb9c":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208087619394064,"y":269.999694824219,"z":0.0167710836976767}},"c2f6b1":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170965194702,"z":-54.3199996948242},"rot":{"x":0.0208084788173437,"y":269.999694824219,"z":0.0167709421366453}},"c311be":{"lock":false,"pos":{"x":58.099666595459,"y":1.31018245220184,"z":-47.4709739685059},"rot":{"x":0.0208086762577295,"y":269.999481201172,"z":0.0167709030210972}},"c4c4b1":{"lock":false,"pos":{"x":40.290096282959,"y":1.2922842502594,"z":-86.5198974609375},"rot":{"x":0.02080805785954,"y":269.999664306641,"z":0.0167709123343229}},"c5d676":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208092406392097,"y":269.999450683594,"z":0.0167713835835457}},"c5fb42":{"lock":false,"pos":{"x":36.6243438720703,"y":1.30172801017761,"z":-49.7084579467773},"rot":{"x":0.0208113435655832,"y":269.991821289063,"z":0.0167690087109804}},"c78082":{"lock":false,"pos":{"x":32.985279083252,"y":1.29906010627747,"z":-54.3083381652832},"rot":{"x":0.0208115912973881,"y":269.990295410156,"z":0.0167674403637648}},"cb968f":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208089128136635,"y":269.999542236328,"z":0.0167709365487099}},"d26b84":{"lock":false,"pos":{"x":52.9441108703613,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.020808769389987,"y":269.999420166016,"z":0.0167707987129688}},"d4d8c4":{"lock":false,"pos":{"x":40.2741088867188,"y":1.29093325138092,"z":-91.1157989501953},"rot":{"x":0.0208089891821146,"y":269.999572753906,"z":0.0167711246758699}},"d73dce":{"lock":false,"pos":{"x":32.985279083252,"y":1.29838681221008,"z":-56.608341217041},"rot":{"x":0.0208037439733744,"y":270.016540527344,"z":0.0167768709361553}},"d74e66":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.020808782428503,"y":269.99951171875,"z":0.016770988702774}},"da25d8":{"lock":false,"pos":{"x":52.9462471008301,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208090394735336,"y":269.998657226563,"z":0.0167707167565823}},"dcd9ce":{"lock":false,"pos":{"x":32.985279083252,"y":1.29771363735199,"z":-58.9083442687988},"rot":{"x":0.0208036303520203,"y":270.016510009766,"z":0.0167771559208632}},"e21200":{"lock":false,"pos":{"x":32.985279083252,"y":1.29771363735199,"z":-58.9083442687988},"rot":{"x":0.0208160802721977,"y":269.974426269531,"z":0.0167615935206413}},"e2bc49":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30293893814087,"z":-65.8205108642578},"rot":{"x":0.020807757973671,"y":270.002868652344,"z":0.0167724471539259}},"e53458":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950915813446,"z":-49.7709617614746},"rot":{"x":0.0208087526261806,"y":269.999481201172,"z":0.0167711358517408}},"e84eff":{"lock":false,"pos":{"x":52.9442329406738,"y":1.30765163898468,"z":-49.7206268310547},"rot":{"x":0.0208075102418661,"y":270.0029296875,"z":0.0167722459882498}},"ea3df4":{"lock":false,"pos":{"x":32.9852828979492,"y":1.30107951164246,"z":-47.4095649719238},"rot":{"x":0.020811602473259,"y":269.990295410156,"z":0.0167672950774431}},"ec3a71":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30159246921539,"z":-70.4202270507813},"rot":{"x":0.0208085626363754,"y":269.999481201172,"z":0.0167711190879345}},"ef43db":{"lock":false,"pos":{"x":40.2742691040039,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.0208111740648746,"y":269.991973876953,"z":0.016768604516983}},"ef52e6":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30630528926849,"z":-54.3203468322754},"rot":{"x":0.0208091028034687,"y":269.998504638672,"z":0.0167706944048405}},"ef7b23":{"lock":false,"pos":{"x":32.985279083252,"y":1.30040621757507,"z":-49.7095642089844},"rot":{"x":0.0208046119660139,"y":270.014190673828,"z":0.0167759694159031}},"f00301":{"lock":false,"pos":{"x":32.985279083252,"y":1.29704034328461,"z":-61.2083473205566},"rot":{"x":0.0208161864429712,"y":269.974273681641,"z":0.0167614631354809}},"f1654d":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29297602176666,"z":-79.6082916259766},"rot":{"x":0.0208099409937859,"y":269.998413085938,"z":0.016771137714386}},"f560b1":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208086706697941,"y":269.999450683594,"z":0.0167709514498711}},"f651e8":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208097696304321,"y":269.998596191406,"z":0.0167711637914181}},"f71c08":{"lock":false,"pos":{"x":36.6086463928223,"y":1.29028046131134,"z":-88.7977523803711},"rot":{"x":0.0208122748881578,"y":269.990356445313,"z":0.0167679339647293}},"f89dd6":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901671409607,"z":-63.5200119018555},"rot":{"x":0.0208085849881172,"y":269.999542236328,"z":0.0167708601802588}},"f9a151":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208087358623743,"y":269.999694824219,"z":0.0167710725218058}},"fa4a56":{"lock":false,"pos":{"x":52.9441871643066,"y":1.30428552627563,"z":-61.2203636169434},"rot":{"x":0.0208088718354702,"y":269.999450683594,"z":0.0167711451649666}},"fc4caf":{"lock":false,"pos":{"x":52.9442405700684,"y":1.29687988758087,"z":-86.520263671875},"rot":{"x":0.0208046659827232,"y":270.013793945313,"z":0.0167762096971273}},"fcd9ce":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29768872261047,"z":-63.5084457397461},"rot":{"x":0.0208085589110851,"y":269.998687744141,"z":0.0167708657681942}},"fea03b":{"lock":false,"pos":{"x":40.3117637634277,"y":1.29767489433289,"z":-68.1306838989258},"rot":{"x":0.0208088606595993,"y":269.999481201172,"z":0.0167710557579994}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.3 + posY: 1.66 + posZ: -80.18 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Alchemical Transmutation (2) d74e66.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Alchemical Transmutation (2) d74e66.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Alchemical Transmutation (2) d74e66.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Alchemical Transmutation (2) d74e66.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Arcane Initiate (3) 45e559.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Arcane Initiate (3) 45e559.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Arcane Initiate (3) 45e559.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Arcane Initiate (3) 45e559.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Arcane Studies (2) f89dd6.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Arcane Studies (2) f89dd6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Arcane Studies (2) f89dd6.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Arcane Studies (2) f89dd6.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Arcane Studies (4) 0e808b.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Arcane Studies (4) 0e808b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Arcane Studies (4) 0e808b.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Arcane Studies (4) 0e808b.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Azure Flame (3) c5fb42.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Azure Flame (3) c5fb42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Azure Flame (3) c5fb42.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Azure Flame (3) c5fb42.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Azure Flame (5) 0ee874.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Azure Flame (5) 0ee874.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Azure Flame (5) 0ee874.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Azure Flame (5) 0ee874.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Banish (1) 2403fa.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Banish (1) 2403fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Banish (1) 2403fa.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Banish (1) 2403fa.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Bind Monster (2) 8f6cb3.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Bind Monster (2) 8f6cb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Bind Monster (2) 8f6cb3.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Bind Monster (2) 8f6cb3.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Blinding Light (2) fa4a56.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Blinding Light (2) fa4a56.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Blinding Light (2) fa4a56.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Blinding Light (2) fa4a56.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Blood Pact (3) 86ed13.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Blood Pact (3) 86ed13.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Blood Pact (3) 86ed13.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Blood Pact (3) 86ed13.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Book of Shadows (1) becb9c.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Book of Shadows (1) becb9c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Book of Shadows (1) becb9c.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Book of Shadows (1) becb9c.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Book of Shadows (3) 17c6c8.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Book of Shadows (3) 17c6c8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Book of Shadows (3) 17c6c8.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Book of Shadows (3) 17c6c8.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Clairvoyance (3) 604ed6.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Clairvoyance (3) 604ed6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Clairvoyance (3) 604ed6.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Clairvoyance (3) 604ed6.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Clairvoyance (5) e21200.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Clairvoyance (5) e21200.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Clairvoyance (5) e21200.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Clairvoyance (5) e21200.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Clarity of Mind (3) 598837.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Clarity of Mind (3) 598837.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Clarity of Mind (3) 598837.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Clarity of Mind (3) 598837.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Counterspell (2) 4fb7c0.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Counterspell (2) 4fb7c0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Counterspell (2) 4fb7c0.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Counterspell (2) 4fb7c0.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Crystalline Elder Sign (3) 8c0e3b.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Crystalline Elder Sign (3) 8c0e3b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Crystalline Elder Sign (3) 8c0e3b.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Crystalline Elder Sign (3) 8c0e3b.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Dayana Esperence (3) fcd9ce.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Dayana Esperence (3) fcd9ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Dayana Esperence (3) fcd9ce.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Dayana Esperence (3) fcd9ce.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card De Vermis Mysteriis (2) cb968f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card De Vermis Mysteriis (2) cb968f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card De Vermis Mysteriis (2) cb968f.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card De Vermis Mysteriis (2) cb968f.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Defiance (2) c311be.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Defiance (2) c311be.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Defiance (2) c311be.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Defiance (2) c311be.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Deny Existence (5) d26b84.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Deny Existence (5) d26b84.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Deny Existence (5) d26b84.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Deny Existence (5) d26b84.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Eldritch Inspiration (1) e84eff.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Eldritch Inspiration (1) e84eff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Eldritch Inspiration (1) e84eff.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Eldritch Inspiration (1) e84eff.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) 31051f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) 31051f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) 31051f.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) 31051f.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) b49ef1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) b49ef1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) b49ef1.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) b49ef1.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) fea03b.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) fea03b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) fea03b.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Empower Self (2) fea03b.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Enchanted Blade (3) 053015.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Enchanted Blade (3) 053015.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Enchanted Blade (3) 053015.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Enchanted Blade (3) 053015.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Fearless (2) e53458.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Fearless (2) e53458.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Fearless (2) e53458.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Fearless (2) e53458.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Four of Cups (1) f9a151.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Four of Cups (1) f9a151.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Four of Cups (1) f9a151.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Four of Cups (1) f9a151.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Grotesque Statue (2) 6b2e97.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Grotesque Statue (2) 6b2e97.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Grotesque Statue (2) 6b2e97.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Grotesque Statue (2) 6b2e97.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Grotesque Statue (4) f71c08.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Grotesque Statue (4) f71c08.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Grotesque Statue (4) f71c08.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Grotesque Statue (4) f71c08.yaml index 1bc3b544e..481a465c1 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Grotesque Statue (4) f71c08.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Grotesque Statue (4) f71c08.yaml @@ -37,7 +37,7 @@ Transform: posY: 1.41 posZ: -80.18 rotX: 0.02 - rotY: 271.01 + rotY: 269.99 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Grounded (1) 7da732.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Grounded (1) 7da732.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Grounded (1) 7da732.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Grounded (1) 7da732.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Guts (2) 219c78.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Guts (2) 219c78.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Guts (2) 219c78.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Guts (2) 219c78.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Hypnotic Gaze (2) e2bc49.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Hypnotic Gaze (2) e2bc49.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Hypnotic Gaze (2) e2bc49.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Hypnotic Gaze (2) e2bc49.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Ineffable Truth (3) 943332.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Ineffable Truth (3) 943332.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Ineffable Truth (3) 943332.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Ineffable Truth (3) 943332.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Ineffable Truth (5) f00301.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Ineffable Truth (5) f00301.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Ineffable Truth (5) f00301.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Ineffable Truth (5) f00301.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Jewel of Aureolus (3) 0919cf.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Jewel of Aureolus (3) 0919cf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Jewel of Aureolus (3) 0919cf.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Jewel of Aureolus (3) 0919cf.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mind Wipe (1) 3c7e85.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mind Wipe (1) 3c7e85.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mind Wipe (1) 3c7e85.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mind Wipe (1) 3c7e85.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mind Wipe (3) 82d9bb.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mind Wipe (3) 82d9bb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mind Wipe (3) 82d9bb.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mind Wipe (3) 82d9bb.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mind's Eye (2) 4e86c1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mind's Eye (2) 4e86c1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mind's Eye (2) 4e86c1.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mind's Eye (2) 4e86c1.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mists of R'lyeh (2) 3d57b4.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mists of R'lyeh (2) 3d57b4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mists of R'lyeh (2) 3d57b4.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mists of R'lyeh (2) 3d57b4.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mists of R'lyeh (4) 0e2b00.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mists of R'lyeh (4) 0e2b00.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mists of R'lyeh (4) 0e2b00.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mists of R'lyeh (4) 0e2b00.yaml index ff441f448..5875df24f 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Mists of R'lyeh (4) 0e2b00.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Mists of R'lyeh (4) 0e2b00.yaml @@ -37,7 +37,7 @@ Transform: posY: 1.41 posZ: -80.18 rotX: 0.02 - rotY: 271.01 + rotY: 269.99 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Paradoxical Covenant (2) 541ee9.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Paradoxical Covenant (2) 541ee9.yaml new file mode 100644 index 000000000..55aecd5a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Paradoxical Covenant (2) 541ee9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 541ee9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Paradoxical Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.32 + posY: 1.41 + posZ: -80.18 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Protective Incantation (1) c2f6b1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Protective Incantation (1) c2f6b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Protective Incantation (1) c2f6b1.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Protective Incantation (1) c2f6b1.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Recall the Future (2) bdddfa.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Recall the Future (2) bdddfa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Recall the Future (2) bdddfa.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Recall the Future (2) bdddfa.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Recharge (2) f560b1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Recharge (2) f560b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Recharge (2) f560b1.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Recharge (2) f560b1.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Recharge (4) 591789.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Recharge (4) 591789.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Recharge (4) 591789.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Recharge (4) 591789.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Rite of Seeking (2) 426c61.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Rite of Seeking (2) 426c61.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Rite of Seeking (2) 426c61.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Rite of Seeking (2) 426c61.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Rite of Seeking (4) ea3df4.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Rite of Seeking (4) ea3df4.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Rite of Seeking (4) ea3df4.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Rite of Seeking (4) ea3df4.yaml index 9eee0630b..becadca0c 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Rite of Seeking (4) ea3df4.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Rite of Seeking (4) ea3df4.yaml @@ -37,7 +37,7 @@ Transform: posY: 1.41 posZ: -80.18 rotX: 0.02 - rotY: 271.01 + rotY: 269.99 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Robes of Endless Night (2) ef43db.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Robes of Endless Night (2) ef43db.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Robes of Endless Night (2) ef43db.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Robes of Endless Night (2) ef43db.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Sacrifice (1) ef52e6.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Sacrifice (1) ef52e6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Sacrifice (1) ef52e6.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Sacrifice (1) ef52e6.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Scroll of Secrets (3) bb9d20.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Scroll of Secrets (3) bb9d20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Scroll of Secrets (3) bb9d20.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Scroll of Secrets (3) bb9d20.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Scrying (3) 2b7765.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Scrying (3) 2b7765.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Scrying (3) 2b7765.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Scrying (3) 2b7765.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Seal of the Elder Sign (5) 918fde.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Seal of the Elder Sign (5) 918fde.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Seal of the Elder Sign (5) 918fde.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Seal of the Elder Sign (5) 918fde.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Seal of the Seventh Sign (5) 8272e9.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Seal of the Seventh Sign (5) 8272e9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Seal of the Seventh Sign (5) 8272e9.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Seal of the Seventh Sign (5) 8272e9.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shards of the Void (3) f651e8.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shards of the Void (3) f651e8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shards of the Void (3) f651e8.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shards of the Void (3) f651e8.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shining Trapezohedron (4) ef7b23.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shining Trapezohedron (4) ef7b23.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shining Trapezohedron (4) ef7b23.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shining Trapezohedron (4) ef7b23.yaml index b9c4bab52..5f1952b5e 100644 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shining Trapezohedron (4) ef7b23.yaml +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shining Trapezohedron (4) ef7b23.yaml @@ -37,7 +37,7 @@ Transform: posY: 1.41 posZ: -80.18 rotX: 0.02 - rotY: 270.22 + rotY: 270.01 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shrivelling (3) f1654d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shrivelling (3) f1654d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shrivelling (3) f1654d.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shrivelling (3) f1654d.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shrivelling (5) bb7d83.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shrivelling (5) bb7d83.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Shrivelling (5) bb7d83.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Shrivelling (5) bb7d83.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Sixth Sense (4) b9dd5d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Sixth Sense (4) b9dd5d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Sixth Sense (4) b9dd5d.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Sixth Sense (4) b9dd5d.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Song of the Dead (2) d4d8c4.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Song of the Dead (2) d4d8c4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Song of the Dead (2) d4d8c4.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Song of the Dead (2) d4d8c4.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Spirit Athame (1) a1c372.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Spirit Athame (1) a1c372.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Spirit Athame (1) a1c372.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Spirit Athame (1) a1c372.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Stargazing (1) 9c0a3d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Stargazing (1) 9c0a3d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Stargazing (1) 9c0a3d.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Stargazing (1) 9c0a3d.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Storm of Spirits (3) a906ee.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Storm of Spirits (3) a906ee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Storm of Spirits (3) a906ee.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Storm of Spirits (3) a906ee.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Summoned Hound (1) 0e8b75.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Summoned Hound (1) 0e8b75.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Summoned Hound (1) 0e8b75.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Summoned Hound (1) 0e8b75.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card The Chthonian Stone (3) 698fcc.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card The Chthonian Stone (3) 698fcc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card The Chthonian Stone (3) 698fcc.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card The Chthonian Stone (3) 698fcc.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Time Warp (2) ec3a71.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Time Warp (2) ec3a71.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Time Warp (2) ec3a71.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Time Warp (2) ec3a71.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Twila Katherine Price (3) b9b811.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Twila Katherine Price (3) b9b811.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Twila Katherine Price (3) b9b811.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Twila Katherine Price (3) b9b811.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Ward of Protection (2) 443992.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Ward of Protection (2) 443992.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Ward of Protection (2) 443992.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Ward of Protection (2) 443992.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Ward of Protection (5) fc4caf.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Ward of Protection (5) fc4caf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Ward of Protection (5) fc4caf.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Ward of Protection (5) fc4caf.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Wither (4) c78082.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Wither (4) c78082.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Wither (4) c78082.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Wither (4) c78082.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Word of Command (2) 16154f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Word of Command (2) 16154f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75/Card Word of Command (2) 16154f.yaml rename to unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 2c2b99/Card Word of Command (2) 16154f.yaml diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75.yaml deleted file mode 100644 index a18dcb613..000000000 --- a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 39bb75.yaml +++ /dev/null @@ -1,124 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Mystic 39bb75/Card Azure Flame (5) 0ee874.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Clairvoyance (5) e21200.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Ineffable Truth (5) f00301.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Clairvoyance (3) 604ed6.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Arcane Studies (4) 0e808b.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Ineffable Truth (3) 943332.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Grotesque Statue (2) 6b2e97.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Robes of Endless Night (2) ef43db.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Azure Flame (3) c5fb42.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Hypnotic Gaze (2) e2bc49.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Recharge (4) 591789.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Guts (2) 219c78.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Eldritch Inspiration (1) e84eff.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Enchanted Blade (3) 053015.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Jewel of Aureolus (3) 0919cf.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Mists of R''lyeh (4) 0e2b00.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Summoned Hound (1) 0e8b75.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Word of Command (2) 16154f.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Book of Shadows (3) 17c6c8.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Banish (1) 2403fa.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Scrying (3) 2b7765.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) 31051f.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Mind Wipe (1) 3c7e85.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Mists of R''lyeh (2) 3d57b4.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Rite of Seeking (2) 426c61.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Ward of Protection (2) 443992.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Arcane Initiate (3) 45e559.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Mind''s Eye (2) 4e86c1.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Counterspell (2) 4fb7c0.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Clarity of Mind (3) 598837.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card The Chthonian Stone (3) 698fcc.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Grounded (1) 7da732.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Seal of the Seventh Sign (5) 8272e9.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Mind Wipe (3) 82d9bb.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Blood Pact (3) 86ed13.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Crystalline Elder Sign (3) 8c0e3b.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Bind Monster (2) 8f6cb3.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Seal of the Elder Sign (5) 918fde.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Stargazing (1) 9c0a3d.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Spirit Athame (1) a1c372.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Storm of Spirits (3) a906ee.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) b49ef1.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Twila Katherine Price (3) b9b811.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Sixth Sense (4) b9dd5d.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Shrivelling (5) bb7d83.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Scroll of Secrets (3) bb9d20.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Recall the Future (2) bdddfa.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Book of Shadows (1) becb9c.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Protective Incantation (1) c2f6b1.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Defiance (2) c311be.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Wither (4) c78082.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card De Vermis Mysteriis (2) cb968f.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Deny Existence (5) d26b84.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Song of the Dead (2) d4d8c4.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Alchemical Transmutation (2) d74e66.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Fearless (2) e53458.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Rite of Seeking (4) ea3df4.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Time Warp (2) ec3a71.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Sacrifice (1) ef52e6.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Shining Trapezohedron (4) ef7b23.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Shrivelling (3) f1654d.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Recharge (2) f560b1.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Shards of the Void (3) f651e8.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Grotesque Statue (4) f71c08.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Arcane Studies (2) f89dd6.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Four of Cups (1) f9a151.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Blinding Light (2) fa4a56.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Ward of Protection (5) fc4caf.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Dayana Esperence (3) fcd9ce.yaml' -- !include 'Custom_Model_Bag Mystic 39bb75/Card Empower Self (2) fea03b.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: '' -DragSelectable: true -GMNotes: '' -GUID: 39bb75 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Mystic 39bb75.ttslua' -LuaScriptState: '{"ml":{"053015":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.0208089146763086,"y":269.998718261719,"z":0.0167709160596132}},"0919cf":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083145141602},"rot":{"x":0.0208089556545019,"y":269.998626708984,"z":0.0167706999927759}},"09ffbe":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208091791719198,"y":269.998870849609,"z":0.0167703963816166}},"0e2b00":{"lock":false,"pos":{"x":36.608642578125,"y":1.29028046131134,"z":-88.7977600097656},"rot":{"x":0.020510071888566,"y":271.009094238281,"z":0.0171350613236427}},"0e808b":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29162955284119,"z":-84.2085952758789},"rot":{"x":0.0208126381039619,"y":269.986358642578,"z":0.016766270622611}},"0e8b75":{"lock":false,"pos":{"x":40.2900810241699,"y":1.30036306381226,"z":-58.9199829101563},"rot":{"x":0.0208085887134075,"y":269.999694824219,"z":0.0167711116373539}},"0ee874":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29905998706818,"z":-54.3086357116699},"rot":{"x":0.0208140704780817,"y":269.981323242188,"z":0.01676413603127}},"16154f":{"lock":false,"pos":{"x":52.944206237793,"y":1.30024600028992,"z":-75.0203323364258},"rot":{"x":0.0208087489008904,"y":269.999481201172,"z":0.0167708918452263}},"17c6c8":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.0084266662598},"rot":{"x":0.0208086762577295,"y":269.998901367188,"z":0.0167708303779364}},"219c78":{"lock":false,"pos":{"x":58.099666595459,"y":1.30883586406708,"z":-52.0712699890137},"rot":{"x":0.0208075642585754,"y":270.003112792969,"z":0.0167722217738628}},"2403fa":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208089780062437,"y":269.998504638672,"z":0.0167704503983259}},"25c498":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208089295774698,"y":269.998504638672,"z":0.016770213842392}},"2b7765":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7084045410156},"rot":{"x":0.0208089705556631,"y":269.998596191406,"z":0.0167705155909061}},"31051f":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208085142076015,"y":269.999542236328,"z":0.016771100461483}},"3c7e85":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208090655505657,"y":269.998504638672,"z":0.016770638525486}},"3d57b4":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430389404297,"z":-79.6199111938477},"rot":{"x":0.0208089090883732,"y":269.999603271484,"z":0.0167709570378065}},"426c61":{"lock":false,"pos":{"x":40.2899551391602,"y":1.29295742511749,"z":-84.2199020385742},"rot":{"x":0.0208086743950844,"y":269.999572753906,"z":0.0167708955705166}},"443992":{"lock":false,"pos":{"x":52.944206237793,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208085216581821,"y":269.99951171875,"z":0.0167710389941931}},"45e559":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1157989501953},"rot":{"x":0.0208088047802448,"y":269.998901367188,"z":0.0167706552892923}},"4e86c1":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497718811035,"z":-77.3199081420898},"rot":{"x":0.0208085607737303,"y":269.999603271484,"z":0.0167708825320005}},"4fb7c0":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30361223220825,"z":-63.5203514099121},"rot":{"x":0.0208088103681803,"y":269.999450683594,"z":0.0167710557579994}},"576e76":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208088215440512,"y":269.998962402344,"z":0.0167707912623882}},"591789":{"lock":false,"pos":{"x":52.9462623596191,"y":1.29822671413422,"z":-81.9207382202148},"rot":{"x":0.0208091624081135,"y":269.997833251953,"z":0.0167707018554211}},"598837":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.0208087954670191,"y":269.998779296875,"z":0.0167706031352282}},"5a7a85":{"lock":false,"pos":{"x":44.2289886474609,"y":1.30017948150635,"z":-68.100715637207},"rot":{"x":0.0208088550716639,"y":269.999420166016,"z":0.0167716145515442}},"5ae7f5":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.020809218287468,"y":269.999603271484,"z":0.0167712103575468}},"604ed6":{"lock":false,"pos":{"x":36.624340057373,"y":1.30038154125214,"z":-54.3087425231934},"rot":{"x":0.0208110976964235,"y":269.991760253906,"z":0.0167680587619543}},"698fcc":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29297602176666,"z":-79.6082916259766},"rot":{"x":0.0208091381937265,"y":269.998474121094,"z":0.0167706478387117}},"6b2e97":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29565048217773,"z":-75.0203018188477},"rot":{"x":0.0208094827830791,"y":269.997192382813,"z":0.01677006483078}},"764515":{"lock":false,"pos":{"x":58.1054992675781,"y":1.30883800983429,"z":-52.0710487365723},"rot":{"x":0.020804388448596,"y":270.014465332031,"z":0.0167762618511915}},"7da732":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208087172359228,"y":269.999694824219,"z":0.0167710073292255}},"8272e9":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29704034328461,"z":-61.2083396911621},"rot":{"x":0.0208038911223412,"y":270.016479492188,"z":0.0167772267013788}},"82d9bb":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957282543182,"z":-77.3202514648438},"rot":{"x":0.0208086743950844,"y":269.999603271484,"z":0.0167710445821285}},"86ed13":{"lock":false,"pos":{"x":36.6243324279785,"y":1.3017281293869,"z":-49.7084655761719},"rot":{"x":0.0208088364452124,"y":269.998779296875,"z":0.0167706906795502}},"8c0e3b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208088476210833,"y":269.998748779297,"z":0.0167707279324532}},"8f6cb3":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208086296916008,"y":269.999450683594,"z":0.0167708750814199}},"918fde":{"lock":false,"pos":{"x":58.0996627807617,"y":1.30816268920898,"z":-54.3709754943848},"rot":{"x":0.0208086110651493,"y":269.999542236328,"z":0.0167710445821285}},"943332":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29701542854309,"z":-65.8086090087891},"rot":{"x":0.0208125486969948,"y":269.986572265625,"z":0.0167660806328058}},"94ebe8":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29162955284119,"z":-84.2083053588867},"rot":{"x":0.020510608330369,"y":271.009094238281,"z":0.0171348657459021}},"9c0a3d":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563187599182,"z":-56.6203422546387},"rot":{"x":0.0208090599626303,"y":269.998504638672,"z":0.0167705416679382}},"9c8a39":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083114624023},"rot":{"x":0.0208093039691448,"y":269.998687744141,"z":0.016771238297224}},"a1c372":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208085849881172,"y":269.999694824219,"z":0.016770988702774}},"a766a3":{"lock":false,"pos":{"x":32.985279083252,"y":1.29906010627747,"z":-54.3083381652832},"rot":{"x":0.0208035446703434,"y":270.0166015625,"z":0.0167771261185408}},"a7e5a4":{"lock":false,"pos":{"x":40.6758575439453,"y":1.30292499065399,"z":-54.3128776550293},"rot":{"x":0.0208086613565683,"y":269.999725341797,"z":0.0167705696076155}},"a906ee":{"lock":false,"pos":{"x":52.9442100524902,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208088513463736,"y":269.999450683594,"z":0.0167709831148386}},"b49ef1":{"lock":false,"pos":{"x":40.2900390625,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208086259663105,"y":269.999572753906,"z":0.016770863905549}},"b9b811":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29230272769928,"z":-81.9085006713867},"rot":{"x":0.020808931440115,"y":269.998443603516,"z":0.0167706217616796}},"b9dd5d":{"lock":false,"pos":{"x":32.985294342041,"y":1.30040621757507,"z":-49.7095527648926},"rot":{"x":0.0208111759275198,"y":269.990661621094,"z":0.0167678687721491}},"bb7d83":{"lock":false,"pos":{"x":32.9852905273438,"y":1.29636716842651,"z":-63.5083389282227},"rot":{"x":0.0208036731928587,"y":270.016479492188,"z":0.0167771652340889}},"bb9d20":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.0208088792860508,"y":269.998565673828,"z":0.0167707521468401}},"bdddfa":{"lock":false,"pos":{"x":40.2920799255371,"y":1.29363143444061,"z":-81.9201278686523},"rot":{"x":0.0208087060600519,"y":269.999572753906,"z":0.016770888119936}},"becb9c":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208084564656019,"y":269.999694824219,"z":0.0167711619287729}},"c2f6b1":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170953273773,"z":-54.3199996948242},"rot":{"x":0.0208085495978594,"y":269.999694824219,"z":0.0167710352689028}},"c311be":{"lock":false,"pos":{"x":58.099666595459,"y":1.31018245220184,"z":-47.4709739685059},"rot":{"x":0.0208086203783751,"y":269.999481201172,"z":0.0167710334062576}},"c4c4b1":{"lock":false,"pos":{"x":40.290096282959,"y":1.2922842502594,"z":-86.5198974609375},"rot":{"x":0.02080805785954,"y":269.999664306641,"z":0.0167709123343229}},"c5d676":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208092406392097,"y":269.999450683594,"z":0.0167713835835457}},"c5fb42":{"lock":false,"pos":{"x":36.6243438720703,"y":1.30240142345428,"z":-47.4087371826172},"rot":{"x":0.0208110604435205,"y":269.991851806641,"z":0.0167680457234383}},"c78082":{"lock":false,"pos":{"x":32.985279083252,"y":1.29973292350769,"z":-52.0095634460449},"rot":{"x":0.020811278373003,"y":269.990295410156,"z":0.0167677085846663}},"cb968f":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208084918558598,"y":269.999542236328,"z":0.0167710836976767}},"d26b84":{"lock":false,"pos":{"x":52.9441108703613,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.020808856934309,"y":269.999420166016,"z":0.016770962625742}},"d4d8c4":{"lock":false,"pos":{"x":40.2742652893066,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.0208088923245668,"y":269.999633789063,"z":0.0167709160596132}},"d73dce":{"lock":false,"pos":{"x":32.985279083252,"y":1.29838681221008,"z":-56.608341217041},"rot":{"x":0.0208037439733744,"y":270.016540527344,"z":0.0167768709361553}},"d74e66":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208088327199221,"y":269.99951171875,"z":0.0167710520327091}},"da25d8":{"lock":false,"pos":{"x":52.9462471008301,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208090394735336,"y":269.998657226563,"z":0.0167707167565823}},"dcd9ce":{"lock":false,"pos":{"x":32.985279083252,"y":1.29771363735199,"z":-58.9083442687988},"rot":{"x":0.0208036303520203,"y":270.016510009766,"z":0.0167771559208632}},"e21200":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29838693141937,"z":-56.6086387634277},"rot":{"x":0.0208160597831011,"y":269.974426269531,"z":0.0167615469545126}},"e2bc49":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30293905735016,"z":-65.8205108642578},"rot":{"x":0.0208076778799295,"y":270.002868652344,"z":0.0167720839381218}},"e53458":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950915813446,"z":-49.7709617614746},"rot":{"x":0.0208087358623743,"y":269.999481201172,"z":0.0167709551751614}},"e84eff":{"lock":false,"pos":{"x":52.9442329406738,"y":1.3076514005661,"z":-49.7206268310547},"rot":{"x":0.0208080112934113,"y":270.0029296875,"z":0.0167713426053524}},"ea3df4":{"lock":false,"pos":{"x":36.6082649230957,"y":1.28960514068604,"z":-91.1042861938477},"rot":{"x":0.0205099210143089,"y":271.008972167969,"z":0.0171349421143532}},"ec3a71":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30159246921539,"z":-70.4202270507813},"rot":{"x":0.0208089556545019,"y":269.999481201172,"z":0.0167710557579994}},"ef43db":{"lock":false,"pos":{"x":40.290096282959,"y":1.29228413105011,"z":-86.5202178955078},"rot":{"x":0.0208109896630049,"y":269.992065429688,"z":0.0167684461921453}},"ef52e6":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.020809156820178,"y":269.998504638672,"z":0.0167705155909061}},"ef7b23":{"lock":false,"pos":{"x":32.985294342041,"y":1.30107951164246,"z":-47.4095573425293},"rot":{"x":0.0207426361739635,"y":270.224182128906,"z":0.0168525166809559}},"f00301":{"lock":false,"pos":{"x":32.9853057861328,"y":1.29771339893341,"z":-58.9086074829102},"rot":{"x":0.0208163466304541,"y":269.974304199219,"z":0.0167616214603186}},"f1654d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083419799805},"rot":{"x":0.0208091288805008,"y":269.998474121094,"z":0.0167705528438091}},"f560b1":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208087116479874,"y":269.999450683594,"z":0.0167708992958069}},"f651e8":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29432249069214,"z":-75.008430480957},"rot":{"x":0.0208091344684362,"y":269.998504638672,"z":0.0167706906795502}},"f71c08":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29095637798309,"z":-86.5083084106445},"rot":{"x":0.0205099526792765,"y":271.009063720703,"z":0.0171350054442883}},"f89dd6":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208084844052792,"y":269.999542236328,"z":0.0167710911482573}},"f9a151":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208085644990206,"y":269.999694824219,"z":0.0167711265385151}},"fa4a56":{"lock":false,"pos":{"x":52.9441871643066,"y":1.30428540706635,"z":-61.2203636169434},"rot":{"x":0.0208087526261806,"y":269.999450683594,"z":0.0167709141969681}},"fc4caf":{"lock":false,"pos":{"x":52.9442405700684,"y":1.29687976837158,"z":-86.520263671875},"rot":{"x":0.0208045169711113,"y":270.013793945313,"z":0.0167760942131281}},"fcd9ce":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208087228238583,"y":269.998718261719,"z":0.0167708117514849}},"fea03b":{"lock":false,"pos":{"x":40.3117637634277,"y":1.29767489433289,"z":-68.1306838989258},"rot":{"x":0.0208087395876646,"y":269.999481201172,"z":0.0167709998786449}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Mystic -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.3 - posY: 1.66 - posZ: -80.18 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf.yaml index d56a66adc..27136286d 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf.yaml @@ -4,11 +4,10 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff.yaml' -- !include 'Custom_Model_Bag Mystic b4d9bf/Card Promise of Power c619af.yaml' -- !include 'Custom_Model_Bag Mystic b4d9bf/Card Sword Cane c99da7.yaml' -- !include 'Custom_Model_Bag Mystic b4d9bf/Card Tides of Fate 78b142.yaml' -- !include 'Custom_Model_Bag Mystic b4d9bf/Card Ward of Radiance b22438.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Shroud of Shadows a565d5.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Eye of Chaos 9a5782.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Armageddon 3feff1.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Blinding Light 00d05a.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Voice of Ra 0988b2.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Enraptured 0ce7b8.yaml' @@ -32,6 +31,7 @@ ContainedObjects: - !include 'Custom_Model_Bag Mystic b4d9bf/Card Crystal Pendulum 6c3156.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Olive McBride 715974.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Dark Prophecy 74b8d4.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Tides of Fate 78b142.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Forbidden Knowledge 7cf231.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Alchemical Transmutation 7d133c.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Prescient 7e7873.yaml' @@ -46,13 +46,16 @@ ContainedObjects: - !include 'Custom_Model_Bag Mystic b4d9bf/Card Alyssa Graham a26795.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Eldritch Inspiration a268ef.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Uncage the Soul a82830.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Ward of Radiance b22438.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Drawn to the Flame b36f5e.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Clairvoyance b67371.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Spectral Razor b6bccc.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Sixth Sense b7efb5.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Delve too Deep b83784.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Promise of Power c619af.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Scroll of Secrets c63ec7.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Ineffable Truth c6caf6.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Sword Cane c99da7.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Ritual Candles d2776c.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Robes of Endless Night d9292f.yaml' - !include 'Custom_Model_Bag Mystic b4d9bf/Card Open Gate dfc9b0.yaml' @@ -94,7 +97,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Mystic b4d9bf.ttslua' -LuaScriptState: '{"ml":{"00d05a":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30757141113281,"z":90.141227722168},"rot":{"x":0.0208181124180555,"y":269.967468261719,"z":0.0167594701051712}},"0988b2":{"lock":false,"pos":{"x":53.2126121520996,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208084508776665,"y":270,"z":0.0167710892856121}},"0ce7b8":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30942893028259,"z":90.0903701782227},"rot":{"x":0.0208170264959335,"y":269.970916748047,"z":0.0167606249451637}},"0e459d":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29705882072449,"z":69.4486694335938},"rot":{"x":0.0208132285624743,"y":269.984191894531,"z":0.0167653225362301}},"17319c":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042505264282,"z":80.9486770629883},"rot":{"x":0.0208084844052792,"y":270,"z":0.0167713705450296}},"20ff08":{"lock":false,"pos":{"x":53.2127799987793,"y":1.29612362384796,"z":51.0517311096191},"rot":{"x":0.0208189375698566,"y":269.966430664063,"z":0.0167580544948578}},"24621a":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208132378757,"y":269.983551025391,"z":0.0167651809751987}},"247824":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30218553543091,"z":71.7412033081055},"rot":{"x":0.02081816829741,"y":269.966979980469,"z":0.016759080812335}},"24a147":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.0208132229745388,"y":269.983428955078,"z":0.0167652256786823}},"3120e7":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486724853516},"rot":{"x":0.0208130981773138,"y":269.984313964844,"z":0.0167653448879719}},"348395":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30016565322876,"z":64.8410720825195},"rot":{"x":0.0208182297646999,"y":269.966796875,"z":0.0167590174823999}},"396e1c":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042505264282,"z":80.9486846923828},"rot":{"x":0.0208138320595026,"y":269.984497070313,"z":0.0167657043784857}},"4287c0":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244481563568,"z":87.8487014770508},"rot":{"x":0.020812913775444,"y":269.984741210938,"z":0.0167656019330025}},"47bdba":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30083894729614,"z":67.1410827636719},"rot":{"x":0.0208085924386978,"y":270,"z":0.0167709942907095}},"4abb47":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.020813312381506,"y":269.984008789063,"z":0.0167656000703573}},"4f33d5":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29881930351257,"z":60.2411804199219},"rot":{"x":0.020818317309022,"y":269.966705322266,"z":0.0167591571807861}},"4fe0b8":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29846823215485,"z":78.6607055664063},"rot":{"x":0.0208133049309254,"y":269.983245849609,"z":0.0167650822550058}},"562eb1":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29949247837067,"z":62.5411796569824},"rot":{"x":0.0208181831985712,"y":269.966796875,"z":0.0167592111974955}},"5792ab":{"lock":false,"pos":{"x":37.4159660339355,"y":1.29510200023651,"z":67.1606750488281},"rot":{"x":0.0208134762942791,"y":269.982849121094,"z":0.016764847561717}},"5905a9":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29712176322937,"z":74.0607070922852},"rot":{"x":0.0208132956176996,"y":269.983093261719,"z":0.0167651791125536}},"5e3a3b":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208087768405676,"y":269.99951171875,"z":0.016770800575614}},"62db13":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30555164813995,"z":83.2412185668945},"rot":{"x":0.0208181273192167,"y":269.967132568359,"z":0.0167592205107212}},"6446d1":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607116699219},"rot":{"x":0.0208085086196661,"y":269.999969482422,"z":0.0167711619287729}},"64fcdf":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208132695406675,"y":269.983856201172,"z":0.0167653579264879}},"6c3156":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29840540885925,"z":74.0486755371094},"rot":{"x":0.0208085887134075,"y":270,"z":0.0167712103575468}},"715974":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29234755039215,"z":53.3492126464844},"rot":{"x":0.0208133384585381,"y":269.983795166016,"z":0.0167652629315853}},"74b8d4":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30689811706543,"z":87.8412246704102},"rot":{"x":0.0208179857581854,"y":269.96728515625,"z":0.0167593359947205}},"78b142":{"lock":false,"pos":{"x":53.2285919189453,"y":1.29679954051971,"z":53.3411636352539},"rot":{"x":0.0208088327199221,"y":269.999603271484,"z":0.0167707819491625}},"7cf231":{"lock":false,"pos":{"x":40.9601707458496,"y":1.29571235179901,"z":64.8486404418945},"rot":{"x":0.0208130516111851,"y":269.984039306641,"z":0.016765434294939}},"7d133c":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30379128456116,"z":92.4487075805664},"rot":{"x":0.0208129975944757,"y":269.984741210938,"z":0.0167656298726797}},"7d532d":{"lock":false,"pos":{"x":40.9602127075195,"y":1.29840540885925,"z":74.048698425293},"rot":{"x":0.0208125095814466,"y":269.984497070313,"z":0.0167653169482946}},"7e7873":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30808234214783,"z":85.490348815918},"rot":{"x":0.0208084918558598,"y":270.000061035156,"z":0.0167711991816759}},"7fda7e":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638564586639,"z":67.1486663818359},"rot":{"x":0.0208138152956963,"y":269.984161376953,"z":0.0167658906430006}},"8b39e9":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29167747497559,"z":51.059757232666},"rot":{"x":0.0208133067935705,"y":269.983764648438,"z":0.0167651996016502}},"8bb57d":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208181627094746,"y":269.967468261719,"z":0.0167593117803335}},"916f1c":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29577529430389,"z":69.4607086181641},"rot":{"x":0.0208134166896343,"y":269.982971191406,"z":0.0167649649083614}},"946958":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903579711914},"rot":{"x":0.0208172723650932,"y":269.970642089844,"z":0.0167604926973581}},"971d52":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638564586639,"z":67.1486663818359},"rot":{"x":0.0208083689212799,"y":270,"z":0.0167711451649666}},"98aa6a":{"lock":false,"pos":{"x":40.9603118896484,"y":1.29436600208282,"z":60.2487831115723},"rot":{"x":0.0208131037652493,"y":269.983947753906,"z":0.0167653020471334}},"9bee5a":{"lock":false,"pos":{"x":49.5628509521484,"y":1.30691683292389,"z":92.4527969360352},"rot":{"x":0.020818293094635,"y":269.966369628906,"z":0.0167589355260134}},"9f2514":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30606257915497,"z":78.5903549194336},"rot":{"x":0.020817119628191,"y":269.970458984375,"z":0.0167604275047779}},"9f8a0a":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208139251917601,"y":269.984252929688,"z":0.0167657993733883}},"a0b9a7":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30083894729614,"z":67.1410827636719},"rot":{"x":0.020818779245019,"y":269.966888427734,"z":0.0167595278471708}},"a26795":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30311810970306,"z":90.1487121582031},"rot":{"x":0.0208130907267332,"y":269.984710693359,"z":0.0167656168341637}},"a268ef":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30420517921448,"z":78.641227722168},"rot":{"x":0.0208182167261839,"y":269.967163085938,"z":0.0167590919882059}},"a283b4":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208131521940231,"y":269.98388671875,"z":0.0167651418596506}},"a82830":{"lock":false,"pos":{"x":53.2127723693848,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.0208185072988272,"y":269.966552734375,"z":0.0167590230703354}},"b22438":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208092257380486,"y":269.999755859375,"z":0.0167716592550278}},"b36f5e":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30487847328186,"z":80.9412307739258},"rot":{"x":0.0208180621266365,"y":269.967437744141,"z":0.0167595092207193}},"b67371":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.6486740112305},"rot":{"x":0.0208086259663105,"y":270,"z":0.0167711731046438}},"b6bccc":{"lock":false,"pos":{"x":53.2305870056152,"y":1.29814672470093,"z":57.9409599304199},"rot":{"x":0.0208184104412794,"y":269.966644287109,"z":0.016759030520916}},"b7efb5":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29779493808746,"z":76.3607025146484},"rot":{"x":0.0208135228604078,"y":269.983032226563,"z":0.0167650319635868}},"b83784":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.0208182670176029,"y":269.96728515625,"z":0.0167592745274305}},"c619af":{"lock":false,"pos":{"x":58.3838500976563,"y":1.30740904808044,"z":83.1903762817383},"rot":{"x":0.020805025473237,"y":270.010040283203,"z":0.0167746040970087}},"c63ec7":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.8607177734375},"rot":{"x":0.0208133850246668,"y":269.983337402344,"z":0.0167650431394577}},"c6caf6":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208085887134075,"y":270,"z":0.0167713407427073}},"c99da7":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29644846916199,"z":71.7607269287109},"rot":{"x":0.020808283239603,"y":269.999603271484,"z":0.0167708061635494}},"d2776c":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29100203514099,"z":48.7527351379395},"rot":{"x":0.0208131913095713,"y":269.983673095703,"z":0.016765309497714}},"d9292f":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.020808594301343,"y":270,"z":0.0167712960392237}},"dac4f8":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208142288029194,"y":269.983367919922,"z":0.0167654417455196}},"dfc9b0":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151224136353,"z":69.4412002563477},"rot":{"x":0.0208183471113443,"y":269.966918945313,"z":0.0167590416967869}},"e0906c":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208176057785749,"y":269.969482421875,"z":0.0167602151632309}},"e16d74":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29914140701294,"z":80.9607086181641},"rot":{"x":0.0208133049309254,"y":269.983306884766,"z":0.0167652145028114}},"e546c0":{"lock":false,"pos":{"x":53.2285537719727,"y":1.302858710289,"z":74.0412063598633},"rot":{"x":0.0208180192857981,"y":269.967010498047,"z":0.0167591441422701}},"e563d5":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29907858371735,"z":76.3486938476563},"rot":{"x":0.0208132099360228,"y":269.984313964844,"z":0.0167653560638428}},"e792b0":{"lock":false,"pos":{"x":53.2284622192383,"y":1.29747271537781,"z":55.6411819458008},"rot":{"x":0.0208183415234089,"y":269.966613769531,"z":0.0167592745274305}},"eb8234":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208129994571209,"y":269.984649658203,"z":0.0167655516415834}},"ebdac9":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183446407318,"z":90.1607208251953},"rot":{"x":0.0208134669810534,"y":269.983428955078,"z":0.0167652573436499}},"ee51d8":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30353200435638,"z":76.3412017822266},"rot":{"x":0.0208183489739895,"y":269.967102050781,"z":0.0167593434453011}},"f21135":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30875563621521,"z":87.7903823852539},"rot":{"x":0.0208173431456089,"y":269.970733642578,"z":0.0167603511363268}},"fee183":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208129994571209,"y":269.984802246094,"z":0.0167655274271965}}}}' +LuaScriptState: '{"ml":{"00d05a":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3075715303421,"z":90.141227722168},"rot":{"x":0.0208179596811533,"y":269.967468261719,"z":0.0167594738304615}},"0988b2":{"lock":false,"pos":{"x":53.2126121520996,"y":1.29544854164124,"z":48.7452774047852},"rot":{"x":0.0208086092025042,"y":270,"z":0.0167712923139334}},"0ce7b8":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30942869186401,"z":90.0903701782227},"rot":{"x":0.0208171363919973,"y":269.970916748047,"z":0.016760565340519}},"0e459d":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208132173866034,"y":269.984252929688,"z":0.0167655125260353}},"17319c":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29975187778473,"z":78.6486892700195},"rot":{"x":0.0208079405128956,"y":270.000030517578,"z":0.0167709123343229}},"20ff08":{"lock":false,"pos":{"x":53.2127799987793,"y":1.29612362384796,"z":51.0517311096191},"rot":{"x":0.0208189375698566,"y":269.966430664063,"z":0.0167580544948578}},"24621a":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208132378757,"y":269.983551025391,"z":0.0167651809751987}},"247824":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30218553543091,"z":71.7412033081055},"rot":{"x":0.0208180192857981,"y":269.966979980469,"z":0.0167590640485287}},"24a147":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607238769531},"rot":{"x":0.0208126250654459,"y":269.983459472656,"z":0.0167648009955883}},"3120e7":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208125710487366,"y":269.984436035156,"z":0.0167642999440432}},"348395":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30016577243805,"z":64.8410720825195},"rot":{"x":0.0208182111382484,"y":269.966796875,"z":0.0167589709162712}},"396e1c":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042505264282,"z":80.9486846923828},"rot":{"x":0.0208138320595026,"y":269.984497070313,"z":0.0167657043784857}},"3feff1":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30042505264282,"z":80.9486999511719},"rot":{"x":0.0208083335310221,"y":269.998931884766,"z":0.01677056401968}},"4287c0":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244481563568,"z":87.8487014770508},"rot":{"x":0.0208129361271858,"y":269.984741210938,"z":0.0167655646800995}},"47bdba":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30083906650543,"z":67.1410827636719},"rot":{"x":0.0208085551857948,"y":270,"z":0.0167712047696114}},"4abb47":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208136606961489,"y":269.983978271484,"z":0.0167650002986193}},"4f33d5":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29881930351257,"z":60.2411804199219},"rot":{"x":0.0208183098584414,"y":269.966705322266,"z":0.0167593378573656}},"4fe0b8":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208141654729843,"y":269.983215332031,"z":0.0167655311524868}},"562eb1":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29949259757996,"z":62.5411796569824},"rot":{"x":0.0208182670176029,"y":269.966796875,"z":0.0167593043297529}},"5792ab":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29308223724365,"z":60.2607727050781},"rot":{"x":0.0208138022571802,"y":269.982818603516,"z":0.0167648121714592}},"5905a9":{"lock":false,"pos":{"x":37.4159698486328,"y":1.29510200023651,"z":67.1606750488281},"rot":{"x":0.0208143871277571,"y":269.983032226563,"z":0.0167654491961002}},"5e3a3b":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208087768405676,"y":269.99951171875,"z":0.016770800575614}},"62db13":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30555176734924,"z":83.2412185668945},"rot":{"x":0.0208182632923126,"y":269.967132568359,"z":0.0167595166712999}},"6446d1":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846823215485,"z":78.6607208251953},"rot":{"x":0.0208079945296049,"y":270.000030517578,"z":0.0167700331658125}},"64fcdf":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.02081348747015,"y":269.983825683594,"z":0.016765009611845}},"6c3156":{"lock":false,"pos":{"x":40.960205078125,"y":1.29773211479187,"z":71.7486877441406},"rot":{"x":0.0208081286400557,"y":270.000061035156,"z":0.0167701635509729}},"715974":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208135601133108,"y":269.983764648438,"z":0.0167647954076529}},"74b8d4":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30689823627472,"z":87.8412246704102},"rot":{"x":0.0208182837814093,"y":269.96728515625,"z":0.0167593713849783}},"78b142":{"lock":false,"pos":{"x":53.2285919189453,"y":1.296799659729,"z":53.3411636352539},"rot":{"x":0.0208084657788277,"y":269.999603271484,"z":0.0167708825320005}},"7cf231":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208133812993765,"y":269.984008789063,"z":0.0167649742215872}},"7d133c":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30379140377045,"z":92.4487075805664},"rot":{"x":0.0208129473030567,"y":269.984741210938,"z":0.0167653653770685}},"7d532d":{"lock":false,"pos":{"x":40.9602127075195,"y":1.29840540885925,"z":74.048698425293},"rot":{"x":0.0208125095814466,"y":269.984497070313,"z":0.0167653169482946}},"7e7873":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30808246135712,"z":85.490348815918},"rot":{"x":0.0208086892962456,"y":270.000061035156,"z":0.0167709160596132}},"7fda7e":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638564586639,"z":67.1486663818359},"rot":{"x":0.0208138152956963,"y":269.984161376953,"z":0.0167658906430006}},"8b39e9":{"lock":false,"pos":{"x":37.4159927368164,"y":1.30250763893127,"z":92.4607315063477},"rot":{"x":0.020812876522541,"y":269.983764648438,"z":0.0167650394141674}},"8bb57d":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208180192857981,"y":269.967468261719,"z":0.0167594850063324}},"916f1c":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29375553131104,"z":62.5607719421387},"rot":{"x":0.0208138227462769,"y":269.983032226563,"z":0.0167646929621696}},"946958":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903579711914},"rot":{"x":0.0208172891288996,"y":269.970642089844,"z":0.0167604684829712}},"971d52":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.0208085477352142,"y":270.000030517578,"z":0.0167708806693554}},"98aa6a":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208134427666664,"y":269.98388671875,"z":0.0167649369686842}},"9a5782":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29571235179901,"z":64.8486709594727},"rot":{"x":0.020808469504118,"y":269.998931884766,"z":0.0167706441134214}},"9bee5a":{"lock":false,"pos":{"x":49.5628509521484,"y":1.30691683292389,"z":92.4527969360352},"rot":{"x":0.0208183918148279,"y":269.966369628906,"z":0.016758793964982}},"9f2514":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30606269836426,"z":78.5903549194336},"rot":{"x":0.0208174008876085,"y":269.970458984375,"z":0.0167603101581335}},"9f8a0a":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208139251917601,"y":269.984252929688,"z":0.0167657993733883}},"a0b9a7":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30083894729614,"z":67.1410827636719},"rot":{"x":0.020818779245019,"y":269.966888427734,"z":0.0167595278471708}},"a26795":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30311810970306,"z":90.1487121582031},"rot":{"x":0.0208130832761526,"y":269.984710693359,"z":0.0167657975107431}},"a268ef":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30420529842377,"z":78.641227722168},"rot":{"x":0.0208179671317339,"y":269.967163085938,"z":0.016759492456913}},"a283b4":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208131521940231,"y":269.98388671875,"z":0.0167651418596506}},"a565d5":{"lock":false,"pos":{"x":37.4161338806152,"y":1.29711866378784,"z":74.0500869750977},"rot":{"x":0.0208095014095306,"y":269.997009277344,"z":0.0167702212929726}},"a82830":{"lock":false,"pos":{"x":53.2127723693848,"y":1.29612374305725,"z":51.0517272949219},"rot":{"x":0.0208183135837317,"y":269.966552734375,"z":0.0167590081691742}},"b22438":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208086390048265,"y":269.999755859375,"z":0.0167711488902569}},"b36f5e":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30487859249115,"z":80.9412307739258},"rot":{"x":0.0208180472254753,"y":269.967437744141,"z":0.0167593732476234}},"b67371":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29907858371735,"z":76.3486862182617},"rot":{"x":0.0208080615848303,"y":270.000061035156,"z":0.0167700573801994}},"b6bccc":{"lock":false,"pos":{"x":53.2305870056152,"y":1.29814672470093,"z":57.9409599304199},"rot":{"x":0.020818205550313,"y":269.966644287109,"z":0.0167589131742716}},"b7efb5":{"lock":false,"pos":{"x":37.4159774780273,"y":1.2957751750946,"z":69.4607086181641},"rot":{"x":0.0208143480122089,"y":269.983032226563,"z":0.0167653001844883}},"b83784":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622506141663,"z":85.5412216186523},"rot":{"x":0.0208180900663137,"y":269.96728515625,"z":0.016759192571044}},"c619af":{"lock":false,"pos":{"x":58.3838500976563,"y":1.30740916728973,"z":83.1903762817383},"rot":{"x":0.0208058375865221,"y":270.010040283203,"z":0.0167748834937811}},"c63ec7":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607269287109},"rot":{"x":0.0208129249513149,"y":269.9833984375,"z":0.0167638566344976}},"c6caf6":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208088103681803,"y":269.999969482422,"z":0.0167706534266472}},"c99da7":{"lock":false,"pos":{"x":37.4159698486328,"y":1.29442870616913,"z":64.8606719970703},"rot":{"x":0.0208094473928213,"y":269.999664306641,"z":0.0167713891714811}},"d2776c":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30183446407318,"z":90.1607437133789},"rot":{"x":0.0208128597587347,"y":269.983642578125,"z":0.0167650356888771}},"d9292f":{"lock":false,"pos":{"x":37.4159851074219,"y":1.3011611700058,"z":87.8607330322266},"rot":{"x":0.0208078641444445,"y":270.000030517578,"z":0.0167708955705166}},"dac4f8":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208142288029194,"y":269.983367919922,"z":0.0167654417455196}},"dfc9b0":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151236057281,"z":69.4412002563477},"rot":{"x":0.0208181440830231,"y":269.966918945313,"z":0.0167590621858835}},"e0906c":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208175722509623,"y":269.969482421875,"z":0.0167600810527802}},"e16d74":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779505729675,"z":76.3607177734375},"rot":{"x":0.0208134818822145,"y":269.983367919922,"z":0.0167651697993279}},"e546c0":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30285882949829,"z":74.0412063598633},"rot":{"x":0.020818192511797,"y":269.967010498047,"z":0.0167592614889145}},"e563d5":{"lock":false,"pos":{"x":40.960205078125,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.0208130776882172,"y":269.984375,"z":0.0167633332312107}},"e792b0":{"lock":false,"pos":{"x":53.2284622192383,"y":1.2974728345871,"z":55.6411819458008},"rot":{"x":0.0208184160292149,"y":269.966613769531,"z":0.0167591720819473}},"eb8234":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208130814135075,"y":269.984649658203,"z":0.0167655032128096}},"ebdac9":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30048799514771,"z":85.5607299804688},"rot":{"x":0.0208128336817026,"y":269.983459472656,"z":0.0167649034410715}},"ee51d8":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30353200435638,"z":76.3412017822266},"rot":{"x":0.0208180863410234,"y":269.967102050781,"z":0.0167591366916895}},"f21135":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30875563621521,"z":87.7903823852539},"rot":{"x":0.0208172351121902,"y":269.970733642578,"z":0.016760315746069}},"fee183":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208129864186049,"y":269.984802246094,"z":0.0167655944824219}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Armageddon 3feff1.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Armageddon 3feff1.yaml new file mode 100644 index 000000000..8a831f6c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Armageddon 3feff1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3feff1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Armageddon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96 + posY: 1.3 + posZ: 80.95 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Azure Flame 17319c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Azure Flame 17319c.yaml index 843f4f91e..46f7c820a 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Azure Flame 17319c.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Azure Flame 17319c.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.3 - posZ: 80.95 + posZ: 78.65 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Clairvoyance b67371.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Clairvoyance b67371.yaml index 4a8fa011a..326e01657 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Clairvoyance b67371.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Clairvoyance b67371.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.3 - posZ: 78.65 + posZ: 76.35 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 666377c18..f8e8b0672 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.3 - posZ: 76.35 + posZ: 74.05 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Crystal Pendulum 6c3156.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Crystal Pendulum 6c3156.yaml index 08665aec0..4d095d4f9 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Crystal Pendulum 6c3156.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Crystal Pendulum 6c3156.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.3 - posZ: 74.05 + posZ: 71.75 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 2a06f8f1f..af01e0eca 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card David Renfield 3120e7.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card David Renfield 3120e7.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.3 - posZ: 71.75 + posZ: 69.45 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 887a67742..3dfd412e2 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Enchanted Blade 0e459d.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Enchanted Blade 0e459d.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.3 - posZ: 69.45 + posZ: 67.15 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Eye of Chaos 9a5782.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Eye of Chaos 9a5782.yaml new file mode 100644 index 000000000..67e84c297 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Eye of Chaos 9a5782.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9a5782 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eye of Chaos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96 + posY: 1.3 + posZ: 64.85 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Familiar Spirit 971d52.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Familiar Spirit 971d52.yaml index f4a8ea22b..f10fa8c0d 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Familiar Spirit 971d52.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Familiar Spirit 971d52.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.3 - posZ: 67.15 + posZ: 62.55 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 35ed9d8e7..acf35a4a8 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Forbidden Knowledge 7cf231.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Forbidden Knowledge 7cf231.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 40.96 - posY: 1.3 - posZ: 64.85 + posY: 1.29 + posZ: 60.25 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 85c5f2728..0427df81f 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Healing Words 4abb47.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Healing Words 4abb47.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 40.96 - posY: 1.3 - posZ: 62.55 + posY: 1.29 + posZ: 57.95 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 91c465321..2a7661930 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Holy Rosary 98aa6a.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Holy Rosary 98aa6a.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 60.25 + posZ: 55.65 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ineffable Truth c6caf6.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ineffable Truth c6caf6.yaml index c6f5e3d6a..b9f185437 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ineffable Truth c6caf6.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ineffable Truth c6caf6.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 57.95 + posZ: 53.35 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 020c4f8ca..19dc707f5 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 55.65 + posZ: 51.06 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index e48caad95..b7fdf504e 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Olive McBride 715974.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Olive McBride 715974.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 53.35 + posZ: 48.75 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Promise of Power c619af.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Promise of Power c619af.yaml index c7572049d..abd21839c 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Promise of Power c619af.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Promise of Power c619af.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266326 +CardID: 554126 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ 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 index d8383885b..eaf4b768a 100644 --- 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 @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.96 - posY: 1.29 - posZ: 51.06 + posX: 37.42 + posY: 1.3 + posZ: 92.46 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 6205b6afe..0c0b6649d 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ritual Candles d2776c.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ritual Candles d2776c.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.96 - posY: 1.29 - posZ: 48.75 + posX: 37.42 + posY: 1.3 + posZ: 90.16 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Robes of Endless Night d9292f.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Robes of Endless Night d9292f.yaml index d3a945d58..2acd56961 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Robes of Endless Night d9292f.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Robes of Endless Night d9292f.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 92.46 + posZ: 87.86 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 459f24fb8..15dbf3f0e 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 90.16 + posZ: 85.56 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 3f257370d..c6a99e0fd 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 87.86 + posZ: 83.26 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying 24a147.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying 24a147.yaml index baaab67c6..3b0ae411e 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying 24a147.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying 24a147.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 85.56 + posZ: 80.96 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying Mirror 6446d1.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying Mirror 6446d1.yaml index 56aa2d0d4..3287cc863 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying Mirror 6446d1.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying Mirror 6446d1.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 83.26 + posZ: 78.66 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shrivelling e16d74.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shrivelling e16d74.yaml index c1c2270e4..24f966dc3 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shrivelling e16d74.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shrivelling e16d74.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 80.96 + posZ: 76.36 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shroud of Shadows a565d5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shroud of Shadows a565d5.yaml new file mode 100644 index 000000000..da0df8dc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shroud of Shadows a565d5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a565d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Shroud of Shadows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 37.42 + posY: 1.3 + posZ: 74.05 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + 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 index be6ca9c50..509fc8af4 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sign Magick 4fe0b8.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sign Magick 4fe0b8.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 78.66 + posZ: 71.76 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 47ce975c6..e5fbf5550 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sixth Sense b7efb5.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sixth Sense b7efb5.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 76.36 + posZ: 69.46 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index c13102f40..709208e55 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 74.06 + posZ: 67.16 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sword Cane c99da7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sword Cane c99da7.yaml index 7f95316a3..a8387b0a7 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sword Cane c99da7.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sword Cane c99da7.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266323 +CardID: 554223 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 37.42 - posY: 1.3 - posZ: 71.76 + posY: 1.29 + posZ: 64.86 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index c10fdda19..3204c06ec 100644 --- 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 @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 37.42 - posY: 1.3 - posZ: 69.46 + posY: 1.29 + posZ: 62.56 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Tides of Fate 78b142.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Tides of Fate 78b142.yaml index 8776b80e5..2c7c53af7 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Tides of Fate 78b142.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Tides of Fate 78b142.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266324 +CardID: 553924 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ward of Radiance b22438.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ward of Radiance b22438.yaml index 3513c101f..b391c6f3b 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ward of Radiance b22438.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ward of Radiance b22438.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266325 +CardID: 554025 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Wither 5792ab.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Wither 5792ab.yaml index c66625331..a20dc49ef 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Wither 5792ab.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Wither 5792ab.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 37.42 - posY: 1.3 - posZ: 67.16 + posY: 1.29 + posZ: 60.26 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff.yaml deleted file mode 100644 index 3b7c84ea6..000000000 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff.yaml +++ /dev/null @@ -1,115 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Mystic e996ff/Card Promise of Power c619af.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Sword Cane c99da7.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Tides of Fate 78b142.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Ward of Radiance b22438.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Blinding Light 00d05a.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Voice of Ra 0988b2.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Enraptured 0ce7b8.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Enchanted Blade 0e459d.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Azure Flame 17319c.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Moonlight Ritual 247824.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Scrying 24a147.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card David Renfield 3120e7.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Premonition 348395.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Arcane Initiate 4287c0.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Parallel Fates 47bdba.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Healing Words 4abb47.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Read the Signs 4f33d5.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Sign Magick 4fe0b8.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Quantum Flux 562eb1.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Wither 5792ab.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card St. Hubert''s Key 5905a9.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Deny Existence 62db13.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Scrying Mirror 6446d1.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Mists of R''lyeh 64fcdf.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Crystal Pendulum 6c3156.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Olive McBride 715974.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Dark Prophecy 74b8d4.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Forbidden Knowledge 7cf231.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Alchemical Transmutation 7d133c.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Prescient 7e7873.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Rite of Seeking 8b39e9.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Astral Travel 8bb57d.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card The Chthonian Stone 916f1c.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Defiance 946958.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Familiar Spirit 971d52.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Holy Rosary 98aa6a.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Ward of Protection 9bee5a.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Torrent of Power 9f2514.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Alyssa Graham a26795.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Eldritch Inspiration a268ef.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Uncage the Soul a82830.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Drawn to the Flame b36f5e.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Clairvoyance b67371.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Spectral Razor b6bccc.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Sixth Sense b7efb5.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Delve too Deep b83784.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Scroll of Secrets c63ec7.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Ineffable Truth c6caf6.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Ritual Candles d2776c.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Robes of Endless Night d9292f.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Open Gate dfc9b0.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Prophesy e0906c.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Shrivelling e16d74.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Hypnotic Gaze e546c0.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Clarity of Mind e563d5.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Storm of Spirits e792b0.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Arcane Studies eb8234.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Scroll of Prophecies ebdac9.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Ethereal Form ee51d8.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Fearless f21135.yaml' -- !include 'Custom_Model_Bag Mystic e996ff/Card Arcane Research fee183.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: '' -DragSelectable: true -GMNotes: '' -GUID: e996ff -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Mystic e996ff.ttslua' -LuaScriptState: '{"ml":{"00d05a":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30757141113281,"z":90.141227722168},"rot":{"x":0.0208181124180555,"y":269.967468261719,"z":0.0167594701051712}},"0988b2":{"lock":false,"pos":{"x":53.2126121520996,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208084508776665,"y":270,"z":0.0167710892856121}},"0ce7b8":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30942893028259,"z":90.0903701782227},"rot":{"x":0.0208170264959335,"y":269.970916748047,"z":0.0167606249451637}},"0e459d":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29705882072449,"z":69.4486694335938},"rot":{"x":0.0208132285624743,"y":269.984191894531,"z":0.0167653225362301}},"17319c":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042505264282,"z":80.9486770629883},"rot":{"x":0.0208084844052792,"y":270,"z":0.0167713705450296}},"20ff08":{"lock":false,"pos":{"x":53.2127799987793,"y":1.29612362384796,"z":51.0517311096191},"rot":{"x":0.0208189375698566,"y":269.966430664063,"z":0.0167580544948578}},"24621a":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208132378757,"y":269.983551025391,"z":0.0167651809751987}},"247824":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30218553543091,"z":71.7412033081055},"rot":{"x":0.02081816829741,"y":269.966979980469,"z":0.016759080812335}},"24a147":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.0208132229745388,"y":269.983428955078,"z":0.0167652256786823}},"3120e7":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486724853516},"rot":{"x":0.0208130981773138,"y":269.984313964844,"z":0.0167653448879719}},"348395":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30016565322876,"z":64.8410720825195},"rot":{"x":0.0208182297646999,"y":269.966796875,"z":0.0167590174823999}},"396e1c":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042505264282,"z":80.9486846923828},"rot":{"x":0.0208138320595026,"y":269.984497070313,"z":0.0167657043784857}},"4287c0":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244481563568,"z":87.8487014770508},"rot":{"x":0.020812913775444,"y":269.984741210938,"z":0.0167656019330025}},"47bdba":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30083894729614,"z":67.1410827636719},"rot":{"x":0.0208085924386978,"y":270,"z":0.0167709942907095}},"4abb47":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.020813312381506,"y":269.984008789063,"z":0.0167656000703573}},"4f33d5":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29881930351257,"z":60.2411804199219},"rot":{"x":0.020818317309022,"y":269.966705322266,"z":0.0167591571807861}},"4fe0b8":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29846823215485,"z":78.6607055664063},"rot":{"x":0.0208133049309254,"y":269.983245849609,"z":0.0167650822550058}},"562eb1":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29949247837067,"z":62.5411796569824},"rot":{"x":0.0208181831985712,"y":269.966796875,"z":0.0167592111974955}},"5792ab":{"lock":false,"pos":{"x":37.4159660339355,"y":1.29510200023651,"z":67.1606750488281},"rot":{"x":0.0208134762942791,"y":269.982849121094,"z":0.016764847561717}},"5905a9":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29712176322937,"z":74.0607070922852},"rot":{"x":0.0208132956176996,"y":269.983093261719,"z":0.0167651791125536}},"5e3a3b":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208087768405676,"y":269.99951171875,"z":0.016770800575614}},"62db13":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30555164813995,"z":83.2412185668945},"rot":{"x":0.0208181273192167,"y":269.967132568359,"z":0.0167592205107212}},"6446d1":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607116699219},"rot":{"x":0.0208085086196661,"y":269.999969482422,"z":0.0167711619287729}},"64fcdf":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208132695406675,"y":269.983856201172,"z":0.0167653579264879}},"6c3156":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29840540885925,"z":74.0486755371094},"rot":{"x":0.0208085887134075,"y":270,"z":0.0167712103575468}},"715974":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29234755039215,"z":53.3492126464844},"rot":{"x":0.0208133384585381,"y":269.983795166016,"z":0.0167652629315853}},"74b8d4":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30689811706543,"z":87.8412246704102},"rot":{"x":0.0208179857581854,"y":269.96728515625,"z":0.0167593359947205}},"78b142":{"lock":false,"pos":{"x":53.2285919189453,"y":1.29679954051971,"z":53.3411636352539},"rot":{"x":0.0208088327199221,"y":269.999603271484,"z":0.0167707819491625}},"7cf231":{"lock":false,"pos":{"x":40.9601707458496,"y":1.29571235179901,"z":64.8486404418945},"rot":{"x":0.0208130516111851,"y":269.984039306641,"z":0.016765434294939}},"7d133c":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30379128456116,"z":92.4487075805664},"rot":{"x":0.0208129975944757,"y":269.984741210938,"z":0.0167656298726797}},"7d532d":{"lock":false,"pos":{"x":40.9602127075195,"y":1.29840540885925,"z":74.048698425293},"rot":{"x":0.0208125095814466,"y":269.984497070313,"z":0.0167653169482946}},"7e7873":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30808234214783,"z":85.490348815918},"rot":{"x":0.0208084918558598,"y":270.000061035156,"z":0.0167711991816759}},"7fda7e":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638564586639,"z":67.1486663818359},"rot":{"x":0.0208138152956963,"y":269.984161376953,"z":0.0167658906430006}},"8b39e9":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29167747497559,"z":51.059757232666},"rot":{"x":0.0208133067935705,"y":269.983764648438,"z":0.0167651996016502}},"8bb57d":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208181627094746,"y":269.967468261719,"z":0.0167593117803335}},"916f1c":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29577529430389,"z":69.4607086181641},"rot":{"x":0.0208134166896343,"y":269.982971191406,"z":0.0167649649083614}},"946958":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903579711914},"rot":{"x":0.0208172723650932,"y":269.970642089844,"z":0.0167604926973581}},"971d52":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638564586639,"z":67.1486663818359},"rot":{"x":0.0208083689212799,"y":270,"z":0.0167711451649666}},"98aa6a":{"lock":false,"pos":{"x":40.9603118896484,"y":1.29436600208282,"z":60.2487831115723},"rot":{"x":0.0208131037652493,"y":269.983947753906,"z":0.0167653020471334}},"9bee5a":{"lock":false,"pos":{"x":49.5628509521484,"y":1.30691683292389,"z":92.4527969360352},"rot":{"x":0.020818293094635,"y":269.966369628906,"z":0.0167589355260134}},"9f2514":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30606257915497,"z":78.5903549194336},"rot":{"x":0.020817119628191,"y":269.970458984375,"z":0.0167604275047779}},"9f8a0a":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208139251917601,"y":269.984252929688,"z":0.0167657993733883}},"a0b9a7":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30083894729614,"z":67.1410827636719},"rot":{"x":0.020818779245019,"y":269.966888427734,"z":0.0167595278471708}},"a26795":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30311810970306,"z":90.1487121582031},"rot":{"x":0.0208130907267332,"y":269.984710693359,"z":0.0167656168341637}},"a268ef":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30420517921448,"z":78.641227722168},"rot":{"x":0.0208182167261839,"y":269.967163085938,"z":0.0167590919882059}},"a283b4":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208131521940231,"y":269.98388671875,"z":0.0167651418596506}},"a82830":{"lock":false,"pos":{"x":53.2127723693848,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.0208185072988272,"y":269.966552734375,"z":0.0167590230703354}},"b22438":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208092257380486,"y":269.999755859375,"z":0.0167716592550278}},"b36f5e":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30487847328186,"z":80.9412307739258},"rot":{"x":0.0208180621266365,"y":269.967437744141,"z":0.0167595092207193}},"b67371":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.6486740112305},"rot":{"x":0.0208086259663105,"y":270,"z":0.0167711731046438}},"b6bccc":{"lock":false,"pos":{"x":53.2305870056152,"y":1.29814672470093,"z":57.9409599304199},"rot":{"x":0.0208184104412794,"y":269.966644287109,"z":0.016759030520916}},"b7efb5":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29779493808746,"z":76.3607025146484},"rot":{"x":0.0208135228604078,"y":269.983032226563,"z":0.0167650319635868}},"b83784":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.0208182670176029,"y":269.96728515625,"z":0.0167592745274305}},"c619af":{"lock":false,"pos":{"x":58.3838500976563,"y":1.30740904808044,"z":83.1903762817383},"rot":{"x":0.020805025473237,"y":270.010040283203,"z":0.0167746040970087}},"c63ec7":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.8607177734375},"rot":{"x":0.0208133850246668,"y":269.983337402344,"z":0.0167650431394577}},"c6caf6":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208085887134075,"y":270,"z":0.0167713407427073}},"c99da7":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29644846916199,"z":71.7607269287109},"rot":{"x":0.020808283239603,"y":269.999603271484,"z":0.0167708061635494}},"d2776c":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29100203514099,"z":48.7527351379395},"rot":{"x":0.0208131913095713,"y":269.983673095703,"z":0.016765309497714}},"d9292f":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.020808594301343,"y":270,"z":0.0167712960392237}},"dac4f8":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208142288029194,"y":269.983367919922,"z":0.0167654417455196}},"dfc9b0":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151224136353,"z":69.4412002563477},"rot":{"x":0.0208183471113443,"y":269.966918945313,"z":0.0167590416967869}},"e0906c":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208176057785749,"y":269.969482421875,"z":0.0167602151632309}},"e16d74":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29914140701294,"z":80.9607086181641},"rot":{"x":0.0208133049309254,"y":269.983306884766,"z":0.0167652145028114}},"e546c0":{"lock":false,"pos":{"x":53.2285537719727,"y":1.302858710289,"z":74.0412063598633},"rot":{"x":0.0208180192857981,"y":269.967010498047,"z":0.0167591441422701}},"e563d5":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29907858371735,"z":76.3486938476563},"rot":{"x":0.0208132099360228,"y":269.984313964844,"z":0.0167653560638428}},"e792b0":{"lock":false,"pos":{"x":53.2284622192383,"y":1.29747271537781,"z":55.6411819458008},"rot":{"x":0.0208183415234089,"y":269.966613769531,"z":0.0167592745274305}},"eb8234":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208129994571209,"y":269.984649658203,"z":0.0167655516415834}},"ebdac9":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183446407318,"z":90.1607208251953},"rot":{"x":0.0208134669810534,"y":269.983428955078,"z":0.0167652573436499}},"ee51d8":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30353200435638,"z":76.3412017822266},"rot":{"x":0.0208183489739895,"y":269.967102050781,"z":0.0167593434453011}},"f21135":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30875563621521,"z":87.7903823852539},"rot":{"x":0.0208173431456089,"y":269.970733642578,"z":0.0167603511363268}},"fee183":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208129994571209,"y":269.984802246094,"z":0.0167655274271965}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Mystic -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.58 - posY: 1.66 - posZ: 59.68 - rotX: 0.02 - rotY: 270.03 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff.ttslua b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff.ttslua rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7.ttslua diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7.yaml new file mode 100644 index 000000000..3314c9360 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7.yaml @@ -0,0 +1,118 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic ee21f7/Card Shroud of Shadows a565d5.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Eye of Chaos 9a5782.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Armageddon 3feff1.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Blinding Light 00d05a.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Voice of Ra 0988b2.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Enraptured 0ce7b8.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Enchanted Blade 0e459d.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Azure Flame 17319c.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Moonlight Ritual 247824.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Scrying 24a147.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card David Renfield 3120e7.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Premonition 348395.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Arcane Initiate 4287c0.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Parallel Fates 47bdba.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Healing Words 4abb47.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Read the Signs 4f33d5.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Sign Magick 4fe0b8.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Quantum Flux 562eb1.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Wither 5792ab.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card St. Hubert''s Key 5905a9.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Deny Existence 62db13.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Scrying Mirror 6446d1.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Mists of R''lyeh 64fcdf.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Crystal Pendulum 6c3156.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Olive McBride 715974.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Dark Prophecy 74b8d4.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Tides of Fate 78b142.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Forbidden Knowledge 7cf231.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Alchemical Transmutation 7d133c.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Prescient 7e7873.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Rite of Seeking 8b39e9.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Astral Travel 8bb57d.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card The Chthonian Stone 916f1c.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Defiance 946958.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Familiar Spirit 971d52.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Holy Rosary 98aa6a.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Ward of Protection 9bee5a.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Torrent of Power 9f2514.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Alyssa Graham a26795.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Eldritch Inspiration a268ef.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Uncage the Soul a82830.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Ward of Radiance b22438.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Drawn to the Flame b36f5e.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Clairvoyance b67371.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Spectral Razor b6bccc.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Sixth Sense b7efb5.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Delve too Deep b83784.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Promise of Power c619af.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Scroll of Secrets c63ec7.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Ineffable Truth c6caf6.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Sword Cane c99da7.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Ritual Candles d2776c.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Robes of Endless Night d9292f.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Open Gate dfc9b0.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Prophesy e0906c.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Shrivelling e16d74.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Hypnotic Gaze e546c0.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Clarity of Mind e563d5.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Storm of Spirits e792b0.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Arcane Studies eb8234.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Scroll of Prophecies ebdac9.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Ethereal Form ee51d8.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Fearless f21135.yaml' +- !include 'Custom_Model_Bag Mystic ee21f7/Card Arcane Research fee183.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: '' +DragSelectable: true +GMNotes: '' +GUID: ee21f7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Mystic ee21f7.ttslua' +LuaScriptState: '{"ml":{"00d05a":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3075715303421,"z":90.141227722168},"rot":{"x":0.0208179596811533,"y":269.967468261719,"z":0.0167594738304615}},"0988b2":{"lock":false,"pos":{"x":53.2126121520996,"y":1.29544854164124,"z":48.7452774047852},"rot":{"x":0.0208086092025042,"y":270,"z":0.0167712923139334}},"0ce7b8":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30942869186401,"z":90.0903701782227},"rot":{"x":0.0208171363919973,"y":269.970916748047,"z":0.016760565340519}},"0e459d":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208132173866034,"y":269.984252929688,"z":0.0167655125260353}},"17319c":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29975187778473,"z":78.6486892700195},"rot":{"x":0.0208079405128956,"y":270.000030517578,"z":0.0167709123343229}},"20ff08":{"lock":false,"pos":{"x":53.2127799987793,"y":1.29612362384796,"z":51.0517311096191},"rot":{"x":0.0208189375698566,"y":269.966430664063,"z":0.0167580544948578}},"24621a":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208132378757,"y":269.983551025391,"z":0.0167651809751987}},"247824":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30218553543091,"z":71.7412033081055},"rot":{"x":0.0208180192857981,"y":269.966979980469,"z":0.0167590640485287}},"24a147":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607238769531},"rot":{"x":0.0208126250654459,"y":269.983459472656,"z":0.0167648009955883}},"3120e7":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208125710487366,"y":269.984436035156,"z":0.0167642999440432}},"348395":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30016577243805,"z":64.8410720825195},"rot":{"x":0.0208182111382484,"y":269.966796875,"z":0.0167589709162712}},"396e1c":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042505264282,"z":80.9486846923828},"rot":{"x":0.0208138320595026,"y":269.984497070313,"z":0.0167657043784857}},"3feff1":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30042505264282,"z":80.9486999511719},"rot":{"x":0.0208083335310221,"y":269.998931884766,"z":0.01677056401968}},"4287c0":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244481563568,"z":87.8487014770508},"rot":{"x":0.0208129361271858,"y":269.984741210938,"z":0.0167655646800995}},"47bdba":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30083906650543,"z":67.1410827636719},"rot":{"x":0.0208085551857948,"y":270,"z":0.0167712047696114}},"4abb47":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208136606961489,"y":269.983978271484,"z":0.0167650002986193}},"4f33d5":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29881930351257,"z":60.2411804199219},"rot":{"x":0.0208183098584414,"y":269.966705322266,"z":0.0167593378573656}},"4fe0b8":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208141654729843,"y":269.983215332031,"z":0.0167655311524868}},"562eb1":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29949259757996,"z":62.5411796569824},"rot":{"x":0.0208182670176029,"y":269.966796875,"z":0.0167593043297529}},"5792ab":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29308223724365,"z":60.2607727050781},"rot":{"x":0.0208138022571802,"y":269.982818603516,"z":0.0167648121714592}},"5905a9":{"lock":false,"pos":{"x":37.4159698486328,"y":1.29510200023651,"z":67.1606750488281},"rot":{"x":0.0208143871277571,"y":269.983032226563,"z":0.0167654491961002}},"5e3a3b":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208087768405676,"y":269.99951171875,"z":0.016770800575614}},"62db13":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30555176734924,"z":83.2412185668945},"rot":{"x":0.0208182632923126,"y":269.967132568359,"z":0.0167595166712999}},"6446d1":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846823215485,"z":78.6607208251953},"rot":{"x":0.0208079945296049,"y":270.000030517578,"z":0.0167700331658125}},"64fcdf":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.02081348747015,"y":269.983825683594,"z":0.016765009611845}},"6c3156":{"lock":false,"pos":{"x":40.960205078125,"y":1.29773211479187,"z":71.7486877441406},"rot":{"x":0.0208081286400557,"y":270.000061035156,"z":0.0167701635509729}},"715974":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208135601133108,"y":269.983764648438,"z":0.0167647954076529}},"74b8d4":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30689823627472,"z":87.8412246704102},"rot":{"x":0.0208182837814093,"y":269.96728515625,"z":0.0167593713849783}},"78b142":{"lock":false,"pos":{"x":53.2285919189453,"y":1.296799659729,"z":53.3411636352539},"rot":{"x":0.0208084657788277,"y":269.999603271484,"z":0.0167708825320005}},"7cf231":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208133812993765,"y":269.984008789063,"z":0.0167649742215872}},"7d133c":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30379140377045,"z":92.4487075805664},"rot":{"x":0.0208129473030567,"y":269.984741210938,"z":0.0167653653770685}},"7d532d":{"lock":false,"pos":{"x":40.9602127075195,"y":1.29840540885925,"z":74.048698425293},"rot":{"x":0.0208125095814466,"y":269.984497070313,"z":0.0167653169482946}},"7e7873":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30808246135712,"z":85.490348815918},"rot":{"x":0.0208086892962456,"y":270.000061035156,"z":0.0167709160596132}},"7fda7e":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638564586639,"z":67.1486663818359},"rot":{"x":0.0208138152956963,"y":269.984161376953,"z":0.0167658906430006}},"8b39e9":{"lock":false,"pos":{"x":37.4159927368164,"y":1.30250763893127,"z":92.4607315063477},"rot":{"x":0.020812876522541,"y":269.983764648438,"z":0.0167650394141674}},"8bb57d":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208180192857981,"y":269.967468261719,"z":0.0167594850063324}},"916f1c":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29375553131104,"z":62.5607719421387},"rot":{"x":0.0208138227462769,"y":269.983032226563,"z":0.0167646929621696}},"946958":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903579711914},"rot":{"x":0.0208172891288996,"y":269.970642089844,"z":0.0167604684829712}},"971d52":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.0208085477352142,"y":270.000030517578,"z":0.0167708806693554}},"98aa6a":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208134427666664,"y":269.98388671875,"z":0.0167649369686842}},"9a5782":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29571235179901,"z":64.8486709594727},"rot":{"x":0.020808469504118,"y":269.998931884766,"z":0.0167706441134214}},"9bee5a":{"lock":false,"pos":{"x":49.5628509521484,"y":1.30691683292389,"z":92.4527969360352},"rot":{"x":0.0208183918148279,"y":269.966369628906,"z":0.016758793964982}},"9f2514":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30606269836426,"z":78.5903549194336},"rot":{"x":0.0208174008876085,"y":269.970458984375,"z":0.0167603101581335}},"9f8a0a":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208139251917601,"y":269.984252929688,"z":0.0167657993733883}},"a0b9a7":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30083894729614,"z":67.1410827636719},"rot":{"x":0.020818779245019,"y":269.966888427734,"z":0.0167595278471708}},"a26795":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30311810970306,"z":90.1487121582031},"rot":{"x":0.0208130832761526,"y":269.984710693359,"z":0.0167657975107431}},"a268ef":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30420529842377,"z":78.641227722168},"rot":{"x":0.0208179671317339,"y":269.967163085938,"z":0.016759492456913}},"a283b4":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208131521940231,"y":269.98388671875,"z":0.0167651418596506}},"a565d5":{"lock":false,"pos":{"x":37.4161338806152,"y":1.29711866378784,"z":74.0500869750977},"rot":{"x":0.0208095014095306,"y":269.997009277344,"z":0.0167702212929726}},"a82830":{"lock":false,"pos":{"x":53.2127723693848,"y":1.29612374305725,"z":51.0517272949219},"rot":{"x":0.0208183135837317,"y":269.966552734375,"z":0.0167590081691742}},"b22438":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208086390048265,"y":269.999755859375,"z":0.0167711488902569}},"b36f5e":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30487859249115,"z":80.9412307739258},"rot":{"x":0.0208180472254753,"y":269.967437744141,"z":0.0167593732476234}},"b67371":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29907858371735,"z":76.3486862182617},"rot":{"x":0.0208080615848303,"y":270.000061035156,"z":0.0167700573801994}},"b6bccc":{"lock":false,"pos":{"x":53.2305870056152,"y":1.29814672470093,"z":57.9409599304199},"rot":{"x":0.020818205550313,"y":269.966644287109,"z":0.0167589131742716}},"b7efb5":{"lock":false,"pos":{"x":37.4159774780273,"y":1.2957751750946,"z":69.4607086181641},"rot":{"x":0.0208143480122089,"y":269.983032226563,"z":0.0167653001844883}},"b83784":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622506141663,"z":85.5412216186523},"rot":{"x":0.0208180900663137,"y":269.96728515625,"z":0.016759192571044}},"c619af":{"lock":false,"pos":{"x":58.3838500976563,"y":1.30740916728973,"z":83.1903762817383},"rot":{"x":0.0208058375865221,"y":270.010040283203,"z":0.0167748834937811}},"c63ec7":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607269287109},"rot":{"x":0.0208129249513149,"y":269.9833984375,"z":0.0167638566344976}},"c6caf6":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208088103681803,"y":269.999969482422,"z":0.0167706534266472}},"c99da7":{"lock":false,"pos":{"x":37.4159698486328,"y":1.29442870616913,"z":64.8606719970703},"rot":{"x":0.0208094473928213,"y":269.999664306641,"z":0.0167713891714811}},"d2776c":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30183446407318,"z":90.1607437133789},"rot":{"x":0.0208128597587347,"y":269.983642578125,"z":0.0167650356888771}},"d9292f":{"lock":false,"pos":{"x":37.4159851074219,"y":1.3011611700058,"z":87.8607330322266},"rot":{"x":0.0208078641444445,"y":270.000030517578,"z":0.0167708955705166}},"dac4f8":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208142288029194,"y":269.983367919922,"z":0.0167654417455196}},"dfc9b0":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151236057281,"z":69.4412002563477},"rot":{"x":0.0208181440830231,"y":269.966918945313,"z":0.0167590621858835}},"e0906c":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208175722509623,"y":269.969482421875,"z":0.0167600810527802}},"e16d74":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779505729675,"z":76.3607177734375},"rot":{"x":0.0208134818822145,"y":269.983367919922,"z":0.0167651697993279}},"e546c0":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30285882949829,"z":74.0412063598633},"rot":{"x":0.020818192511797,"y":269.967010498047,"z":0.0167592614889145}},"e563d5":{"lock":false,"pos":{"x":40.960205078125,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.0208130776882172,"y":269.984375,"z":0.0167633332312107}},"e792b0":{"lock":false,"pos":{"x":53.2284622192383,"y":1.2974728345871,"z":55.6411819458008},"rot":{"x":0.0208184160292149,"y":269.966613769531,"z":0.0167591720819473}},"eb8234":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208130814135075,"y":269.984649658203,"z":0.0167655032128096}},"ebdac9":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30048799514771,"z":85.5607299804688},"rot":{"x":0.0208128336817026,"y":269.983459472656,"z":0.0167649034410715}},"ee51d8":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30353200435638,"z":76.3412017822266},"rot":{"x":0.0208180863410234,"y":269.967102050781,"z":0.0167591366916895}},"f21135":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30875563621521,"z":87.7903823852539},"rot":{"x":0.0208172351121902,"y":269.970733642578,"z":0.016760315746069}},"fee183":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208129864186049,"y":269.984802246094,"z":0.0167655944824219}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.58 + posY: 1.66 + posZ: 59.68 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Alchemical Transmutation 7d133c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Alchemical Transmutation 7d133c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Alchemical Transmutation 7d133c.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Alchemical Transmutation 7d133c.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Alyssa Graham a26795.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Alyssa Graham a26795.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Alyssa Graham a26795.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Alyssa Graham a26795.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Arcane Initiate 4287c0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Arcane Initiate 4287c0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Arcane Initiate 4287c0.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Arcane Initiate 4287c0.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Arcane Research fee183.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Arcane Research fee183.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Arcane Research fee183.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Arcane Research fee183.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Arcane Studies eb8234.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Arcane Studies eb8234.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Arcane Studies eb8234.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Arcane Studies eb8234.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Armageddon 3feff1.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Armageddon 3feff1.yaml new file mode 100644 index 000000000..1bbdbff99 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Armageddon 3feff1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3feff1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Armageddon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.59 + posY: 1.41 + posZ: 59.68 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Astral Travel 8bb57d.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Astral Travel 8bb57d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Astral Travel 8bb57d.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Astral Travel 8bb57d.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Azure Flame 17319c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Azure Flame 17319c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Azure Flame 17319c.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Azure Flame 17319c.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Blinding Light 00d05a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Blinding Light 00d05a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Blinding Light 00d05a.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Blinding Light 00d05a.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Clairvoyance b67371.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Clairvoyance b67371.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Clairvoyance b67371.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Clairvoyance b67371.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Clarity of Mind e563d5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Clarity of Mind e563d5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Clarity of Mind e563d5.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Clarity of Mind e563d5.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Crystal Pendulum 6c3156.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Crystal Pendulum 6c3156.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Crystal Pendulum 6c3156.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Crystal Pendulum 6c3156.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Dark Prophecy 74b8d4.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Dark Prophecy 74b8d4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Dark Prophecy 74b8d4.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Dark Prophecy 74b8d4.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card David Renfield 3120e7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card David Renfield 3120e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card David Renfield 3120e7.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card David Renfield 3120e7.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Defiance 946958.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Defiance 946958.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Defiance 946958.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Defiance 946958.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Delve too Deep b83784.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Delve too Deep b83784.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Delve too Deep b83784.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Delve too Deep b83784.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Deny Existence 62db13.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Deny Existence 62db13.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Deny Existence 62db13.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Deny Existence 62db13.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Drawn to the Flame b36f5e.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Drawn to the Flame b36f5e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Drawn to the Flame b36f5e.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Drawn to the Flame b36f5e.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Eldritch Inspiration a268ef.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Eldritch Inspiration a268ef.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Eldritch Inspiration a268ef.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Eldritch Inspiration a268ef.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Enchanted Blade 0e459d.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Enchanted Blade 0e459d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Enchanted Blade 0e459d.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Enchanted Blade 0e459d.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Enraptured 0ce7b8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Enraptured 0ce7b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Enraptured 0ce7b8.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Enraptured 0ce7b8.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ethereal Form ee51d8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ethereal Form ee51d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ethereal Form ee51d8.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ethereal Form ee51d8.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Eye of Chaos 9a5782.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Eye of Chaos 9a5782.yaml new file mode 100644 index 000000000..1cf8bac7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Eye of Chaos 9a5782.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9a5782 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eye of Chaos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.59 + posY: 1.41 + posZ: 59.68 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Familiar Spirit 971d52.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Familiar Spirit 971d52.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Familiar Spirit 971d52.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Familiar Spirit 971d52.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Fearless f21135.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Fearless f21135.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Fearless f21135.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Fearless f21135.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Forbidden Knowledge 7cf231.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Forbidden Knowledge 7cf231.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Forbidden Knowledge 7cf231.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Forbidden Knowledge 7cf231.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Healing Words 4abb47.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Healing Words 4abb47.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Healing Words 4abb47.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Healing Words 4abb47.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Holy Rosary 98aa6a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Holy Rosary 98aa6a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Holy Rosary 98aa6a.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Holy Rosary 98aa6a.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Hypnotic Gaze e546c0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Hypnotic Gaze e546c0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Hypnotic Gaze e546c0.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Hypnotic Gaze e546c0.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ineffable Truth c6caf6.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ineffable Truth c6caf6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ineffable Truth c6caf6.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ineffable Truth c6caf6.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Mists of R'lyeh 64fcdf.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Mists of R'lyeh 64fcdf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Mists of R'lyeh 64fcdf.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Mists of R'lyeh 64fcdf.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Moonlight Ritual 247824.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Moonlight Ritual 247824.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Moonlight Ritual 247824.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Moonlight Ritual 247824.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Olive McBride 715974.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Olive McBride 715974.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Olive McBride 715974.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Olive McBride 715974.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Open Gate dfc9b0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Open Gate dfc9b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Open Gate dfc9b0.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Open Gate dfc9b0.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Parallel Fates 47bdba.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Parallel Fates 47bdba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Parallel Fates 47bdba.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Parallel Fates 47bdba.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Premonition 348395.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Premonition 348395.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Premonition 348395.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Premonition 348395.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Prescient 7e7873.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Prescient 7e7873.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Prescient 7e7873.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Prescient 7e7873.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Promise of Power c619af.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Promise of Power c619af.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Promise of Power c619af.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Promise of Power c619af.yaml index dd902eca7..d26d42abc 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Promise of Power c619af.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Promise of Power c619af.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266326 +CardID: 554126 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Prophesy e0906c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Prophesy e0906c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Prophesy e0906c.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Prophesy e0906c.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Quantum Flux 562eb1.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Quantum Flux 562eb1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Quantum Flux 562eb1.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Quantum Flux 562eb1.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Read the Signs 4f33d5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Read the Signs 4f33d5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Read the Signs 4f33d5.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Read the Signs 4f33d5.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Rite of Seeking 8b39e9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Rite of Seeking 8b39e9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Rite of Seeking 8b39e9.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Rite of Seeking 8b39e9.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ritual Candles d2776c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ritual Candles d2776c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ritual Candles d2776c.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ritual Candles d2776c.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Robes of Endless Night d9292f.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Robes of Endless Night d9292f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Robes of Endless Night d9292f.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Robes of Endless Night d9292f.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Scroll of Prophecies ebdac9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Scroll of Prophecies ebdac9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Scroll of Prophecies ebdac9.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Scroll of Prophecies ebdac9.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Scroll of Secrets c63ec7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Scroll of Secrets c63ec7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Scroll of Secrets c63ec7.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Scroll of Secrets c63ec7.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Scrying 24a147.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Scrying 24a147.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Scrying 24a147.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Scrying 24a147.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Scrying Mirror 6446d1.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Scrying Mirror 6446d1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Scrying Mirror 6446d1.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Scrying Mirror 6446d1.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Shrivelling e16d74.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Shrivelling e16d74.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Shrivelling e16d74.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Shrivelling e16d74.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Shroud of Shadows a565d5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Shroud of Shadows a565d5.yaml new file mode 100644 index 000000000..020ffaa6c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Shroud of Shadows a565d5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a565d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Shroud of Shadows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.59 + posY: 1.41 + posZ: 59.68 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Sign Magick 4fe0b8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Sign Magick 4fe0b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Sign Magick 4fe0b8.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Sign Magick 4fe0b8.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Sixth Sense b7efb5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Sixth Sense b7efb5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Sixth Sense b7efb5.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Sixth Sense b7efb5.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Spectral Razor b6bccc.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Spectral Razor b6bccc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Spectral Razor b6bccc.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Spectral Razor b6bccc.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card St. Hubert's Key 5905a9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card St. Hubert's Key 5905a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card St. Hubert's Key 5905a9.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card St. Hubert's Key 5905a9.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Storm of Spirits e792b0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Storm of Spirits e792b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Storm of Spirits e792b0.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Storm of Spirits e792b0.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Sword Cane c99da7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Sword Cane c99da7.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Sword Cane c99da7.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Sword Cane c99da7.yaml index 88c1cea95..284affc35 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Sword Cane c99da7.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Sword Cane c99da7.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266323 +CardID: 554223 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card The Chthonian Stone 916f1c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card The Chthonian Stone 916f1c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card The Chthonian Stone 916f1c.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card The Chthonian Stone 916f1c.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Tides of Fate 78b142.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Tides of Fate 78b142.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Tides of Fate 78b142.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Tides of Fate 78b142.yaml index 6bfe438bf..70468eca2 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Tides of Fate 78b142.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Tides of Fate 78b142.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266324 +CardID: 553924 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Torrent of Power 9f2514.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Torrent of Power 9f2514.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Torrent of Power 9f2514.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Torrent of Power 9f2514.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Uncage the Soul a82830.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Uncage the Soul a82830.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Uncage the Soul a82830.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Uncage the Soul a82830.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Voice of Ra 0988b2.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Voice of Ra 0988b2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Voice of Ra 0988b2.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Voice of Ra 0988b2.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ward of Protection 9bee5a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ward of Protection 9bee5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ward of Protection 9bee5a.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ward of Protection 9bee5a.yaml diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ward of Radiance b22438.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ward of Radiance b22438.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ward of Radiance b22438.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ward of Radiance b22438.yaml index a79706b4b..30163a232 100644 --- a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Ward of Radiance b22438.yaml +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Ward of Radiance b22438.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266325 +CardID: 554025 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Wither 5792ab.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Wither 5792ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic e996ff/Card Wither 5792ab.yaml rename to unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic ee21f7/Card Wither 5792ab.yaml diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e.yaml index c95dddac1..ca0369ec8 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e.yaml @@ -4,6 +4,15 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: +- !include 'Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature + cards 10681c.yaml' +- !include 'Custom_Model_Bag Promo Investigators 5fe24e/CardCustom Gloria Goldberg + 304ca2.yaml' +- !include 'Custom_Model_Bag Promo Investigators 5fe24e/CardCustom Gloria Goldberg + 8d4d81.yaml' +- !include 'Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 6bd479.yaml' +- !include 'Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 97b325.yaml' +- !include 'Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 87a46c.yaml' - !include 'Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 26f88d.yaml' - !include 'Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 298237.yaml' @@ -42,7 +51,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag Promo Investigators 5fe24e.ttslua' -LuaScriptState: '{"ml":{"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}},"3f60eb":{"lock":false,"pos":{"x":-19.2948,"y":1.3714,"z":-65.5815},"rot":{"x":0.0208,"y":269.9986,"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}},"8b0a9e":{"lock":false,"pos":{"x":-16.639,"y":1.361,"z":-64.3414},"rot":{"x":0.0208,"y":269.9907,"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}}}}' +LuaScriptState: '{"ml":{"10681c":{"lock":false,"pos":{"x":-26.3001728057861,"y":1.26878046989441,"z":-76.9456329345703},"rot":{"x":359.979156494141,"y":90.0019836425781,"z":359.983215332031}},"26f88d":{"lock":false,"pos":{"x":-16.6400470733643,"y":1.36149287223816,"z":-62.4609298706055},"rot":{"x":0.020813936367631,"y":270.0166015625,"z":0.0167716238647699}},"298237":{"lock":false,"pos":{"x":-22.6169605255127,"y":1.31328415870667,"z":-61.2413864135742},"rot":{"x":0.0167715828865767,"y":180.000198364258,"z":359.979187011719}},"304ca2":{"lock":false,"pos":{"x":-22.6157627105713,"y":1.30868756771088,"z":-76.946044921875},"rot":{"x":0.0167718324810266,"y":179.999923706055,"z":359.979187011719}},"3f60eb":{"lock":false,"pos":{"x":-19.3000774383545,"y":1.31449115276337,"z":-61.2332534790039},"rot":{"x":0.0208097435534,"y":269.998504638672,"z":0.0167695209383965}},"6bd479":{"lock":false,"pos":{"x":-16.6403007507324,"y":1.35761606693268,"z":-75.7054290771484},"rot":{"x":0.0208021905273199,"y":270.036193847656,"z":0.0167729649692774}},"72caa1":{"lock":false,"pos":{"x":-16.6400871276855,"y":1.3618528842926,"z":-61.2309913635254},"rot":{"x":0.0208195671439171,"y":269.998291015625,"z":0.0167642813175917}},"87a46c":{"lock":false,"pos":{"x":-16.6401386260986,"y":1.35689306259155,"z":-78.175651550293},"rot":{"x":0.0208384096622467,"y":269.978759765625,"z":0.0167642887681723}},"8b0a9e":{"lock":false,"pos":{"x":-16.6400909423828,"y":1.36221301555634,"z":-60.0009918212891},"rot":{"x":0.0208213999867439,"y":269.990661621094,"z":0.0167617201805115}},"8d4d81":{"lock":false,"pos":{"x":-19.2936096191406,"y":1.30989539623261,"z":-76.9415512084961},"rot":{"x":0.0208108406513929,"y":269.999969482422,"z":0.016773110255599}},"97b325":{"lock":false,"pos":{"x":-16.6395988464355,"y":1.357253074646,"z":-76.9456481933594},"rot":{"x":0.0208098776638508,"y":270.04345703125,"z":0.0167948119342327}},"fc27ff":{"lock":false,"pos":{"x":-26.3001327514648,"y":1.27337777614594,"z":-61.2409515380859},"rot":{"x":359.979156494141,"y":90.0019454956055,"z":359.983245849609}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 298237.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 298237.yaml index 4ebecc4a1..bf65e68f5 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 298237.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 298237.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -22.61 + posX: -22.62 posY: 1.31 - posZ: -65.6 + posZ: -61.24 rotX: 0.02 rotY: 180.0 rotZ: 359.98 diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 3f60eb.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 3f60eb.yaml index f29160f70..08de82069 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 3f60eb.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Card Norman Withers 3f60eb.yaml @@ -33,9 +33,9 @@ Snap: false Sticky: true Tooltip: true Transform: - posX: -19.29 + posX: -19.3 posY: 1.31 - posZ: -65.58 + posZ: -61.23 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/CardCustom Gloria Goldberg 304ca2.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/CardCustom Gloria Goldberg 304ca2.yaml new file mode 100644 index 000000000..ddcb3ab1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/CardCustom Gloria Goldberg 304ca2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2728': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715280921029/0A553093B8985289C8982340ADBE52EBB82CEC24/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280920872/218BBC9E56ED0EAF53672AC46E0E961C0EA1DC23/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: The Writer +DragSelectable: true +GMNotes: '' +GUID: 304ca2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Gloria Goldberg +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.62 + posY: 1.31 + posZ: -76.95 + rotX: 0.02 + rotY: 180.0 + rotZ: 359.98 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/CardCustom Gloria Goldberg 8d4d81.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/CardCustom Gloria Goldberg 8d4d81.yaml new file mode 100644 index 000000000..97e330208 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/CardCustom Gloria Goldberg 8d4d81.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715280927665/2B5BEB0B97C302165C773E291FE06863816EC59F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280927433/BAC4CB96D8CB18760D53AF7B8096C09FACDADC97/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8d4d81 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Gloria Goldberg +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.29 + posY: 1.31 + posZ: -76.94 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 6bd479.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 6bd479.yaml new file mode 100644 index 000000000..857b43973 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 6bd479.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6bd479 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.64 + posY: 1.36 + posZ: -75.71 + rotX: 0.02 + rotY: 270.04 + rotZ: 0.02 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 87a46c.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 87a46c.yaml new file mode 100644 index 000000000..53fbb492a --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 87a46c.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 87a46c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.64 + posY: 1.36 + posZ: -78.18 + rotX: 0.02 + rotY: 269.98 + rotZ: 0.02 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 97b325.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 97b325.yaml new file mode 100644 index 000000000..2143329b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model 97b325.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 97b325 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.64 + posY: 1.36 + posZ: -76.95 + rotX: 0.02 + rotY: 270.04 + rotZ: 0.02 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 26f88d.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 26f88d.yaml index e5c5901be..9d06e5d88 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 26f88d.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 26f88d.yaml @@ -33,7 +33,7 @@ Tooltip: false Transform: posX: -16.64 posY: 1.36 - posZ: -66.81 + posZ: -62.46 rotX: 0.02 rotY: 270.02 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 72caa1.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 72caa1.yaml index b5045bd09..c037232af 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 72caa1.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 72caa1.yaml @@ -33,7 +33,7 @@ Tooltip: false Transform: posX: -16.64 posY: 1.36 - posZ: -65.58 + posZ: -61.23 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 8b0a9e.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 8b0a9e.yaml index e9a6c6508..5d3ddd8c5 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 8b0a9e.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model Survivor turn token 8b0a9e.yaml @@ -33,7 +33,7 @@ Tooltip: false Transform: posX: -16.64 posY: 1.36 - posZ: -64.34 + posZ: -60.0 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c.yaml new file mode 100644 index 000000000..1b3e1e4dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag signature cards 10681c/CardCustom Liber Omnium Finium + 242a11.yaml' +- !include 'Custom_Model_Bag signature cards 10681c/CardCustom Ruth Westmacott 782e0a.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 10681c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: 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.27 + posZ: -76.95 + rotX: 359.98 + rotY: 90.0 + rotZ: 359.98 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c/CardCustom Liber Omnium Finium 242a11.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c/CardCustom Liber Omnium Finium 242a11.yaml new file mode 100644 index 000000000..282a9517b --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c/CardCustom Liber Omnium Finium 242a11.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280920105/BBE662BDDC5F2C94A5DE10256B991D1E1DD2C50D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Weakness +DragSelectable: true +GMNotes: '' +GUID: 242a11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Liber Omnium Finium +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.3 + posY: 3.37 + posZ: -76.95 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c/CardCustom Ruth Westmacott 782e0a.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c/CardCustom Ruth Westmacott 782e0a.yaml new file mode 100644 index 000000000..af7502d13 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag signature cards 10681c/CardCustom Ruth Westmacott 782e0a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2731': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280920329/24678C1EA9F75CE15164134ACF04BD5642D9F434/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: Dark Revelations +DragSelectable: true +GMNotes: '' +GUID: 782e0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Ruth Westmacott +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.3 + posY: 3.37 + posZ: -76.95 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag starter deck & cards fc27ff.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag starter deck & cards fc27ff.yaml index 941401ca0..bcdc1ce13 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag starter deck & cards fc27ff.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag starter deck & cards fc27ff.yaml @@ -50,7 +50,7 @@ Tooltip: true Transform: posX: -26.3 posY: 1.27 - posZ: -65.58 + posZ: -61.24 rotX: 359.98 rotY: 90.0 rotZ: 359.98 diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag starter deck & cards fc27ff/Deck 68067c.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag starter deck & cards fc27ff/Deck 68067c.yaml index 63ca371e9..0cf34877f 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag starter deck & cards fc27ff/Deck 68067c.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e/Custom_Model_Bag starter deck & cards fc27ff/Deck 68067c.yaml @@ -1538,12 +1538,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 56.4 - posY: 2.62 - posZ: -69.4 - rotX: 2.62 - rotY: 270.01 - rotZ: 179.99 + posX: -26.3 + posY: 3.54 + posZ: -61.24 + rotX: 0.02 + rotY: 270.0 + rotZ: 180.02 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml index 8ef588da5..d524245b5 100644 --- a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml @@ -4,8 +4,6 @@ ColorDiffuse: g: 0.992168248 r: 0.9999998 ContainedObjects: -- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Tile Dunwich - Legacy Campaign Log 3f6ab6.yaml' - !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_PDF Return To The Dunwich Legacy Insert 125ce8.yaml' - !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag @@ -14,6 +12,8 @@ ContainedObjects: 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_Tile Dunwich + Legacy Campaign Log 3f6ab6.yaml' - !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_PDF The Dunwich Legacy Campaign Guide 61f17f.yaml' - !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 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 index 54d591927..5aa27be92 100644 --- 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 @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() 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 index 54d591927..5aa27be92 100644 --- 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 @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() 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 index 54d591927..5aa27be92 100644 --- 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 @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() 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 index 54d591927..5aa27be92 100644 --- 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 @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() 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 index 54d591927..5aa27be92 100644 --- 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 @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() 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 index 54d591927..5aa27be92 100644 --- 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 @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() 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 index 3c33a42ad..04ea9c912 100644 --- 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 @@ -19,50 +19,50 @@ ColorDiffuse: 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 18c876.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 2a4634.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 2eb425.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 Act Deck 2ee4bd.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 Whateley Ruins + 42e1b7.yaml' - !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 542581.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Agenda Deck 584b1a.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 7234af.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/Custom_Tile 82b2b8.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath + 995fe7.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Scenario aa50e4.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 Whateley Ruins + b1e332.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 Blasted Heath + cda035.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village + cf4a62.yaml' - !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen e58475.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/Card Devil''s Hop Yard + f7dd31.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Model_Bag Set-aside + fb8d6d.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -91,7 +91,7 @@ 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}}}}' +LuaScriptState: '{"ml":{"04861e":{"lock":false,"pos":{"x":-23.6765155792236,"y":1.62805461883545,"z":-0.0299964416772127},"rot":{"x":359.920288085938,"y":269.999969482422,"z":0.0159559492021799}},"05b0dd":{"lock":false,"pos":{"x":-22.1432247161865,"y":1.65307033061981,"z":-0.059359859675169},"rot":{"x":358.928405761719,"y":269.995269775391,"z":0.0156418401747942}},"18c876":{"lock":false,"pos":{"x":-27.5018005371094,"y":1.61840784549713,"z":-4.75240039825439},"rot":{"x":0.0684081763029099,"y":135.000091552734,"z":0.0445856712758541}},"269f5a":{"lock":false,"pos":{"x":-5.36753988265991,"y":1.64750874042511,"z":-10.4444999694824},"rot":{"x":359.920867919922,"y":270.005645751953,"z":0.0162840541452169}},"2a4634":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.61334490776062,"z":-3.82999992370605},"rot":{"x":0.0168478954583406,"y":179.993759155273,"z":0.0799388438463211}},"2de1a2":{"lock":false,"pos":{"x":-28.2805004119873,"y":1.62201690673828,"z":3.83230042457581},"rot":{"x":0.0445890016853809,"y":45.0000762939453,"z":359.931610107422}},"2eb425":{"lock":false,"pos":{"x":-20.4398097991943,"y":1.60766005516052,"z":-7.8120059967041},"rot":{"x":0.0788349658250809,"y":90.0005264282227,"z":359.981842041016}},"2ee2b1":{"lock":false,"pos":{"x":-3.92771577835083,"y":1.77807700634003,"z":5.75720405578613},"rot":{"x":359.919738769531,"y":270.000091552734,"z":180.016815185547}},"2ee4bd":{"lock":false,"pos":{"x":-2.68862414360046,"y":1.61430263519287,"z":-5.04849529266357},"rot":{"x":0.0168353151530027,"y":180.000106811523,"z":0.0802565515041351}},"393c71":{"lock":false,"pos":{"x":-3.78960037231445,"y":1.58243155479431,"z":-14.7634038925171},"rot":{"x":359.919738769531,"y":270.005706787109,"z":0.0168297197669744}},"42e1b7":{"lock":false,"pos":{"x":-22.1513023376465,"y":1.70060133934021,"z":-7.66563081741333},"rot":{"x":1.77836382389069,"y":270.008728027344,"z":0.0171743519604206}},"542581":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.61560487747192,"z":3.8600001335144},"rot":{"x":0.0168478470295668,"y":179.993743896484,"z":0.0799390077590942}},"584b1a":{"lock":false,"pos":{"x":-2.72480702400208,"y":1.62076056003571,"z":0.373301684856415},"rot":{"x":0.0168353710323572,"y":180.000091552734,"z":0.0802561715245247}},"7216fc":{"lock":false,"pos":{"x":-19.8355007171631,"y":1.6102089881897,"z":3.72410035133362},"rot":{"x":0.0684079527854919,"y":135.000381469727,"z":0.0445854514837265}},"7234af":{"lock":false,"pos":{"x":-17.1200008392334,"y":1.60420227050781,"z":-3.82999992370605},"rot":{"x":0.0168478991836309,"y":179.993804931641,"z":0.0799373239278793}},"7310f8":{"lock":false,"pos":{"x":-15.5927438735962,"y":1.6417384147644,"z":-7.71173000335693},"rot":{"x":359.920196533203,"y":269.996948242188,"z":0.0159011874347925}},"82b2b8":{"lock":false,"pos":{"x":-26.9441413879395,"y":1.61896967887878,"z":-0.194312021136284},"rot":{"x":0.0795508772134781,"y":89.9913482666016,"z":359.982940673828}},"995fe7":{"lock":false,"pos":{"x":-17.1198177337646,"y":1.61891067028046,"z":-0.0299981869757175},"rot":{"x":359.920288085938,"y":270.002380371094,"z":0.0158949177712202}},"aa50e4":{"lock":false,"pos":{"x":-3.95581579208374,"y":1.59753394126892,"z":-10.4409036636353},"rot":{"x":359.919799804688,"y":270.003295898438,"z":0.0164827331900597}},"ac4427":{"lock":false,"pos":{"x":-23.6765174865723,"y":1.63028681278229,"z":7.57000207901001},"rot":{"x":359.920288085938,"y":270.000183105469,"z":0.0158865507692099}},"b1e332":{"lock":false,"pos":{"x":-23.6764526367188,"y":1.6258157491684,"z":-7.70016956329346},"rot":{"x":359.919799804688,"y":270.0009765625,"z":0.0170270930975676}},"c50379":{"lock":false,"pos":{"x":-30.2238807678223,"y":1.63719737529755,"z":-0.02986691147089},"rot":{"x":359.920013427734,"y":270.014343261719,"z":0.0168869607150555}},"cda035":{"lock":false,"pos":{"x":-15.5876798629761,"y":1.6439950466156,"z":-0.00659792125225067},"rot":{"x":359.901123046875,"y":270.007568359375,"z":0.0158856529742479}},"cf4a62":{"lock":false,"pos":{"x":-22.1479263305664,"y":1.65537369251251,"z":7.58350229263306},"rot":{"x":359.920166015625,"y":269.999450683594,"z":0.0158876515924931}},"e58475":{"lock":false,"pos":{"x":-28.658842086792,"y":1.71184301376343,"z":-0.0319473780691624},"rot":{"x":1.77692103385925,"y":269.991912841797,"z":0.0169183500111103}},"f22251":{"lock":false,"pos":{"x":-4.07100677490234,"y":1.63658237457275,"z":15.0340023040771},"rot":{"x":359.919738769531,"y":269.999420166016,"z":180.016830444336}},"f7dd31":{"lock":false,"pos":{"x":-17.1199169158936,"y":1.61665666103363,"z":-7.69999885559082},"rot":{"x":359.920288085938,"y":269.999694824219,"z":0.0158975757658482}},"fb8d6d":{"lock":false,"pos":{"x":1.6964008808136,"y":1.55831682682037,"z":14.2788019180298},"rot":{"x":359.955139160156,"y":224.998001098633,"z":0.0686729773879051}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 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 index d7f07041a..b96ed4f0f 100644 --- 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 @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.68 + posY: 1.62 posZ: -0.03 rotX: 359.92 rotY: 270.0 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 index f571cbe6a..a8df24289 100644 --- 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 @@ -33,10 +33,10 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -15.58 - posY: 1.82 + posX: -15.59 + posY: 1.64 posZ: -0.01 - rotX: 355.94 + rotX: 359.69 rotY: 270.01 rotZ: 0.01 scaleX: 1.0 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 index ed8a6c1fb..93e04d581 100644 --- 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 @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.22 - posY: 1.7 + posY: 1.64 posZ: -0.03 rotX: 359.92 - rotY: 270.0 - rotZ: 0.01 + rotY: 270.01 + rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 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 index 337ac22a3..17c233d3e 100644 --- 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 @@ -34,10 +34,10 @@ Sticky: true Tooltip: true Transform: posX: -28.66 - posY: 1.84 + posY: 1.71 posZ: -0.03 - rotX: 358.25 - rotY: 270.0 + rotX: 1.78 + rotY: 269.99 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 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 index 9df6353ba..cc02aab08 100644 --- 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 @@ -34,9 +34,9 @@ Sticky: true Tooltip: true Transform: posX: -15.59 - posY: 1.82 + posY: 1.64 posZ: -7.71 - rotX: 357.12 + rotX: 359.86 rotY: 270.0 rotZ: 0.02 scaleX: 1.0 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 index 0c301644d..8ba929b66 100644 --- 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 @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.67 + posY: 1.62 posZ: -7.7 rotX: 359.92 rotY: 270.0 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 index cea00ac5f..a735bcacb 100644 --- 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 @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.69 + posY: 1.63 posZ: 7.57 rotX: 359.92 rotY: 270.0 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 index 14567a434..b61a9b566 100644 --- 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 @@ -33,10 +33,10 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -22.14 - posY: 1.83 + posX: -22.15 + posY: 1.66 posZ: 7.58 - rotX: 356.26 + rotX: 359.68 rotY: 270.0 rotZ: 0.01 scaleX: 1.0 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 index 23524677b..478d97a12 100644 --- 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 @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -3.96 - posY: 1.66 + posY: 1.6 posZ: -10.44 rotX: 359.92 rotY: 270.0 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 index 481b75274..7f8014485 100644 --- 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 @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -5.37 - posY: 1.71 + posY: 1.65 posZ: -10.44 rotX: 359.92 rotY: 270.01 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 index 0400378fb..09310ebd1 100644 --- 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 @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.69 + posY: 1.63 posZ: -0.03 rotX: 359.92 rotY: 270.0 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 index a6570c130..b9a85f2ed 100644 --- 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 @@ -34,9 +34,9 @@ Sticky: true Tooltip: true Transform: posX: -22.14 - posY: 1.83 + posY: 1.65 posZ: -0.06 - rotX: 359.89 + rotX: 358.93 rotY: 270.0 rotZ: 0.01 scaleX: 1.0 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 index 1726aeab9..31f3f354d 100644 --- 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 @@ -34,9 +34,9 @@ Sticky: true Tooltip: true Transform: posX: -22.15 - posY: 1.83 + posY: 1.7 posZ: -7.67 - rotX: 359.89 + rotX: 1.78 rotY: 270.01 rotZ: 0.02 scaleX: 1.0 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 index ff7b112ad..c402a671c 100644 --- 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 @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.68 + posY: 1.63 posZ: -7.7 rotX: 359.92 rotY: 270.0 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 index 27defa4a9..ed75d4ff1 100644 --- 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 @@ -127,8 +127,8 @@ Transform: posY: 1.62 posZ: -0.19 rotX: 0.08 - rotY: 90.0 - rotZ: 359.99 + rotY: 89.99 + rotZ: 359.98 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 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 index 4cff261ae..1acfdf089 100644 --- 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 @@ -127,7 +127,7 @@ Sticky: true Tooltip: true Transform: posX: -2.69 - posY: 1.66 + posY: 1.61 posZ: -5.05 rotX: 0.02 rotY: 180.0 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 index 9853e38a7..87ee007f3 100644 --- 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 @@ -173,7 +173,7 @@ Sticky: true Tooltip: true Transform: posX: -2.72 - posY: 1.66 + posY: 1.62 posZ: 0.37 rotX: 0.02 rotY: 180.0 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 index 4981b3b0b..585191211 100644 --- 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 @@ -265,7 +265,7 @@ Sticky: true Tooltip: true Transform: posX: -4.07 - posY: 1.67 + posY: 1.64 posZ: 15.03 rotX: 359.92 rotY: 270.0 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 index 841daf017..11b97d91f 100644 --- 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 @@ -1653,7 +1653,7 @@ Sticky: true Tooltip: true Transform: posX: -3.93 - posY: 1.8 + posY: 1.78 posZ: 5.76 rotX: 359.92 rotY: 270.0 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 index 54d591927..5aa27be92 100644 --- 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 @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() 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 index 54d591927..5aa27be92 100644 --- 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 @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.yaml index 8bceb6aa4..5e0a3f0c8 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.yaml @@ -19,9 +19,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Perils of - Yoth e04d52.yaml' -- !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Setup cb3824.yaml' +- !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Tile Depths + of Yoth Helper 20b266.yaml' - !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Token Scenario - HardExpert 2da146.yaml' - !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Journey to @@ -40,8 +39,11 @@ ContainedObjects: Locations 884b67.yaml' - !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Setup cb3824.yaml' - !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Token Scenario - EasyStandard dd61f1.yaml' +- !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Perils of + Yoth e04d52.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -70,7 +72,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.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}},"1e70cd":{"lock":false,"pos":{"x":-12.5485,"y":1.6666,"z":11.4774},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"2da146":{"lock":false,"pos":{"x":-5.54437208175659,"y":1.73338341712952,"z":-10.4705924987793},"rot":{"x":3.51493859291077,"y":269.999267578125,"z":0.00813469011336565}},"34eda1":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"597592":{"lock":false,"pos":{"x":-2.6885998249054,"y":1.59734880924225,"z":-5.04850006103516},"rot":{"x":0.0168474819511175,"y":179.991806030273,"z":0.0802527070045471}},"6c48a2":{"lock":false,"pos":{"x":-7.63322496414185,"y":1.60996842384338,"z":14.3366222381592},"rot":{"x":359.920013427734,"y":269.999053955078,"z":0.0168716534972191}},"7543ad":{"lock":false,"pos":{"x":-2.72469973564148,"y":1.64001655578613,"z":0.373300194740295},"rot":{"x":0.0168468505144119,"y":179.99169921875,"z":0.0802544131875038}},"7aa4e3":{"lock":false,"pos":{"x":-3.84080004692078,"y":1.58253002166748,"z":-14.6727018356323},"rot":{"x":359.919738769531,"y":270.032501220703,"z":0.0167922247201204}},"7d8400":{"lock":false,"pos":{"x":-3.92770028114319,"y":1.80214715003967,"z":5.75720071792603},"rot":{"x":359.919738769531,"y":270.001159667969,"z":180.016815185547}},"7e7eba":{"lock":false,"pos":{"x":-3.10001349449158,"y":1.3775794506073,"z":-17.7676258087158},"rot":{"x":355.0625,"y":359.981994628906,"z":359.920989990234}},"884b67":{"lock":false,"pos":{"x":-3.99384117126465,"y":1.65553104877472,"z":14.3554677963257},"rot":{"x":359.919738769531,"y":270.003051757813,"z":180.016815185547}},"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.69660067558289,"y":1.5583164691925,"z":14.2787017822266},"rot":{"x":359.955139160156,"y":224.998016357422,"z":0.0686730444431305}},"cb3824":{"lock":false,"pos":{"x":-0.3515,"y":1.5925,"z":-10.4216},"rot":{"x":359.9197,"y":269.991,"z":0.0169}},"dd61f1":{"lock":false,"pos":{"x":-3.95789742469788,"y":1.63398051261902,"z":-10.4412097930908},"rot":{"x":359.920379638672,"y":269.996429443359,"z":0.0180320721119642}},"e04d52":{"lock":false,"pos":{"x":-7.6198,"y":1.6107,"z":16.8109},"rot":{"x":359.9198,"y":269.9995,"z":0.0167}},"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}}}}' +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}},"1e70cd":{"lock":false,"pos":{"x":-12.5485,"y":1.6666,"z":11.4774},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"20b266":{"lock":false,"pos":{"x":-11.0657453536987,"y":1.59224236011505,"z":-15.7996501922607},"rot":{"x":359.920104980469,"y":269.98583984375,"z":0.0168625023216009}},"2da146":{"lock":false,"pos":{"x":-5.54437494277954,"y":1.73338377475739,"z":-10.4705944061279},"rot":{"x":3.51480770111084,"y":269.999145507813,"z":0.00793367438018322}},"34eda1":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"597592":{"lock":false,"pos":{"x":-2.68859958648682,"y":1.59734880924225,"z":-5.04850006103516},"rot":{"x":0.0168474409729242,"y":179.991806030273,"z":0.0802526473999023}},"6c48a2":{"lock":false,"pos":{"x":-7.633225440979,"y":1.6099534034729,"z":14.3366231918335},"rot":{"x":359.921508789063,"y":269.998992919922,"z":0.0167509615421295}},"7543ad":{"lock":false,"pos":{"x":-2.7246994972229,"y":1.64001655578613,"z":0.373300492763519},"rot":{"x":0.0168469455093145,"y":179.99169921875,"z":0.0802543237805367}},"7aa4e3":{"lock":false,"pos":{"x":-3.84080028533936,"y":1.58252990245819,"z":-14.6727027893066},"rot":{"x":359.919738769531,"y":270.032501220703,"z":0.0167921781539917}},"7d8400":{"lock":false,"pos":{"x":-3.92770051956177,"y":1.80214715003967,"z":5.75720167160034},"rot":{"x":359.919738769531,"y":270.001159667969,"z":180.016815185547}},"7e7eba":{"lock":false,"pos":{"x":-3.10000967979431,"y":1.3775509595871,"z":-17.7676277160645},"rot":{"x":355.061737060547,"y":359.981903076172,"z":359.922210693359}},"884b67":{"lock":false,"pos":{"x":-3.99384164810181,"y":1.65553104877472,"z":14.35546875},"rot":{"x":359.919738769531,"y":270.003082275391,"z":180.016815185547}},"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.69660151004791,"y":1.55831706523895,"z":14.2787036895752},"rot":{"x":359.955139160156,"y":224.998016357422,"z":0.0686732232570648}},"cb3824":{"lock":false,"pos":{"x":-0.351500064134598,"y":1.59249639511108,"z":-10.4216003417969},"rot":{"x":359.919738769531,"y":269.990966796875,"z":0.0168498158454895}},"dd61f1":{"lock":false,"pos":{"x":-3.95789432525635,"y":1.63398110866547,"z":-10.4412174224854},"rot":{"x":359.92041015625,"y":269.996459960938,"z":0.0180786810815334}},"e04d52":{"lock":false,"pos":{"x":-7.61980104446411,"y":1.61066854000092,"z":16.8109016418457},"rot":{"x":359.920745849609,"y":269.999572753906,"z":0.015436140820384}},"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 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Bag New Chaos Token 7e7eba.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Bag New Chaos Token 7e7eba.yaml index 1c8e0ddf2..7262eb71a 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Bag New Chaos Token 7e7eba.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Bag New Chaos Token 7e7eba.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.249999732 - g: 0.249999732 - r: 0.249999732 + b: 0.2499997 + g: 0.2499997 + r: 0.2499997 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Setup cb3824.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Setup cb3824.yaml index 61deb863e..0f2f1950c 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Setup cb3824.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Card Setup cb3824.yaml @@ -37,7 +37,7 @@ Transform: posY: 1.59 posZ: -10.42 rotX: 359.92 - rotY: 270.0 + rotY: 269.99 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Tile Depths of Yoth Helper 20b266.ttslua b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Tile Depths of Yoth Helper 20b266.ttslua new file mode 100644 index 000000000..54d75898a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Tile Depths of Yoth Helper 20b266.ttslua @@ -0,0 +1,226 @@ +PLAYAREA = { + position = { x=-25, y=4, z=0 }, + rotation = { x=0, y=90, z=0 }, + scale = { x=37, y=5, z=43 } +} + +ASSEMBLY = { + position = { x=68, y=2, z=36 }, + rotation = { x=0, y=270, z=180 } +} + +SET_ASIDE = { + position = { x=-2.52, y=2, z=14.87 }, + rotation = { x=0, y=270, z=180 } +} + +EXPLORATION = { + position = { x=-6.33, y=2, z=14.87 }, + rotation = { x=0, y=270, z=180 } +} + +START = { + position = { x=-30.22, y=2, z=-0.03 }, + rotation = { x=0, y=270, z=180 } +} + +LOCATIONS = { + "City of the Serpents", + "Bridge over N'kai", + "Abandoned Site", + "Caverns of Yoth", + "Hall of Heresy", + "Bright Canyon", + "Forked Path", + "Crumbling Precipice", + "Broken Passage", + "Steps of Yoth" +} + +STEPS = "Steps of Yoth" +PERILS = "Perils of Yoth" + +function onLoad() + self.createButton({ + label="Set Up", + click_function="setup", + function_owner=self, + position={0,0.1,0.4}, + height=120, + width=400, + scale={x=1.75, y=1.75, z=1.75}, + font_size=100 + }) + + playarea = getObjectFromGUID("721ba2") + TOKEN_IMAGES = Global.getTable("tokenplayerone") + math.randomseed(os.time()) +end + +function setup(_obj, _color, _alt_click) + local objs = Physics.cast({ + origin = PLAYAREA.position, + direction = { x=0, y=1, z=0 }, + type = 3, + size = PLAYAREA.scale, + orientation = PLAYAREA.rotation + }) + + -- make index of all cards in play area and remove all clues and doom + local allCards = {} + for i,v in ipairs(objs) do + local obj = v.hit_object + local name = obj.getName() + if name ~= nil then + if obj.tag == "Card" then + allCards[name] = { card = obj, guid = obj.getGUID() } + elseif obj.tag == "Deck" then + local cards = obj.getObjects() + for j,card in ipairs(cards) do + if card.guid ~= nil and card.name ~= nil then + allCards[card.name] = { deck = obj, guid = card.guid } + end + end + elseif obj.tag == "Tile" then + local props = obj.getCustomObject() + if (props.image == TOKEN_IMAGES.clue and props.image_bottom == TOKEN_IMAGES.doom) + or (props.image == TOKEN_IMAGES.doom and props.image_bottom == TOKEN_IMAGES.clue) + then + Wait.time(|| Global.destroyObject(obj), 1) + end + end + + end + end + + -- find location cards + local locCards = {} + local notFound = {} + for i,loc in ipairs(LOCATIONS) do + local card = allCards[loc] + if card == nil then + table.insert(notFound, loc) + else + table.insert(locCards, card) + end + end + + if #notFound > 0 then + printToColor("The following locations were not found: " .. + table.concat(notFound, ", "), _color) + printToColor("Place them in the central play area and try again", _color) + return + end + + -- Perils of Yoth + local peril = allCards[PERILS] + if peril ~= nil then + if peril.card ~= nil then + placeCard(nil, peril.card, ASSEMBLY) + else + placeCard(peril.deck, peril.guid, ASSEMBLY) + if peril.deck.is_face_down and #peril.deck.getObjects() > 0 then + peril.deck.shuffle() + end + end + end + + -- reset clue spawn status and make a deck of all location cards in the + -- assembly area + local spawnedGuids = playarea.getVar("SPAWNED_LOCATION_GUIDS") + for i,loc in ipairs(locCards) do + spawnedGuids[loc.guid] = nil + if loc.card ~= nil then + placeCard(nil, loc.card, ASSEMBLY) + elseif loc.deck ~= nil and #loc.deck.getObjects() > 0 then + placeCard(loc.deck, loc.guid, ASSEMBLY) + else + -- all but one card was taken from deck, so it doesn't exist anymore + Wait.time(|| placeCard(nil, loc.guid, ASSEMBLY), 1) + end + end + playarea.setVar("SPAWNED_LOCATION_GUIDS", spawnedGuids) + Wait.time(setup_2, 2) +end + +function setup_2() + local objs = Physics.cast({ + origin = ASSEMBLY.position, + direction = { x=0, y=1, z=0 }, + type = 3, + size = { x=1, y=1, z=1 }, + orientation = ASSEMBLY.rotation + }) + + local deck = nil + for i,v in ipairs(objs) do + if v.hit_object.tag == "Deck" then + deck = v.hit_object + end + end + + local locMap = {} + for i,card in ipairs(deck.getObjects()) do + locMap[card.name] = card.guid + end + + -- place Steps of Yoth and Perils of Yoth (if necessary) + placeCard(deck, locMap[STEPS], EXPLORATION) + if locMap[PERILS] ~= nil then + placeCard(deck, locMap[PERILS], EXPLORATION) + end + + -- randomly select starting location + deck.shuffle() + placeCard(deck, nil, START, true) + + -- assemble exploration deck + for i=1,4 do + placeCard(deck, nil, EXPLORATION) + end + Wait.time(setup_3, 1) + + -- move remaining cards to set aside area + deck.setPosition(SET_ASIDE.position) + deck.setName("Set Aside Locations") +end + +function setup_3() + local objs = Physics.cast({ + origin = EXPLORATION.position, + direction = { x=0, y=1, z=0 }, + type = 3, + size = { x=1, y=1, z=1 }, + orientation = EXPLORATION.rotation + }) + + local deck = nil + for i,v in ipairs(objs) do + if v.hit_object.tag == "Deck" then + deck = v.hit_object + end + end + + deck.shuffle() + deck.setName("Exploration Deck") +end + +function placeCard(deck, card, location, faceup) + if deck ~= nil then + deck.takeObject({ + guid = card, + position = location.position, + rotation = location.rotation, + smooth = false, + flip = faceup + }) + return + end + + if type(card) == "string" then + card = getObjectFromGUID(card) + end + card.setRotation(location.rotation) + card.setPosition(location.position) + if faceup then card.flip() end +end diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Tile Depths of Yoth Helper 20b266.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Tile Depths of Yoth Helper 20b266.yaml new file mode 100644 index 000000000..3f21153c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e/Custom_Tile Depths of Yoth Helper 20b266.yaml @@ -0,0 +1,49 @@ +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/1695002709821527016/EA1B68B3A3F96D40BCC0B221C9C9128C9A1535A9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1695002709821527016/EA1B68B3A3F96D40BCC0B221C9C9128C9A1535A9/ + WidthScale: 0.0 +Description: 'Assembles exploration deck for Depths of Yoth, places starting location + and removes all clues and doom from the central play area. + + + For Return to the Depths of Yoth, will also find and add Perils of Yoth (from encounter + deck, encounter discard or central play area).' +DragSelectable: true +GMNotes: '' +GUID: 20b266 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Depths of Yoth Helper 20b266.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Depths of Yoth Helper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.07 + posY: 1.59 + posZ: -15.8 + rotX: 359.92 + rotY: 269.99 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8.yaml index 80e403c63..4f1b6f7a0 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8.yaml @@ -4,7 +4,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37.yaml' +- !include 'Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547.yaml' +- !include 'Custom_Model_Bag Rogue 68d7b8/Card Breaking and Entering 31cfbf.yaml' - !include 'Custom_Model_Bag Rogue 68d7b8/Card Eavesdrop 04484f.yaml' - !include 'Custom_Model_Bag Rogue 68d7b8/Card Backstab 099c3e.yaml' - !include 'Custom_Model_Bag Rogue 68d7b8/Card Followed 0cc3e7.yaml' @@ -96,7 +97,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Rogue 68d7b8.ttslua' -LuaScriptState: '{"ml":{"04484f":{"lock":false,"pos":{"x":53.228572845459,"y":1.30420529842377,"z":78.641471862793},"rot":{"x":0.0208084676414728,"y":270.000549316406,"z":0.0167713407427073}},"085581":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208128299564123,"y":269.987182617188,"z":0.016766969114542}},"099c3e":{"lock":false,"pos":{"x":53.2277412414551,"y":1.30824482440948,"z":92.4426803588867},"rot":{"x":0.0208223760128021,"y":269.952514648438,"z":0.0167537219822407}},"0cc3e7":{"lock":false,"pos":{"x":53.2288551330566,"y":1.30219030380249,"z":71.7572174072266},"rot":{"x":0.020808519795537,"y":269.999938964844,"z":0.016771050170064}},"11086d":{"lock":false,"pos":{"x":58.3838310241699,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.0208093822002411,"y":269.999664306641,"z":0.0167711786925793}},"1176e7":{"lock":false,"pos":{"x":53.2288284301758,"y":1.29882395267487,"z":60.2567405700684},"rot":{"x":0.020808482542634,"y":269.999938964844,"z":0.0167711600661278}},"169764":{"lock":false,"pos":{"x":58.385814666748,"y":1.31010103225708,"z":92.3843841552734},"rot":{"x":0.0207338761538267,"y":270.254699707031,"z":0.0168634876608849}},"189f99":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557036399841,"z":87.8527908325195},"rot":{"x":0.0208086259663105,"y":269.999969482422,"z":0.0167709551751614}},"1f61c9":{"lock":false,"pos":{"x":53.2285537719727,"y":1.302858710289,"z":74.0412139892578},"rot":{"x":0.0208095889538527,"y":269.999450683594,"z":0.0167714655399323}},"2323de":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30555176734924,"z":83.241455078125},"rot":{"x":0.020808719098568,"y":269.999633789063,"z":0.0167709346860647}},"285e63":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208124164491892,"y":269.986968994141,"z":0.0167663227766752}},"34408e":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30244481563568,"z":87.8487091064453},"rot":{"x":0.0208119638264179,"y":269.98828125,"z":0.016766918823123}},"3a5caa":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29975187778473,"z":78.6486892700195},"rot":{"x":0.020812138915062,"y":269.988006591797,"z":0.0167667604982853}},"3b03f4":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208121929317713,"y":269.98681640625,"z":0.0167664028704166}},"3e205b":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712176322937,"z":74.0607147216797},"rot":{"x":0.0208124797791243,"y":269.986877441406,"z":0.0167664140462875}},"40ef49":{"lock":false,"pos":{"x":53.2285652160645,"y":1.3075715303421,"z":90.1413116455078},"rot":{"x":0.0208085458725691,"y":270.000030517578,"z":0.0167710520327091}},"43bfac":{"lock":false,"pos":{"x":53.2308654785156,"y":1.29747819900513,"z":55.6565856933594},"rot":{"x":0.0208084955811501,"y":270.000030517578,"z":0.0167711414396763}},"49d857":{"lock":false,"pos":{"x":53.228832244873,"y":1.30151700973511,"z":69.4569931030273},"rot":{"x":0.0208086594939232,"y":269.999664306641,"z":0.0167710185050964}},"5691d3":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30622506141663,"z":85.5414810180664},"rot":{"x":0.0208082813769579,"y":270.00048828125,"z":0.016771212220192}},"614f93":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7453193664551},"rot":{"x":0.0208087582141161,"y":270.000030517578,"z":0.0167714450508356}},"642a2a":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903503417969},"rot":{"x":0.020808506757021,"y":269.999450683594,"z":0.0167709514498711}},"6ab51c":{"lock":false,"pos":{"x":53.2285575866699,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208085980266333,"y":269.999969482422,"z":0.0167712550610304}},"6aced5":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30109834671021,"z":83.2486953735352},"rot":{"x":0.0208119004964828,"y":269.988128662109,"z":0.0167668461799622}},"6f9dbd":{"lock":false,"pos":{"x":53.2287445068359,"y":1.29680418968201,"z":53.3568382263184},"rot":{"x":0.0208085794001818,"y":270.000061035156,"z":0.0167710948735476}},"72d963":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208121724426746,"y":269.987335205078,"z":0.0167662743479013}},"754586":{"lock":false,"pos":{"x":53.2288703918457,"y":1.29613101482391,"z":51.0567207336426},"rot":{"x":0.0208085272461176,"y":270,"z":0.0167711433023214}},"7c98bd":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903533935547},"rot":{"x":0.0208090394735336,"y":269.999603271484,"z":0.0167714972048998}},"7cd9a9":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208086110651493,"y":269.999328613281,"z":0.016770776361227}},"7d5924":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208122711628675,"y":269.987426757813,"z":0.0167666207998991}},"7f446d":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30808234214783,"z":85.4903564453125},"rot":{"x":0.0208086911588907,"y":269.999603271484,"z":0.0167708750814199}},"823ad4":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208086222410202,"y":270,"z":0.0167710743844509}},"87875a":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208085253834724,"y":269.999877929688,"z":0.0167711284011602}},"88c1c4":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30177164077759,"z":85.548698425293},"rot":{"x":0.0208121910691261,"y":269.988159179688,"z":0.0167668648064137}},"89d744":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30042505264282,"z":80.9486923217773},"rot":{"x":0.0208118818700314,"y":269.988098144531,"z":0.0167668331414461}},"8e63bb":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208125878125429,"y":269.98681640625,"z":0.0167664103209972}},"90bf93":{"lock":false,"pos":{"x":40.960205078125,"y":1.29773211479187,"z":71.7486877441406},"rot":{"x":0.0208121333271265,"y":269.987976074219,"z":0.0167667176574469}},"94b923":{"lock":false,"pos":{"x":53.2285766601563,"y":1.30689823627472,"z":87.8414688110352},"rot":{"x":0.0208083726465702,"y":270.000366210938,"z":0.016771275550127}},"9a1801":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.020812202244997,"y":269.987182617188,"z":0.0167665593326092}},"9ae60c":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208120066672564,"y":269.987976074219,"z":0.0167666785418987}},"9b9cda":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208085458725691,"y":269.999542236328,"z":0.0167710836976767}},"9ce3a6":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29571235179901,"z":64.8486557006836},"rot":{"x":0.0208122357726097,"y":269.987854003906,"z":0.0167666543275118}},"9ee302":{"lock":false,"pos":{"x":37.4129676818848,"y":1.30048775672913,"z":85.563720703125},"rot":{"x":0.0208084881305695,"y":269.999420166016,"z":0.0167702790349722}},"a17f94":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30875563621521,"z":87.7903594970703},"rot":{"x":0.0208086632192135,"y":269.999694824219,"z":0.0167710036039352}},"a973aa":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846823215485,"z":78.6607131958008},"rot":{"x":0.0208088494837284,"y":269.999145507813,"z":0.0167706087231636}},"ad0ef0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607162475586},"rot":{"x":0.020808894187212,"y":269.999328613281,"z":0.0167710110545158}},"ad4592":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208122413605452,"y":269.987854003906,"z":0.0167668294161558}},"b14c52":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208121202886105,"y":269.987426757813,"z":0.0167666897177696}},"b177dd":{"lock":false,"pos":{"x":53.2285804748535,"y":1.30487859249115,"z":80.9414825439453},"rot":{"x":0.0208084657788277,"y":270.00048828125,"z":0.0167713090777397}},"b8843c":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903533935547},"rot":{"x":0.0208088401705027,"y":269.999633789063,"z":0.0167710203677416}},"b92350":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29907858371735,"z":76.3486938476563},"rot":{"x":0.0208083223551512,"y":269.999481201172,"z":0.0167707465589046}},"c00469":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30379128456116,"z":92.4487075805664},"rot":{"x":0.0208082348108292,"y":269.999481201172,"z":0.0167708937078714}},"c405b4":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607147216797},"rot":{"x":0.0208123717457056,"y":269.987030029297,"z":0.0167666245251894}},"c56bdd":{"lock":false,"pos":{"x":40.9634170532227,"y":1.2916773557663,"z":51.059757232666},"rot":{"x":0.020812064409256,"y":269.987274169922,"z":0.0167662743479013}},"c937fb":{"lock":false,"pos":{"x":53.2130393981934,"y":1.29545509815216,"z":48.767276763916},"rot":{"x":0.0208086371421814,"y":269.999938964844,"z":0.0167709868401289}},"cad434":{"lock":false,"pos":{"x":53.228572845459,"y":1.30353200435638,"z":76.3414459228516},"rot":{"x":0.0208083894103765,"y":270.000335693359,"z":0.0167712271213531}},"cc11e4":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208087638020515,"y":269.99951171875,"z":0.0167710110545158}},"cc9563":{"lock":false,"pos":{"x":53.2288208007813,"y":1.29815065860748,"z":57.9567337036133},"rot":{"x":0.0208086371421814,"y":269.999786376953,"z":0.016771050170064}},"cfd4bd":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208120811730623,"y":269.987487792969,"z":0.0167666003108025}},"d099f4":{"lock":false,"pos":{"x":49.5628395080566,"y":1.3069167137146,"z":92.4527816772461},"rot":{"x":0.0208086725324392,"y":269.999450683594,"z":0.0167708452790976}},"d14982":{"lock":false,"pos":{"x":53.2288208007813,"y":1.30084371566772,"z":67.1567840576172},"rot":{"x":0.0208085440099239,"y":270.000030517578,"z":0.016771188005805}},"d36630":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.0208120346069336,"y":269.988037109375,"z":0.0167669970542192}},"d3dcf1":{"lock":false,"pos":{"x":53.228832244873,"y":1.30017042160034,"z":64.8566970825195},"rot":{"x":0.0208085905760527,"y":269.999938964844,"z":0.0167709924280643}},"d83fdf":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183434486389,"z":90.1607284545898},"rot":{"x":0.0208123251795769,"y":269.987182617188,"z":0.0167664363980293}},"dfbc13":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208086520433426,"y":269.999542236328,"z":0.0167709905654192}},"e3ce75":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.0208122283220291,"y":269.987518310547,"z":0.0167665779590607}},"e4688b":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30942893028259,"z":90.0903625488281},"rot":{"x":0.0208086669445038,"y":269.999725341797,"z":0.0167709607630968}},"e4b538":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.0208121221512556,"y":269.987609863281,"z":0.0167666468769312}},"f0e28c":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30311810970306,"z":90.1487121582031},"rot":{"x":0.0208120346069336,"y":269.988128662109,"z":0.0167669765651226}},"f32343":{"lock":false,"pos":{"x":37.4159851074219,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208085887134075,"y":269.999267578125,"z":0.0167708452790976}},"f34341":{"lock":false,"pos":{"x":53.2288246154785,"y":1.29949712753296,"z":62.5567092895508},"rot":{"x":0.020808445289731,"y":269.999938964844,"z":0.0167711675167084}},"f6361c":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208120588213205,"y":269.987457275391,"z":0.0167667120695114}},"f8f561":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30606257915497,"z":78.5903701782227},"rot":{"x":0.0208087358623743,"y":269.999481201172,"z":0.0167711190879345}}}}' +LuaScriptState: '{"ml":{"04484f":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30353200435638,"z":76.3412170410156},"rot":{"x":0.0208080671727657,"y":270.000610351563,"z":0.0167699530720711}},"085581":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208128299564123,"y":269.987182617188,"z":0.016766969114542}},"099c3e":{"lock":false,"pos":{"x":53.2277412414551,"y":1.30824482440948,"z":92.4426803588867},"rot":{"x":0.0208224859088659,"y":269.952514648438,"z":0.0167540609836578}},"0cc3e7":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151224136353,"z":69.4412155151367},"rot":{"x":0.0208082422614098,"y":270,"z":0.0167697556316853}},"11086d":{"lock":false,"pos":{"x":58.3838310241699,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.0208093822002411,"y":269.999664306641,"z":0.0167711786925793}},"1176e7":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208088960498571,"y":269.999938964844,"z":0.0167705733329058}},"169764":{"lock":false,"pos":{"x":58.385814666748,"y":1.31010103225708,"z":92.3843841552734},"rot":{"x":0.0207339394837618,"y":270.254699707031,"z":0.0168633162975311}},"189f99":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30489695072174,"z":85.5527801513672},"rot":{"x":0.0208092946559191,"y":269.999877929688,"z":0.0167716704308987}},"1f61c9":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30218553543091,"z":71.7412185668945},"rot":{"x":0.0208085104823112,"y":269.99951171875,"z":0.0167695935815573}},"2323de":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30487847328186,"z":80.9412231445313},"rot":{"x":0.0208085365593433,"y":269.999664306641,"z":0.0167690571397543}},"285e63":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914152622223,"z":80.9607162475586},"rot":{"x":0.0208124574273825,"y":269.986968994141,"z":0.0167662426829338}},"31cfbf":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30757141113281,"z":90.141242980957},"rot":{"x":0.0208083558827639,"y":269.998962402344,"z":0.0167705044150352}},"34408e":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30244481563568,"z":87.8487091064453},"rot":{"x":0.0208118669688702,"y":269.98828125,"z":0.016766831278801}},"3a5caa":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29975187778473,"z":78.6486892700195},"rot":{"x":0.020812064409256,"y":269.988006591797,"z":0.0167667306959629}},"3b03f4":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779505729675,"z":76.360710144043},"rot":{"x":0.020812526345253,"y":269.98681640625,"z":0.0167665854096413}},"3e205b":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712176322937,"z":74.0607147216797},"rot":{"x":0.0208124294877052,"y":269.986877441406,"z":0.0167665630578995}},"40ef49":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30689823627472,"z":87.8412322998047},"rot":{"x":0.0208080522716045,"y":270.000091552734,"z":0.0167699158191681}},"43bfac":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29679954051971,"z":53.3411674499512},"rot":{"x":0.0208090078085661,"y":270,"z":0.0167705249041319}},"49d857":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30083894729614,"z":67.1410980224609},"rot":{"x":0.0208083279430866,"y":269.999755859375,"z":0.0167694594711065}},"5691d3":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30555176734924,"z":83.2412261962891},"rot":{"x":0.0208082906901836,"y":270.000549316406,"z":0.0167699251323938}},"614f93":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7453193664551},"rot":{"x":0.0208087582141161,"y":270.000030517578,"z":0.0167714450508356}},"642a2a":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903503417969},"rot":{"x":0.0208087787032127,"y":269.999450683594,"z":0.01677106320858}},"6ab51c":{"lock":false,"pos":{"x":53.2285575866699,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208085980266333,"y":269.999969482422,"z":0.0167712550610304}},"6aced5":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30109846591949,"z":83.2486953735352},"rot":{"x":0.0208120513707399,"y":269.988128662109,"z":0.0167668182402849}},"6f9dbd":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.020809018984437,"y":270.000030517578,"z":0.0167707558721304}},"72d963":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208121724426746,"y":269.987335205078,"z":0.0167662743479013}},"754586":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208089929074049,"y":270,"z":0.0167705193161964}},"7c98bd":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903533935547},"rot":{"x":0.0208090394735336,"y":269.999603271484,"z":0.0167714972048998}},"7cd9a9":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208088085055351,"y":269.999328613281,"z":0.0167709235101938}},"7d5924":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100215435028,"z":48.7527389526367},"rot":{"x":0.0208122171461582,"y":269.987426757813,"z":0.0167665965855122}},"7f446d":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30808246135712,"z":85.4903564453125},"rot":{"x":0.0208085812628269,"y":269.999603271484,"z":0.0167711153626442}},"823ad4":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208092611283064,"y":269.999908447266,"z":0.0167716592550278}},"87875a":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30355048179626,"z":80.9527740478516},"rot":{"x":0.0208095517009497,"y":269.999816894531,"z":0.0167714655399323}},"88c1c4":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30177164077759,"z":85.548698425293},"rot":{"x":0.020812064409256,"y":269.988159179688,"z":0.0167670790106058}},"89d744":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30042517185211,"z":80.9486923217773},"rot":{"x":0.0208120010793209,"y":269.988098144531,"z":0.0167666468769312}},"8e63bb":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208124089986086,"y":269.98681640625,"z":0.0167664289474487}},"90bf93":{"lock":false,"pos":{"x":40.960205078125,"y":1.29773223400116,"z":71.7486877441406},"rot":{"x":0.0208119712769985,"y":269.987976074219,"z":0.0167668703943491}},"94b923":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30622494220734,"z":85.5412292480469},"rot":{"x":0.0208082143217325,"y":270.000427246094,"z":0.016769902780652}},"9a1801":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.020812401548028,"y":269.987182617188,"z":0.0167664662003517}},"9ae60c":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208120476454496,"y":269.987976074219,"z":0.0167669504880905}},"9b9cda":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208093952387571,"y":269.999450683594,"z":0.0167715083807707}},"9ce3a6":{"lock":false,"pos":{"x":40.9601745605469,"y":1.2957124710083,"z":64.8486557006836},"rot":{"x":0.0208119973540306,"y":269.987854003906,"z":0.0167667288333178}},"9ee302":{"lock":false,"pos":{"x":37.4129676818848,"y":1.30048775672913,"z":85.563720703125},"rot":{"x":0.0208088327199221,"y":269.999420166016,"z":0.0167709290981293}},"a17f94":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30875563621521,"z":87.7903594970703},"rot":{"x":0.020808856934309,"y":269.999694824219,"z":0.0167709868401289}},"a973aa":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846823215485,"z":78.6607131958008},"rot":{"x":0.0208090469241142,"y":269.999145507813,"z":0.0167706627398729}},"ad0ef0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250775814056,"z":92.4607162475586},"rot":{"x":0.0208087451756001,"y":269.999328613281,"z":0.0167710911482573}},"ad4592":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208120178431273,"y":269.987854003906,"z":0.0167669337242842}},"b14c52":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208122152835131,"y":269.987426757813,"z":0.0167665500193834}},"b177dd":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30420517921448,"z":78.6412200927734},"rot":{"x":0.0208082608878613,"y":270.000549316406,"z":0.0167699325829744}},"b8843c":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740916728973,"z":83.1903533935547},"rot":{"x":0.0208085477352142,"y":269.999633789063,"z":0.0167709551751614}},"b92350":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29907870292664,"z":76.3486938476563},"rot":{"x":0.0208085831254721,"y":269.999481201172,"z":0.0167708694934845}},"c00469":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30379140377045,"z":92.4487075805664},"rot":{"x":0.0208085719496012,"y":269.999481201172,"z":0.0167710650712252}},"c405b4":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607147216797},"rot":{"x":0.0208123717457056,"y":269.987030029297,"z":0.0167666245251894}},"c56bdd":{"lock":false,"pos":{"x":40.9634170532227,"y":1.2916773557663,"z":51.059757232666},"rot":{"x":0.020812064409256,"y":269.987274169922,"z":0.0167662743479013}},"c937fb":{"lock":false,"pos":{"x":49.5628395080566,"y":1.3069167137146,"z":92.4527816772461},"rot":{"x":0.0208092425018549,"y":269.999969482422,"z":0.0167718008160591}},"cad434":{"lock":false,"pos":{"x":53.2285575866699,"y":1.302858710289,"z":74.0412216186523},"rot":{"x":0.0208081416785717,"y":270.000396728516,"z":0.0167700238525867}},"cc11e4":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208085626363754,"y":269.99951171875,"z":0.0167709104716778}},"cc9563":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.020809069275856,"y":269.999755859375,"z":0.0167705733329058}},"cfd4bd":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208122469484806,"y":269.987487792969,"z":0.0167663730680943}},"d099f4":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208095628768206,"y":269.999359130859,"z":0.0167713239789009}},"d14982":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30016577243805,"z":64.8410873413086},"rot":{"x":0.0208082739263773,"y":270.000061035156,"z":0.016769727692008}},"d36630":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.020811952650547,"y":269.988037109375,"z":0.0167667381465435}},"d3dcf1":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949247837067,"z":62.5411834716797},"rot":{"x":0.0208089873194695,"y":269.999938964844,"z":0.0167706236243248}},"d83fdf":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183446407318,"z":90.1607284545898},"rot":{"x":0.0208123810589314,"y":269.987182617188,"z":0.0167664624750614}},"dfbc13":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369390010834,"z":57.9485626220703},"rot":{"x":0.0208085887134075,"y":269.999542236328,"z":0.0167709402740002}},"e3ce75":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.0208122283220291,"y":269.987518310547,"z":0.0167665779590607}},"e4688b":{"lock":false,"pos":{"x":58.3838310241699,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.0208087228238583,"y":269.999725341797,"z":0.0167709570378065}},"e4b538":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.0208121463656425,"y":269.987609863281,"z":0.0167664811015129}},"f0e28c":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30311810970306,"z":90.1487121582031},"rot":{"x":0.020811889320612,"y":269.988128662109,"z":0.0167666766792536}},"f32343":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30116128921509,"z":87.860725402832},"rot":{"x":0.0208087600767612,"y":269.999267578125,"z":0.0167706795036793}},"f34341":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208089184015989,"y":269.999938964844,"z":0.0167706161737442}},"f6361c":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302084445953,"z":55.6492195129395},"rot":{"x":0.020812164992094,"y":269.987457275391,"z":0.016766494140029}},"f8f561":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30606269836426,"z":78.5903701782227},"rot":{"x":0.0208087954670191,"y":269.999481201172,"z":0.0167706534266472}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card .25 Automatic c00469.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card .25 Automatic c00469.yaml index 74eecf688..a50b28832 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card .25 Automatic c00469.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card .25 Automatic c00469.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266319 +CardID: 554219 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Breaking and Entering 31cfbf.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Breaking and Entering 31cfbf.yaml new file mode 100644 index 000000000..887fc4edd --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Breaking and Entering 31cfbf.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553106 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 31cfbf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Breaking and Entering +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23 + posY: 1.31 + posZ: 90.14 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Cheap Shot 40ef49.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Cheap Shot 40ef49.yaml index 11d3054bf..8c60f3ce4 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Cheap Shot 40ef49.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Cheap Shot 40ef49.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.31 - posZ: 90.14 + posZ: 87.84 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Contraband 94b923.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Contraband 94b923.yaml index e430421ce..fc8d76611 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Contraband 94b923.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Contraband 94b923.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.31 - posZ: 87.84 + posZ: 85.54 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Coup de Grâce 5691d3.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Coup de Grâce 5691d3.yaml index cd4d05de4..3229e7287 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Coup de Grâce 5691d3.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Coup de Grâce 5691d3.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.31 - posZ: 85.54 + posZ: 83.24 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Daring Maneuver 2323de.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Daring Maneuver 2323de.yaml index 706355a62..27e1fed53 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Daring Maneuver 2323de.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Daring Maneuver 2323de.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 53.23 - posY: 1.31 - posZ: 83.24 + posY: 1.3 + posZ: 80.94 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Dark Ritual b92350.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Dark Ritual b92350.yaml index f4030b7ad..e0bc80ce6 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Dark Ritual b92350.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Dark Ritual b92350.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266320 +CardID: 554120 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Decoy b177dd.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Decoy b177dd.yaml index b4ec54983..2aad02ac1 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Decoy b177dd.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Decoy b177dd.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 80.94 + posZ: 78.64 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Eavesdrop 04484f.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Eavesdrop 04484f.yaml index b59a1dcb5..d5aaaf28c 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Eavesdrop 04484f.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Eavesdrop 04484f.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 78.64 + posZ: 76.34 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Elusive cad434.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Elusive cad434.yaml index 378719456..437e1e573 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Elusive cad434.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Elusive cad434.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 76.34 + posZ: 74.04 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Faustian Bargain 1f61c9.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Faustian Bargain 1f61c9.yaml index 1468d7499..dad85b60d 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Faustian Bargain 1f61c9.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Faustian Bargain 1f61c9.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266322 +CardID: 553922 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 74.04 + posZ: 71.74 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Followed 0cc3e7.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Followed 0cc3e7.yaml index 65c90df44..08bb452ff 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Followed 0cc3e7.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Followed 0cc3e7.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 71.76 + posZ: 69.44 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card I'm outta here! 49d857.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card I'm outta here! 49d857.yaml index 6885b829f..d3d51db9b 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card I'm outta here! 49d857.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card I'm outta here! 49d857.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 69.46 + posZ: 67.14 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Intel Report d14982.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Intel Report d14982.yaml index 37c73a2c8..fa376e2f1 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Intel Report d14982.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Intel Report d14982.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 67.16 + posZ: 64.84 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Let God sort them out... d3dcf1.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Let God sort them out... d3dcf1.yaml index dad60e8a7..73c32a2e9 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Let God sort them out... d3dcf1.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Let God sort them out... d3dcf1.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 64.86 + posZ: 62.54 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Money Talks f34341.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Money Talks f34341.yaml index f8207a45e..a27c8dd2d 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Money Talks f34341.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Money Talks f34341.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 62.56 + posZ: 60.24 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Narrow Escape 1176e7.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Narrow Escape 1176e7.yaml index 4445398fe..989c971d6 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Narrow Escape 1176e7.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Narrow Escape 1176e7.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 60.26 + posZ: 57.94 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Obfuscation 9ee302.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Obfuscation 9ee302.yaml index 376b991b9..0f7f40f00 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Obfuscation 9ee302.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Obfuscation 9ee302.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266321 +CardID: 554021 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Pilfer cc9563.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Pilfer cc9563.yaml index 7dead68be..dd3ab5d9e 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Pilfer cc9563.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Pilfer cc9563.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 57.96 + posZ: 55.64 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sleight of Hand 43bfac.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sleight of Hand 43bfac.yaml index 1cddda66f..de5e736bd 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sleight of Hand 43bfac.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sleight of Hand 43bfac.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 53.23 posY: 1.3 - posZ: 55.66 + posZ: 53.34 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Slip Away 6f9dbd.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Slip Away 6f9dbd.yaml index 5c98363fb..0dc4d4356 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Slip Away 6f9dbd.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Slip Away 6f9dbd.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 53.23 + posX: 53.21 posY: 1.3 - posZ: 53.36 + posZ: 51.05 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Small Favor 754586.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Small Favor 754586.yaml index 2c085c05e..b857f388b 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Small Favor 754586.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Small Favor 754586.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 53.23 + posX: 53.21 posY: 1.3 - posZ: 51.06 + posZ: 48.75 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sneak Attack c937fb.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sneak Attack c937fb.yaml index 8c35dfbb5..7e17839c3 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sneak Attack c937fb.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sneak Attack c937fb.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 53.21 - posY: 1.3 - posZ: 48.77 + posX: 49.56 + posY: 1.31 + posZ: 92.45 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sneak By d099f4.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sneak By d099f4.yaml index 5ce7b65a1..6abd35fc3 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sneak By d099f4.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Sneak By d099f4.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.56 posY: 1.31 - posZ: 92.45 + posZ: 90.15 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Swift Reflexes 9b9cda.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Swift Reflexes 9b9cda.yaml index ed1c983f5..0cd117e6e 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Swift Reflexes 9b9cda.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Swift Reflexes 9b9cda.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.56 posY: 1.31 - posZ: 90.15 + posZ: 87.85 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Think on Your Feet 189f99.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Think on Your Feet 189f99.yaml index 283139959..de5486ba1 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Think on Your Feet 189f99.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card Think on Your Feet 189f99.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 49.56 - posY: 1.31 - posZ: 87.85 + posY: 1.3 + posZ: 85.55 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card You handle this one! 823ad4.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card You handle this one! 823ad4.yaml index 63a9e32bf..b879930a9 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card You handle this one! 823ad4.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card You handle this one! 823ad4.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.56 posY: 1.3 - posZ: 85.55 + posZ: 83.25 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card You owe me one! 87875a.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card You owe me one! 87875a.yaml index 2b8dbead6..4b317235c 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Card You owe me one! 87875a.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Card You owe me one! 87875a.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 49.56 posY: 1.3 - posZ: 83.25 + posZ: 80.95 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37.ttslua b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37.ttslua rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547.ttslua diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547.yaml new file mode 100644 index 000000000..bfb8e7f4b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547.yaml @@ -0,0 +1,118 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue 21d547/Card Breaking and Entering 31cfbf.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Eavesdrop 04484f.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Backstab 099c3e.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Followed 0cc3e7.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Narrow Escape 1176e7.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Cunning 169764.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Think on Your Feet 189f99.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Faustian Bargain 1f61c9.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Daring Maneuver 2323de.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Stealth 285e63.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card .45 Thompson 34408e.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Dario El-Amin 3a5caa.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Switchblade 3b03f4.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Tennessee Sour Mash 3e205b.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Cheap Shot 40ef49.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Sleight of Hand 43bfac.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card I''m outta here! 49d857.yaml' +- !include "Custom_Model_Bag Rogue 21d547/Card Coup de Gr\xE2ce 5691d3.yaml" +- !include 'Custom_Model_Bag Rogue 21d547/Card Opportunist 642a2a.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Colt Vest Pocket 6aced5.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Slip Away 6f9dbd.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Small Favor 754586.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Watch this! 7cd9a9.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Lone Wolf 7d5924.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Hatchet Man 7f446d.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card You handle this one! 823ad4.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card You owe me one! 87875a.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Burglary 88c1c4.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Crystallizer of Dreams 89d744.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Well Connected 8e63bb.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Gregory Gry 90bf93.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Contraband 94b923.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Pickpocketing 9a1801.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Hard Knocks 9ae60c.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Swift Reflexes 9b9cda.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Investments 9ce3a6.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Obfuscation 9ee302.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Double or Nothing a17f94.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Streetwise a973aa.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Lonnie Ritter ad0ef0.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Henry Wan ad4592.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Liquid Courage b14c52.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Decoy b177dd.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Nimble b8843c.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Dark Ritual b92350.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card .25 Automatic c00469.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Sneak Attack c937fb.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Elusive cad434.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Lockpicks cc11e4.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Pilfer cc9563.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Knuckleduster cfd4bd.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Sneak By d099f4.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Intel Report d14982.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Decorated Skull d36630.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Let God sort them out... d3dcf1.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Lucky Cigarette Case d83fdf.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Leather Jacket dfbc13.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Daredevil e4688b.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Joey The Rat Vigil e4b538.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card .41 Derringer f0e28c.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Mauser C96 f32343.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Money Talks f34341.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Leo de Luca f6361c.yaml' +- !include 'Custom_Model_Bag Rogue 21d547/Card Quick Thinking f8f561.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: '' +DragSelectable: true +GMNotes: '' +GUID: 21d547 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Rogue 21d547.ttslua' +LuaScriptState: '{"ml":{"04484f":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30353200435638,"z":76.3412170410156},"rot":{"x":0.0208080671727657,"y":270.000610351563,"z":0.0167699530720711}},"085581":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208128299564123,"y":269.987182617188,"z":0.016766969114542}},"099c3e":{"lock":false,"pos":{"x":53.2277412414551,"y":1.30824482440948,"z":92.4426803588867},"rot":{"x":0.0208224859088659,"y":269.952514648438,"z":0.0167540609836578}},"0cc3e7":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151224136353,"z":69.4412155151367},"rot":{"x":0.0208082422614098,"y":270,"z":0.0167697556316853}},"11086d":{"lock":false,"pos":{"x":58.3838310241699,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.0208093822002411,"y":269.999664306641,"z":0.0167711786925793}},"1176e7":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208088960498571,"y":269.999938964844,"z":0.0167705733329058}},"169764":{"lock":false,"pos":{"x":58.385814666748,"y":1.31010103225708,"z":92.3843841552734},"rot":{"x":0.0207339394837618,"y":270.254699707031,"z":0.0168633162975311}},"189f99":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30489695072174,"z":85.5527801513672},"rot":{"x":0.0208092946559191,"y":269.999877929688,"z":0.0167716704308987}},"1f61c9":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30218553543091,"z":71.7412185668945},"rot":{"x":0.0208085104823112,"y":269.99951171875,"z":0.0167695935815573}},"2323de":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30487847328186,"z":80.9412231445313},"rot":{"x":0.0208085365593433,"y":269.999664306641,"z":0.0167690571397543}},"285e63":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914152622223,"z":80.9607162475586},"rot":{"x":0.0208124574273825,"y":269.986968994141,"z":0.0167662426829338}},"31cfbf":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30757141113281,"z":90.141242980957},"rot":{"x":0.0208083558827639,"y":269.998962402344,"z":0.0167705044150352}},"34408e":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30244481563568,"z":87.8487091064453},"rot":{"x":0.0208118669688702,"y":269.98828125,"z":0.016766831278801}},"3a5caa":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29975187778473,"z":78.6486892700195},"rot":{"x":0.020812064409256,"y":269.988006591797,"z":0.0167667306959629}},"3b03f4":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779505729675,"z":76.360710144043},"rot":{"x":0.020812526345253,"y":269.98681640625,"z":0.0167665854096413}},"3e205b":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712176322937,"z":74.0607147216797},"rot":{"x":0.0208124294877052,"y":269.986877441406,"z":0.0167665630578995}},"40ef49":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30689823627472,"z":87.8412322998047},"rot":{"x":0.0208080522716045,"y":270.000091552734,"z":0.0167699158191681}},"43bfac":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29679954051971,"z":53.3411674499512},"rot":{"x":0.0208090078085661,"y":270,"z":0.0167705249041319}},"49d857":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30083894729614,"z":67.1410980224609},"rot":{"x":0.0208083279430866,"y":269.999755859375,"z":0.0167694594711065}},"5691d3":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30555176734924,"z":83.2412261962891},"rot":{"x":0.0208082906901836,"y":270.000549316406,"z":0.0167699251323938}},"614f93":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7453193664551},"rot":{"x":0.0208087582141161,"y":270.000030517578,"z":0.0167714450508356}},"642a2a":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903503417969},"rot":{"x":0.0208087787032127,"y":269.999450683594,"z":0.01677106320858}},"6ab51c":{"lock":false,"pos":{"x":53.2285575866699,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208085980266333,"y":269.999969482422,"z":0.0167712550610304}},"6aced5":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30109846591949,"z":83.2486953735352},"rot":{"x":0.0208120513707399,"y":269.988128662109,"z":0.0167668182402849}},"6f9dbd":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.020809018984437,"y":270.000030517578,"z":0.0167707558721304}},"72d963":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208121724426746,"y":269.987335205078,"z":0.0167662743479013}},"754586":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208089929074049,"y":270,"z":0.0167705193161964}},"7c98bd":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903533935547},"rot":{"x":0.0208090394735336,"y":269.999603271484,"z":0.0167714972048998}},"7cd9a9":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208088085055351,"y":269.999328613281,"z":0.0167709235101938}},"7d5924":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100215435028,"z":48.7527389526367},"rot":{"x":0.0208122171461582,"y":269.987426757813,"z":0.0167665965855122}},"7f446d":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30808246135712,"z":85.4903564453125},"rot":{"x":0.0208085812628269,"y":269.999603271484,"z":0.0167711153626442}},"823ad4":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208092611283064,"y":269.999908447266,"z":0.0167716592550278}},"87875a":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30355048179626,"z":80.9527740478516},"rot":{"x":0.0208095517009497,"y":269.999816894531,"z":0.0167714655399323}},"88c1c4":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30177164077759,"z":85.548698425293},"rot":{"x":0.020812064409256,"y":269.988159179688,"z":0.0167670790106058}},"89d744":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30042517185211,"z":80.9486923217773},"rot":{"x":0.0208120010793209,"y":269.988098144531,"z":0.0167666468769312}},"8e63bb":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208124089986086,"y":269.98681640625,"z":0.0167664289474487}},"90bf93":{"lock":false,"pos":{"x":40.960205078125,"y":1.29773223400116,"z":71.7486877441406},"rot":{"x":0.0208119712769985,"y":269.987976074219,"z":0.0167668703943491}},"94b923":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30622494220734,"z":85.5412292480469},"rot":{"x":0.0208082143217325,"y":270.000427246094,"z":0.016769902780652}},"9a1801":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.020812401548028,"y":269.987182617188,"z":0.0167664662003517}},"9ae60c":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208120476454496,"y":269.987976074219,"z":0.0167669504880905}},"9b9cda":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208093952387571,"y":269.999450683594,"z":0.0167715083807707}},"9ce3a6":{"lock":false,"pos":{"x":40.9601745605469,"y":1.2957124710083,"z":64.8486557006836},"rot":{"x":0.0208119973540306,"y":269.987854003906,"z":0.0167667288333178}},"9ee302":{"lock":false,"pos":{"x":37.4129676818848,"y":1.30048775672913,"z":85.563720703125},"rot":{"x":0.0208088327199221,"y":269.999420166016,"z":0.0167709290981293}},"a17f94":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30875563621521,"z":87.7903594970703},"rot":{"x":0.020808856934309,"y":269.999694824219,"z":0.0167709868401289}},"a973aa":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846823215485,"z":78.6607131958008},"rot":{"x":0.0208090469241142,"y":269.999145507813,"z":0.0167706627398729}},"ad0ef0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250775814056,"z":92.4607162475586},"rot":{"x":0.0208087451756001,"y":269.999328613281,"z":0.0167710911482573}},"ad4592":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208120178431273,"y":269.987854003906,"z":0.0167669337242842}},"b14c52":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208122152835131,"y":269.987426757813,"z":0.0167665500193834}},"b177dd":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30420517921448,"z":78.6412200927734},"rot":{"x":0.0208082608878613,"y":270.000549316406,"z":0.0167699325829744}},"b8843c":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740916728973,"z":83.1903533935547},"rot":{"x":0.0208085477352142,"y":269.999633789063,"z":0.0167709551751614}},"b92350":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29907870292664,"z":76.3486938476563},"rot":{"x":0.0208085831254721,"y":269.999481201172,"z":0.0167708694934845}},"c00469":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30379140377045,"z":92.4487075805664},"rot":{"x":0.0208085719496012,"y":269.999481201172,"z":0.0167710650712252}},"c405b4":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607147216797},"rot":{"x":0.0208123717457056,"y":269.987030029297,"z":0.0167666245251894}},"c56bdd":{"lock":false,"pos":{"x":40.9634170532227,"y":1.2916773557663,"z":51.059757232666},"rot":{"x":0.020812064409256,"y":269.987274169922,"z":0.0167662743479013}},"c937fb":{"lock":false,"pos":{"x":49.5628395080566,"y":1.3069167137146,"z":92.4527816772461},"rot":{"x":0.0208092425018549,"y":269.999969482422,"z":0.0167718008160591}},"cad434":{"lock":false,"pos":{"x":53.2285575866699,"y":1.302858710289,"z":74.0412216186523},"rot":{"x":0.0208081416785717,"y":270.000396728516,"z":0.0167700238525867}},"cc11e4":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208085626363754,"y":269.99951171875,"z":0.0167709104716778}},"cc9563":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.020809069275856,"y":269.999755859375,"z":0.0167705733329058}},"cfd4bd":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208122469484806,"y":269.987487792969,"z":0.0167663730680943}},"d099f4":{"lock":false,"pos":{"x":49.5628395080566,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208095628768206,"y":269.999359130859,"z":0.0167713239789009}},"d14982":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30016577243805,"z":64.8410873413086},"rot":{"x":0.0208082739263773,"y":270.000061035156,"z":0.016769727692008}},"d36630":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.020811952650547,"y":269.988037109375,"z":0.0167667381465435}},"d3dcf1":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949247837067,"z":62.5411834716797},"rot":{"x":0.0208089873194695,"y":269.999938964844,"z":0.0167706236243248}},"d83fdf":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183446407318,"z":90.1607284545898},"rot":{"x":0.0208123810589314,"y":269.987182617188,"z":0.0167664624750614}},"dfbc13":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369390010834,"z":57.9485626220703},"rot":{"x":0.0208085887134075,"y":269.999542236328,"z":0.0167709402740002}},"e3ce75":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.0208122283220291,"y":269.987518310547,"z":0.0167665779590607}},"e4688b":{"lock":false,"pos":{"x":58.3838310241699,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.0208087228238583,"y":269.999725341797,"z":0.0167709570378065}},"e4b538":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.0208121463656425,"y":269.987609863281,"z":0.0167664811015129}},"f0e28c":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30311810970306,"z":90.1487121582031},"rot":{"x":0.020811889320612,"y":269.988128662109,"z":0.0167666766792536}},"f32343":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30116128921509,"z":87.860725402832},"rot":{"x":0.0208087600767612,"y":269.999267578125,"z":0.0167706795036793}},"f34341":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208089184015989,"y":269.999938964844,"z":0.0167706161737442}},"f6361c":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302084445953,"z":55.6492195129395},"rot":{"x":0.020812164992094,"y":269.987457275391,"z":0.016766494140029}},"f8f561":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30606269836426,"z":78.5903701782227},"rot":{"x":0.0208087954670191,"y":269.999481201172,"z":0.0167706534266472}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.59 + posY: 1.66 + posZ: 65.08 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card .25 Automatic c00469.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card .25 Automatic c00469.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card .25 Automatic c00469.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card .25 Automatic c00469.yaml index 02d9983fa..57d709cb4 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card .25 Automatic c00469.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card .25 Automatic c00469.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266319 +CardID: 554219 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card .41 Derringer f0e28c.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card .41 Derringer f0e28c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card .41 Derringer f0e28c.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card .41 Derringer f0e28c.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card .45 Thompson 34408e.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card .45 Thompson 34408e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card .45 Thompson 34408e.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card .45 Thompson 34408e.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Backstab 099c3e.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Backstab 099c3e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Backstab 099c3e.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Backstab 099c3e.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Breaking and Entering 31cfbf.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Breaking and Entering 31cfbf.yaml new file mode 100644 index 000000000..b4001c3c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Breaking and Entering 31cfbf.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553106 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 31cfbf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Breaking and Entering +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.59 + posY: 1.41 + posZ: 65.08 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Burglary 88c1c4.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Burglary 88c1c4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Burglary 88c1c4.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Burglary 88c1c4.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Cheap Shot 40ef49.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Cheap Shot 40ef49.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Cheap Shot 40ef49.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Cheap Shot 40ef49.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Colt Vest Pocket 6aced5.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Colt Vest Pocket 6aced5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Colt Vest Pocket 6aced5.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Colt Vest Pocket 6aced5.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Contraband 94b923.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Contraband 94b923.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Contraband 94b923.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Contraband 94b923.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Coup de Grâce 5691d3.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Coup de Grâce 5691d3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Coup de Grâce 5691d3.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Coup de Grâce 5691d3.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Crystallizer of Dreams 89d744.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Crystallizer of Dreams 89d744.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Crystallizer of Dreams 89d744.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Crystallizer of Dreams 89d744.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Cunning 169764.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Cunning 169764.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Cunning 169764.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Cunning 169764.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Daredevil e4688b.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Daredevil e4688b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Daredevil e4688b.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Daredevil e4688b.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Daring Maneuver 2323de.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Daring Maneuver 2323de.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Daring Maneuver 2323de.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Daring Maneuver 2323de.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Dario El-Amin 3a5caa.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Dario El-Amin 3a5caa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Dario El-Amin 3a5caa.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Dario El-Amin 3a5caa.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Dark Ritual b92350.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Dark Ritual b92350.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Dark Ritual b92350.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Dark Ritual b92350.yaml index d89840d0c..bac73db01 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Dark Ritual b92350.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Dark Ritual b92350.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266320 +CardID: 554120 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Decorated Skull d36630.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Decorated Skull d36630.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Decorated Skull d36630.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Decorated Skull d36630.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Decoy b177dd.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Decoy b177dd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Decoy b177dd.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Decoy b177dd.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Double or Nothing a17f94.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Double or Nothing a17f94.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Double or Nothing a17f94.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Double or Nothing a17f94.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Eavesdrop 04484f.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Eavesdrop 04484f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Eavesdrop 04484f.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Eavesdrop 04484f.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Elusive cad434.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Elusive cad434.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Elusive cad434.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Elusive cad434.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Faustian Bargain 1f61c9.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Faustian Bargain 1f61c9.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Faustian Bargain 1f61c9.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Faustian Bargain 1f61c9.yaml index c6f092fda..77a65775a 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Faustian Bargain 1f61c9.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Faustian Bargain 1f61c9.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266322 +CardID: 553922 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Followed 0cc3e7.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Followed 0cc3e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Followed 0cc3e7.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Followed 0cc3e7.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Gregory Gry 90bf93.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Gregory Gry 90bf93.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Gregory Gry 90bf93.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Gregory Gry 90bf93.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Hard Knocks 9ae60c.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Hard Knocks 9ae60c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Hard Knocks 9ae60c.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Hard Knocks 9ae60c.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Hatchet Man 7f446d.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Hatchet Man 7f446d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Hatchet Man 7f446d.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Hatchet Man 7f446d.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Henry Wan ad4592.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Henry Wan ad4592.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Henry Wan ad4592.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Henry Wan ad4592.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card I'm outta here! 49d857.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card I'm outta here! 49d857.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card I'm outta here! 49d857.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card I'm outta here! 49d857.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Intel Report d14982.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Intel Report d14982.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Intel Report d14982.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Intel Report d14982.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Investments 9ce3a6.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Investments 9ce3a6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Investments 9ce3a6.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Investments 9ce3a6.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Joey The Rat Vigil e4b538.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Joey The Rat Vigil e4b538.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Joey The Rat Vigil e4b538.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Joey The Rat Vigil e4b538.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Knuckleduster cfd4bd.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Knuckleduster cfd4bd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Knuckleduster cfd4bd.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Knuckleduster cfd4bd.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Leather Jacket dfbc13.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Leather Jacket dfbc13.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Leather Jacket dfbc13.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Leather Jacket dfbc13.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Leo de Luca f6361c.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Leo de Luca f6361c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Leo de Luca f6361c.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Leo de Luca f6361c.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Let God sort them out... d3dcf1.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Let God sort them out... d3dcf1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Let God sort them out... d3dcf1.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Let God sort them out... d3dcf1.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Liquid Courage b14c52.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Liquid Courage b14c52.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Liquid Courage b14c52.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Liquid Courage b14c52.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Lockpicks cc11e4.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Lockpicks cc11e4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Lockpicks cc11e4.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Lockpicks cc11e4.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Lone Wolf 7d5924.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Lone Wolf 7d5924.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Lone Wolf 7d5924.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Lone Wolf 7d5924.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Lonnie Ritter ad0ef0.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Lonnie Ritter ad0ef0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Lonnie Ritter ad0ef0.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Lonnie Ritter ad0ef0.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Lucky Cigarette Case d83fdf.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Lucky Cigarette Case d83fdf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Lucky Cigarette Case d83fdf.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Lucky Cigarette Case d83fdf.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Mauser C96 f32343.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Mauser C96 f32343.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Mauser C96 f32343.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Mauser C96 f32343.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Money Talks f34341.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Money Talks f34341.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Money Talks f34341.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Money Talks f34341.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Narrow Escape 1176e7.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Narrow Escape 1176e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Narrow Escape 1176e7.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Narrow Escape 1176e7.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Nimble b8843c.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Nimble b8843c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Nimble b8843c.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Nimble b8843c.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Obfuscation 9ee302.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Obfuscation 9ee302.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Obfuscation 9ee302.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Obfuscation 9ee302.yaml index eb7ff2f11..847dadc01 100644 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Obfuscation 9ee302.yaml +++ b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Obfuscation 9ee302.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266321 +CardID: 554021 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Opportunist 642a2a.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Opportunist 642a2a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Opportunist 642a2a.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Opportunist 642a2a.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Pickpocketing 9a1801.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Pickpocketing 9a1801.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Pickpocketing 9a1801.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Pickpocketing 9a1801.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Pilfer cc9563.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Pilfer cc9563.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Pilfer cc9563.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Pilfer cc9563.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Quick Thinking f8f561.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Quick Thinking f8f561.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Quick Thinking f8f561.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Quick Thinking f8f561.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Sleight of Hand 43bfac.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Sleight of Hand 43bfac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Sleight of Hand 43bfac.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Sleight of Hand 43bfac.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Slip Away 6f9dbd.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Slip Away 6f9dbd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Slip Away 6f9dbd.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Slip Away 6f9dbd.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Small Favor 754586.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Small Favor 754586.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Small Favor 754586.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Small Favor 754586.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Sneak Attack c937fb.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Sneak Attack c937fb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Sneak Attack c937fb.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Sneak Attack c937fb.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Sneak By d099f4.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Sneak By d099f4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Sneak By d099f4.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Sneak By d099f4.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Stealth 285e63.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Stealth 285e63.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Stealth 285e63.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Stealth 285e63.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Streetwise a973aa.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Streetwise a973aa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Streetwise a973aa.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Streetwise a973aa.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Swift Reflexes 9b9cda.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Swift Reflexes 9b9cda.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Swift Reflexes 9b9cda.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Swift Reflexes 9b9cda.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Switchblade 3b03f4.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Switchblade 3b03f4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Switchblade 3b03f4.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Switchblade 3b03f4.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Tennessee Sour Mash 3e205b.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Tennessee Sour Mash 3e205b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Tennessee Sour Mash 3e205b.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Tennessee Sour Mash 3e205b.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Think on Your Feet 189f99.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Think on Your Feet 189f99.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Think on Your Feet 189f99.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Think on Your Feet 189f99.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Watch this! 7cd9a9.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Watch this! 7cd9a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Watch this! 7cd9a9.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Watch this! 7cd9a9.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Well Connected 8e63bb.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Well Connected 8e63bb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card Well Connected 8e63bb.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card Well Connected 8e63bb.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card You handle this one! 823ad4.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card You handle this one! 823ad4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card You handle this one! 823ad4.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card You handle this one! 823ad4.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card You owe me one! 87875a.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card You owe me one! 87875a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37/Card You owe me one! 87875a.yaml rename to unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 21d547/Card You owe me one! 87875a.yaml diff --git a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37.yaml b/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37.yaml deleted file mode 100644 index eb0d3a823..000000000 --- a/unpacked/Custom_Model_Bag Rogue 68d7b8/Custom_Model_Bag Rogue 2dac37.yaml +++ /dev/null @@ -1,117 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Rogue 2dac37/Card Faustian Bargain 1f61c9.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card .25 Automatic c00469.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Obfuscation 9ee302.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Dark Ritual b92350.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Eavesdrop 04484f.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Backstab 099c3e.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Followed 0cc3e7.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Narrow Escape 1176e7.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Cunning 169764.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Think on Your Feet 189f99.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Daring Maneuver 2323de.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Stealth 285e63.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card .45 Thompson 34408e.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Dario El-Amin 3a5caa.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Switchblade 3b03f4.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Tennessee Sour Mash 3e205b.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Cheap Shot 40ef49.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Sleight of Hand 43bfac.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card I''m outta here! 49d857.yaml' -- !include "Custom_Model_Bag Rogue 2dac37/Card Coup de Gr\xE2ce 5691d3.yaml" -- !include 'Custom_Model_Bag Rogue 2dac37/Card Opportunist 642a2a.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Colt Vest Pocket 6aced5.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Slip Away 6f9dbd.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Small Favor 754586.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Watch this! 7cd9a9.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Lone Wolf 7d5924.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Hatchet Man 7f446d.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card You handle this one! 823ad4.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card You owe me one! 87875a.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Burglary 88c1c4.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Crystallizer of Dreams 89d744.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Well Connected 8e63bb.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Gregory Gry 90bf93.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Contraband 94b923.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Pickpocketing 9a1801.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Hard Knocks 9ae60c.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Swift Reflexes 9b9cda.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Investments 9ce3a6.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Double or Nothing a17f94.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Streetwise a973aa.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Lonnie Ritter ad0ef0.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Henry Wan ad4592.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Liquid Courage b14c52.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Decoy b177dd.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Nimble b8843c.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Sneak Attack c937fb.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Elusive cad434.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Lockpicks cc11e4.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Pilfer cc9563.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Knuckleduster cfd4bd.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Sneak By d099f4.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Intel Report d14982.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Decorated Skull d36630.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Let God sort them out... d3dcf1.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Lucky Cigarette Case d83fdf.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Leather Jacket dfbc13.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Daredevil e4688b.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Joey The Rat Vigil e4b538.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card .41 Derringer f0e28c.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Mauser C96 f32343.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Money Talks f34341.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Leo de Luca f6361c.yaml' -- !include 'Custom_Model_Bag Rogue 2dac37/Card Quick Thinking f8f561.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: '' -DragSelectable: true -GMNotes: '' -GUID: 2dac37 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Rogue 2dac37.ttslua' -LuaScriptState: '{"ml":{"04484f":{"lock":false,"pos":{"x":53.228572845459,"y":1.30420529842377,"z":78.641471862793},"rot":{"x":0.0208084676414728,"y":270.000549316406,"z":0.0167713407427073}},"085581":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208128299564123,"y":269.987182617188,"z":0.016766969114542}},"099c3e":{"lock":false,"pos":{"x":53.2277412414551,"y":1.30824482440948,"z":92.4426803588867},"rot":{"x":0.0208223760128021,"y":269.952514648438,"z":0.0167537219822407}},"0cc3e7":{"lock":false,"pos":{"x":53.2288551330566,"y":1.30219030380249,"z":71.7572174072266},"rot":{"x":0.020808519795537,"y":269.999938964844,"z":0.016771050170064}},"11086d":{"lock":false,"pos":{"x":58.3838310241699,"y":1.3094288110733,"z":90.0903625488281},"rot":{"x":0.0208093822002411,"y":269.999664306641,"z":0.0167711786925793}},"1176e7":{"lock":false,"pos":{"x":53.2288284301758,"y":1.29882395267487,"z":60.2567405700684},"rot":{"x":0.020808482542634,"y":269.999938964844,"z":0.0167711600661278}},"169764":{"lock":false,"pos":{"x":58.385814666748,"y":1.31010103225708,"z":92.3843841552734},"rot":{"x":0.0207338761538267,"y":270.254699707031,"z":0.0168634876608849}},"189f99":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557036399841,"z":87.8527908325195},"rot":{"x":0.0208086259663105,"y":269.999969482422,"z":0.0167709551751614}},"1f61c9":{"lock":false,"pos":{"x":53.2285537719727,"y":1.302858710289,"z":74.0412139892578},"rot":{"x":0.0208095889538527,"y":269.999450683594,"z":0.0167714655399323}},"2323de":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30555176734924,"z":83.241455078125},"rot":{"x":0.020808719098568,"y":269.999633789063,"z":0.0167709346860647}},"285e63":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208124164491892,"y":269.986968994141,"z":0.0167663227766752}},"34408e":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30244481563568,"z":87.8487091064453},"rot":{"x":0.0208119638264179,"y":269.98828125,"z":0.016766918823123}},"3a5caa":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29975187778473,"z":78.6486892700195},"rot":{"x":0.020812138915062,"y":269.988006591797,"z":0.0167667604982853}},"3b03f4":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208121929317713,"y":269.98681640625,"z":0.0167664028704166}},"3e205b":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712176322937,"z":74.0607147216797},"rot":{"x":0.0208124797791243,"y":269.986877441406,"z":0.0167664140462875}},"40ef49":{"lock":false,"pos":{"x":53.2285652160645,"y":1.3075715303421,"z":90.1413116455078},"rot":{"x":0.0208085458725691,"y":270.000030517578,"z":0.0167710520327091}},"43bfac":{"lock":false,"pos":{"x":53.2308654785156,"y":1.29747819900513,"z":55.6565856933594},"rot":{"x":0.0208084955811501,"y":270.000030517578,"z":0.0167711414396763}},"49d857":{"lock":false,"pos":{"x":53.228832244873,"y":1.30151700973511,"z":69.4569931030273},"rot":{"x":0.0208086594939232,"y":269.999664306641,"z":0.0167710185050964}},"5691d3":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30622506141663,"z":85.5414810180664},"rot":{"x":0.0208082813769579,"y":270.00048828125,"z":0.016771212220192}},"614f93":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7453193664551},"rot":{"x":0.0208087582141161,"y":270.000030517578,"z":0.0167714450508356}},"642a2a":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903503417969},"rot":{"x":0.020808506757021,"y":269.999450683594,"z":0.0167709514498711}},"6ab51c":{"lock":false,"pos":{"x":53.2285575866699,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208085980266333,"y":269.999969482422,"z":0.0167712550610304}},"6aced5":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30109834671021,"z":83.2486953735352},"rot":{"x":0.0208119004964828,"y":269.988128662109,"z":0.0167668461799622}},"6f9dbd":{"lock":false,"pos":{"x":53.2287445068359,"y":1.29680418968201,"z":53.3568382263184},"rot":{"x":0.0208085794001818,"y":270.000061035156,"z":0.0167710948735476}},"72d963":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208121724426746,"y":269.987335205078,"z":0.0167662743479013}},"754586":{"lock":false,"pos":{"x":53.2288703918457,"y":1.29613101482391,"z":51.0567207336426},"rot":{"x":0.0208085272461176,"y":270,"z":0.0167711433023214}},"7c98bd":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903533935547},"rot":{"x":0.0208090394735336,"y":269.999603271484,"z":0.0167714972048998}},"7cd9a9":{"lock":false,"pos":{"x":58.3838233947754,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208086110651493,"y":269.999328613281,"z":0.016770776361227}},"7d5924":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208122711628675,"y":269.987426757813,"z":0.0167666207998991}},"7f446d":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30808234214783,"z":85.4903564453125},"rot":{"x":0.0208086911588907,"y":269.999603271484,"z":0.0167708750814199}},"823ad4":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208086222410202,"y":270,"z":0.0167710743844509}},"87875a":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208085253834724,"y":269.999877929688,"z":0.0167711284011602}},"88c1c4":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30177164077759,"z":85.548698425293},"rot":{"x":0.0208121910691261,"y":269.988159179688,"z":0.0167668648064137}},"89d744":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30042505264282,"z":80.9486923217773},"rot":{"x":0.0208118818700314,"y":269.988098144531,"z":0.0167668331414461}},"8e63bb":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208125878125429,"y":269.98681640625,"z":0.0167664103209972}},"90bf93":{"lock":false,"pos":{"x":40.960205078125,"y":1.29773211479187,"z":71.7486877441406},"rot":{"x":0.0208121333271265,"y":269.987976074219,"z":0.0167667176574469}},"94b923":{"lock":false,"pos":{"x":53.2285766601563,"y":1.30689823627472,"z":87.8414688110352},"rot":{"x":0.0208083726465702,"y":270.000366210938,"z":0.016771275550127}},"9a1801":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.020812202244997,"y":269.987182617188,"z":0.0167665593326092}},"9ae60c":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208120066672564,"y":269.987976074219,"z":0.0167666785418987}},"9b9cda":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208085458725691,"y":269.999542236328,"z":0.0167710836976767}},"9ce3a6":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29571235179901,"z":64.8486557006836},"rot":{"x":0.0208122357726097,"y":269.987854003906,"z":0.0167666543275118}},"9ee302":{"lock":false,"pos":{"x":37.4129676818848,"y":1.30048775672913,"z":85.563720703125},"rot":{"x":0.0208084881305695,"y":269.999420166016,"z":0.0167702790349722}},"a17f94":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30875563621521,"z":87.7903594970703},"rot":{"x":0.0208086632192135,"y":269.999694824219,"z":0.0167710036039352}},"a973aa":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29846823215485,"z":78.6607131958008},"rot":{"x":0.0208088494837284,"y":269.999145507813,"z":0.0167706087231636}},"ad0ef0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607162475586},"rot":{"x":0.020808894187212,"y":269.999328613281,"z":0.0167710110545158}},"ad4592":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208122413605452,"y":269.987854003906,"z":0.0167668294161558}},"b14c52":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208121202886105,"y":269.987426757813,"z":0.0167666897177696}},"b177dd":{"lock":false,"pos":{"x":53.2285804748535,"y":1.30487859249115,"z":80.9414825439453},"rot":{"x":0.0208084657788277,"y":270.00048828125,"z":0.0167713090777397}},"b8843c":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903533935547},"rot":{"x":0.0208088401705027,"y":269.999633789063,"z":0.0167710203677416}},"b92350":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29907858371735,"z":76.3486938476563},"rot":{"x":0.0208083223551512,"y":269.999481201172,"z":0.0167707465589046}},"c00469":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30379128456116,"z":92.4487075805664},"rot":{"x":0.0208082348108292,"y":269.999481201172,"z":0.0167708937078714}},"c405b4":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607147216797},"rot":{"x":0.0208123717457056,"y":269.987030029297,"z":0.0167666245251894}},"c56bdd":{"lock":false,"pos":{"x":40.9634170532227,"y":1.2916773557663,"z":51.059757232666},"rot":{"x":0.020812064409256,"y":269.987274169922,"z":0.0167662743479013}},"c937fb":{"lock":false,"pos":{"x":53.2130393981934,"y":1.29545509815216,"z":48.767276763916},"rot":{"x":0.0208086371421814,"y":269.999938964844,"z":0.0167709868401289}},"cad434":{"lock":false,"pos":{"x":53.228572845459,"y":1.30353200435638,"z":76.3414459228516},"rot":{"x":0.0208083894103765,"y":270.000335693359,"z":0.0167712271213531}},"cc11e4":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208087638020515,"y":269.99951171875,"z":0.0167710110545158}},"cc9563":{"lock":false,"pos":{"x":53.2288208007813,"y":1.29815065860748,"z":57.9567337036133},"rot":{"x":0.0208086371421814,"y":269.999786376953,"z":0.016771050170064}},"cfd4bd":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208120811730623,"y":269.987487792969,"z":0.0167666003108025}},"d099f4":{"lock":false,"pos":{"x":49.5628395080566,"y":1.3069167137146,"z":92.4527816772461},"rot":{"x":0.0208086725324392,"y":269.999450683594,"z":0.0167708452790976}},"d14982":{"lock":false,"pos":{"x":53.2288208007813,"y":1.30084371566772,"z":67.1567840576172},"rot":{"x":0.0208085440099239,"y":270.000030517578,"z":0.016771188005805}},"d36630":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.0208120346069336,"y":269.988037109375,"z":0.0167669970542192}},"d3dcf1":{"lock":false,"pos":{"x":53.228832244873,"y":1.30017042160034,"z":64.8566970825195},"rot":{"x":0.0208085905760527,"y":269.999938964844,"z":0.0167709924280643}},"d83fdf":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183434486389,"z":90.1607284545898},"rot":{"x":0.0208123251795769,"y":269.987182617188,"z":0.0167664363980293}},"dfbc13":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208086520433426,"y":269.999542236328,"z":0.0167709905654192}},"e3ce75":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.0208122283220291,"y":269.987518310547,"z":0.0167665779590607}},"e4688b":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30942893028259,"z":90.0903625488281},"rot":{"x":0.0208086669445038,"y":269.999725341797,"z":0.0167709607630968}},"e4b538":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.0208121221512556,"y":269.987609863281,"z":0.0167666468769312}},"f0e28c":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30311810970306,"z":90.1487121582031},"rot":{"x":0.0208120346069336,"y":269.988128662109,"z":0.0167669765651226}},"f32343":{"lock":false,"pos":{"x":37.4159851074219,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208085887134075,"y":269.999267578125,"z":0.0167708452790976}},"f34341":{"lock":false,"pos":{"x":53.2288246154785,"y":1.29949712753296,"z":62.5567092895508},"rot":{"x":0.020808445289731,"y":269.999938964844,"z":0.0167711675167084}},"f6361c":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208120588213205,"y":269.987457275391,"z":0.0167667120695114}},"f8f561":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30606257915497,"z":78.5903701782227},"rot":{"x":0.0208087358623743,"y":269.999481201172,"z":0.0167711190879345}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Rogue -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.59 - posY: 1.66 - posZ: 65.08 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d.yaml index 4d582170f..b69637410 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d.yaml @@ -4,25 +4,17 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Sharpshooter (3) 7f27d6.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Beretta M1918 (4) 91da6b.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Chuck Fergus (5) 0e72b6.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Liquid Courage (1) 5065a6.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Mauser C96 (2) fc20b9.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Lucky Cigarette Case (3) 0feb74.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Daring Maneuver (2) fc82a5.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Slip Away (2) 4a45c6.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Backstab (3) 7baf75.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Pilfer (3) e503ce.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Manual Dexterity (2) 982716.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Copycat (3) de40c8.yaml' -- !include 'Custom_Model_Bag Rogue deaa6d/Card Cheap Shot (2) 0b963c.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card False Covenant (2) 3442f5.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Skeptic (1) 37882c.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Another Day, Another Dollar (3) 006d44.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Ace in the Hole (3) 074858.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Cheap Shot (2) 0b963c.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Borrowed Time (3) 0db666.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Double, Double (4) 0e0530.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Chuck Fergus (5) 0e72b6.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Suggestion (1) 0ec9bf.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Lucky Cigarette Case (3) 0feb74.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Garrote Wire (2) 117b7c.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Hard Knocks (2) 15643b.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Treasure Hunter (1) 18927e.yaml' @@ -40,7 +32,9 @@ ContainedObjects: - !include 'Custom_Model_Bag Rogue deaa6d/Card Sure Gamble (3) 308be1.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Cheat Death (5) 3add54.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Think on Your Feet (2) 3e0653.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Slip Away (2) 4a45c6.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Hot Streak (4) 4eb231.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Liquid Courage (1) 5065a6.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Sneak Attack (2) 5f19e0.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Moxie (1) 5fe780.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Contraband (2) 620b6e.yaml' @@ -48,9 +42,13 @@ ContainedObjects: - !include 'Custom_Model_Bag Rogue deaa6d/Card Opportunist (2) 63f145.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Adaptable (1) 731d2a.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Joey The Rat Vigil (3) 7b918b.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Backstab (3) 7baf75.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card All In (5) 7d3a27.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Sharpshooter (3) 7f27d6.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Lola Santiago (3) 8bec05.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Beretta M1918 (4) 91da6b.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Decorated Skull (3) 981f41.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Manual Dexterity (2) 982716.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Lucky Dice (2) 9dd911.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Lupara (3) a6af13.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Daredevil (2) b3cad4.yaml' @@ -63,7 +61,9 @@ ContainedObjects: - !include 'Custom_Model_Bag Rogue deaa6d/Card .45 Thompson (3) d4dbc7.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Momentum (1) d753d7.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Streetwise (3) d7dbac.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Copycat (3) de40c8.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Sawed-Off Shotgun (5) e1c0f8.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Pilfer (3) e503ce.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card Suggestion (4) e7f37b.yaml' - !include "Custom_Model_Bag Rogue deaa6d/Card The Moon \u2022 XVIII (1) e80bd8.yaml" - !include 'Custom_Model_Bag Rogue deaa6d/Card Pay Day (1) eaa415.yaml' @@ -72,6 +72,8 @@ ContainedObjects: - !include 'Custom_Model_Bag Rogue deaa6d/Card Hot Streak (2) f2508d.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card .41 Derringer (2) f57af7.yaml' - !include 'Custom_Model_Bag Rogue deaa6d/Card The Skeleton Key (2) f8dc01.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Mauser C96 (2) fc20b9.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Daring Maneuver (2) fc82a5.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -100,7 +102,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Rogue deaa6d.ttslua' -LuaScriptState: '{"ml":{"006d44":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.020808782428503,"y":269.999420166016,"z":0.0167707782238722}},"074858":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30159246921539,"z":-70.4202041625977},"rot":{"x":0.0208088420331478,"y":269.998901367188,"z":0.0167706236243248}},"098da7":{"lock":false,"pos":{"x":58.0935859680176,"y":1.30816042423248,"z":-54.3712768554688},"rot":{"x":0.0208071302622557,"y":270.004486083984,"z":0.0167728867381811}},"0b963c":{"lock":false,"pos":{"x":52.944221496582,"y":1.30697810649872,"z":-52.0198783874512},"rot":{"x":0.0208122860640287,"y":269.987548828125,"z":0.0167665909975767}},"0db666":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208088923245668,"y":269.999420166016,"z":0.0167708974331617}},"0e0530":{"lock":false,"pos":{"x":36.6082649230957,"y":1.28960514068604,"z":-91.1042861938477},"rot":{"x":0.0208171755075455,"y":269.970947265625,"z":0.0167606361210346}},"0e72b6":{"lock":false,"pos":{"x":32.9852981567383,"y":1.29973316192627,"z":-52.0090789794922},"rot":{"x":0.0208209585398436,"y":269.958374023438,"z":0.0167556870728731}},"0ec9bf":{"lock":false,"pos":{"x":40.2900466918945,"y":1.2976701259613,"z":-68.119873046875},"rot":{"x":0.0208087041974068,"y":269.999542236328,"z":0.0167711731046438}},"0feb74":{"lock":false,"pos":{"x":36.6243515014648,"y":1.29499590396881,"z":-72.7079315185547},"rot":{"x":0.0208174511790276,"y":269.970123291016,"z":0.0167609751224518}},"117b7c":{"lock":false,"pos":{"x":40.2920799255371,"y":1.29363143444061,"z":-81.9201202392578},"rot":{"x":0.0208017453551292,"y":270.023010253906,"z":0.016779525205493}},"15643b":{"lock":false,"pos":{"x":40.2899551391602,"y":1.29295742511749,"z":-84.2199020385742},"rot":{"x":0.0208017211407423,"y":270.023193359375,"z":0.0167794525623322}},"18927e":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632365703583,"z":-72.719970703125},"rot":{"x":0.0208085179328918,"y":269.999572753906,"z":0.0167710836976767}},"1bd139":{"lock":false,"pos":{"x":40.2900848388672,"y":1.2922842502594,"z":-86.5199203491211},"rot":{"x":0.0208019483834505,"y":270.023040771484,"z":0.0167794227600098}},"1dbc95":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208088401705027,"y":269.999450683594,"z":0.0167709942907095}},"2423e7":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170953273773,"z":-54.3199996948242},"rot":{"x":0.0208087153732777,"y":269.999481201172,"z":0.0167709309607744}},"26a3bf":{"lock":false,"pos":{"x":36.6243286132813,"y":1.29297602176666,"z":-79.6083068847656},"rot":{"x":0.0208086967468262,"y":269.999176025391,"z":0.0167708024382591}},"27446e":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036306381226,"z":-58.9200057983398},"rot":{"x":0.0208087582141161,"y":269.999481201172,"z":0.0167711153626442}},"2aeb8a":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497718811035,"z":-77.3199081420898},"rot":{"x":0.0208015702664852,"y":270.023284912109,"z":0.0167796760797501}},"2cfa4f":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202133178711},"rot":{"x":0.0208085644990206,"y":270.000274658203,"z":0.0167712420225143}},"2f4db2":{"lock":false,"pos":{"x":36.6021270751953,"y":1.30172204971313,"z":-49.7018852233887},"rot":{"x":0.0208026841282845,"y":270.019836425781,"z":0.0167783033102751}},"2fba3b":{"lock":false,"pos":{"x":36.6246070861816,"y":1.3010573387146,"z":-52.0004806518555},"rot":{"x":0.0208082646131516,"y":270.000640869141,"z":0.0167714562267065}},"2fe723":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208086632192135,"y":269.999450683594,"z":0.0167708117514849}},"30062e":{"lock":false,"pos":{"x":58.0997047424316,"y":1.30950915813446,"z":-49.77099609375},"rot":{"x":0.0208018328994513,"y":270.022705078125,"z":0.0167794208973646}},"308be1":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957270622253,"z":-77.3202514648438},"rot":{"x":0.0208087805658579,"y":269.998748779297,"z":0.0167708024382591}},"3add54":{"lock":false,"pos":{"x":52.9462394714355,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208087414503098,"y":269.999328613281,"z":0.0167708676308393}},"3bd955":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208088047802448,"y":269.998901367188,"z":0.0167707744985819}},"3e0653":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202163696289},"rot":{"x":0.0208085086196661,"y":270.000396728516,"z":0.0167712885886431}},"4a45c6":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30428564548492,"z":-61.2198486328125},"rot":{"x":0.0208133533596992,"y":269.98388671875,"z":0.0167653784155846}},"4b4df3":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29973292350769,"z":-52.0095596313477},"rot":{"x":0.0208076201379299,"y":270.004333496094,"z":0.016772111877799}},"4eb231":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208088215440512,"y":269.999267578125,"z":0.0167707446962595}},"5065a6":{"lock":false,"pos":{"x":40.2900619506836,"y":1.29969000816345,"z":-61.2195243835449},"rot":{"x":0.0208149533718824,"y":269.978210449219,"z":0.0167630817741156}},"587bc5":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30240142345428,"z":-47.4084358215332},"rot":{"x":0.0208018943667412,"y":270.023376464844,"z":0.016779126599431}},"5f19e0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208083223551512,"y":270.000549316406,"z":0.0167713221162558}},"5fe780":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208086799830198,"y":269.99951171875,"z":0.0167711321264505}},"620b6e":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.0208085011690855,"y":270.000732421875,"z":0.0167715419083834}},"62d930":{"lock":false,"pos":{"x":32.9852905273438,"y":1.30040621757507,"z":-49.7095565795898},"rot":{"x":0.020814748480916,"y":269.978515625,"z":0.0167633462697268}},"63f145":{"lock":false,"pos":{"x":58.0996627807617,"y":1.3074893951416,"z":-56.6709785461426},"rot":{"x":0.0208103898912668,"y":269.993408203125,"z":0.016768841072917}},"705e27":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29095637798309,"z":-86.5083084106445},"rot":{"x":0.0208175927400589,"y":269.971008300781,"z":0.0167607720941305}},"731d2a":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208087507635355,"y":269.999450683594,"z":0.0167709644883871}},"7b918b":{"lock":false,"pos":{"x":36.6242637634277,"y":1.296342253685,"z":-68.108154296875},"rot":{"x":0.0208084862679243,"y":270,"z":0.0167712736874819}},"7baf75":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30091941356659,"z":-72.7198333740234},"rot":{"x":0.0208149868994951,"y":269.979187011719,"z":0.0167642626911402}},"7d3a27":{"lock":false,"pos":{"x":58.0996475219727,"y":1.30614292621613,"z":-61.2709808349609},"rot":{"x":0.0208087582141161,"y":269.999328613281,"z":0.0167709141969681}},"7f27d6":{"lock":false,"pos":{"x":36.6243515014648,"y":1.29364943504334,"z":-77.3078689575195},"rot":{"x":0.0208188500255346,"y":269.965576171875,"z":0.0167594105005264}},"8bec05":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.020808644592762,"y":269.999389648438,"z":0.0167708117514849}},"91da6b":{"lock":false,"pos":{"x":36.6243515014648,"y":1.29095649719238,"z":-86.5078353881836},"rot":{"x":0.0208189152181149,"y":269.965545654297,"z":0.0167592819780111}},"96ed77":{"lock":false,"pos":{"x":36.6243705749512,"y":1.29364931583405,"z":-77.3084411621094},"rot":{"x":0.0208086725324392,"y":270,"z":0.0167709607630968}},"981f41":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.0208087991923094,"y":269.999420166016,"z":0.0167709346860647}},"982716":{"lock":false,"pos":{"x":58.0996856689453,"y":1.30816280841827,"z":-54.3705062866211},"rot":{"x":0.0208123233169317,"y":269.988342285156,"z":0.0167665258049965}},"9dd911":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1158065795898},"rot":{"x":0.0208017975091934,"y":270.023010253906,"z":0.0167794581502676}},"a6af13":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29432249069214,"z":-75.008430480957},"rot":{"x":0.0208087898790836,"y":269.999389648438,"z":0.0167711488902569}},"b05089":{"lock":false,"pos":{"x":40.6759,"y":1.3023,"z":-56.6129},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"b3cad4":{"lock":false,"pos":{"x":58.0997047424316,"y":1.30883598327637,"z":-52.0709953308105},"rot":{"x":0.0208018515259027,"y":270.022705078125,"z":0.0167794693261385}},"b5e5f1":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29162955284119,"z":-84.2082824707031},"rot":{"x":0.0208087358623743,"y":269.999420166016,"z":0.0167707707732916}},"b81c84":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083114624023},"rot":{"x":0.0208087898790836,"y":269.999389648438,"z":0.0167709458619356}},"bab03b":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430389404297,"z":-79.6199111938477},"rot":{"x":0.0208018124103546,"y":270.023193359375,"z":0.0167795438319445}},"cb4730":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208081230521202,"y":270.001678466797,"z":0.0167717300355434}},"cdbb37":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30832493305206,"z":-47.420295715332},"rot":{"x":0.0208085011690855,"y":269.99951171875,"z":0.016771012917161}},"cdd6aa":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208085980266333,"y":269.999481201172,"z":0.016771050170064}},"ce1b89":{"lock":false,"pos":{"x":40.2742652893066,"y":1.29160833358765,"z":-88.8093643188477},"rot":{"x":0.0208017826080322,"y":270.023040771484,"z":0.0167795270681381}},"d041f0":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208086390048265,"y":269.99951171875,"z":0.0167709290981293}},"d4dbc7":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084442138672},"rot":{"x":0.0208088792860508,"y":269.999420166016,"z":0.0167709551751614}},"d753d7":{"lock":false,"pos":{"x":58.098804473877,"y":1.31018531322479,"z":-47.4597969055176},"rot":{"x":0.0208100620657206,"y":269.994689941406,"z":0.016769191250205}},"d7dbac":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29230272769928,"z":-81.9085006713867},"rot":{"x":0.0208088625222445,"y":269.999420166016,"z":0.0167708545923233}},"de40c8":{"lock":false,"pos":{"x":58.0996780395508,"y":1.3068163394928,"z":-58.9704666137695},"rot":{"x":0.0208064410835505,"y":270.007598876953,"z":0.0167739689350128}},"e1c0f8":{"lock":false,"pos":{"x":32.9852714538574,"y":1.29906010627747,"z":-54.3083457946777},"rot":{"x":0.0208077095448971,"y":270.002899169922,"z":0.0167723763734102}},"e503ce":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30024564266205,"z":-75.0198440551758},"rot":{"x":0.0208151899278164,"y":269.978363037109,"z":0.0167641099542379}},"e7f37b":{"lock":false,"pos":{"x":32.9852828979492,"y":1.30107951164246,"z":-47.4095649719238},"rot":{"x":0.0208171103149652,"y":269.970886230469,"z":0.0167605057358742}},"e80bd8":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29699695110321,"z":-70.4198608398438},"rot":{"x":0.0208084918558598,"y":269.999572753906,"z":0.0167709514498711}},"e84232":{"lock":false,"pos":{"x":44.229,"y":1.2968,"z":-79.6006},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"e92e98":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30563187599182,"z":-56.6203498840332},"rot":{"x":0.0208081025630236,"y":270.000732421875,"z":0.0167712345719337}},"eaa415":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30765163898468,"z":-49.7202949523926},"rot":{"x":0.0208086762577295,"y":269.99951171875,"z":0.0167711805552244}},"ecfa42":{"lock":false,"pos":{"x":36.608642578125,"y":1.29028046131134,"z":-88.7977600097656},"rot":{"x":0.0208170562982559,"y":269.970977783203,"z":0.0167606230825186}},"edd6c4":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208085142076015,"y":269.999542236328,"z":0.0167709924280643}},"eef1e6":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30024588108063,"z":-75.0203475952148},"rot":{"x":0.0208095647394657,"y":269.998809814453,"z":0.0167709831148386}},"f2508d":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208082552999258,"y":270.000610351563,"z":0.0167712941765785}},"f4434f":{"lock":false,"pos":{"x":52.944206237793,"y":1.30697846412659,"z":-52.0203437805176},"rot":{"x":0.0208083316683769,"y":270.000793457031,"z":0.016771350055933}},"f57af7":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.0208016373217106,"y":270.023376464844,"z":0.0167796723544598}},"f8dc01":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038177967072,"z":-54.3084449768066},"rot":{"x":0.0208079982548952,"y":270.001586914063,"z":0.0167716909199953}},"fb4e3f":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208082739263773,"y":270.000579833984,"z":0.0167713910341263}},"fc20b9":{"lock":false,"pos":{"x":36.6243515014648,"y":1.30240154266357,"z":-47.4079742431641},"rot":{"x":0.0208160169422627,"y":269.975402832031,"z":0.0167620778083801}},"fc82a5":{"lock":false,"pos":{"x":52.9442291259766,"y":1.3056321144104,"z":-56.6198539733887},"rot":{"x":0.0208129808306694,"y":269.984924316406,"z":0.0167653579264879}},"ff1b0c":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7084045410156},"rot":{"x":0.0208092220127583,"y":269.999450683594,"z":0.0167716108262539}}}}' +LuaScriptState: '{"ml":{"006d44":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29836189746857,"z":-61.2084465026855},"rot":{"x":0.0208092760294676,"y":269.999420166016,"z":0.0167703833431005}},"074858":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30159258842468,"z":-70.4202041625977},"rot":{"x":0.0208090171217918,"y":269.998901367188,"z":0.0167705975472927}},"098da7":{"lock":false,"pos":{"x":58.0935859680176,"y":1.30816042423248,"z":-54.3712768554688},"rot":{"x":0.0208071302622557,"y":270.004486083984,"z":0.0167728867381811}},"0b963c":{"lock":false,"pos":{"x":52.944221496582,"y":1.30697858333588,"z":-52.0198783874512},"rot":{"x":0.0208123680204153,"y":269.987548828125,"z":0.0167668387293816}},"0db666":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29768872261047,"z":-63.5084457397461},"rot":{"x":0.0208093971014023,"y":269.999389648438,"z":0.0167707167565823}},"0e0530":{"lock":false,"pos":{"x":32.9852981567383,"y":1.30107951164246,"z":-47.4095573425293},"rot":{"x":0.0208172202110291,"y":269.970947265625,"z":0.0167613811790943}},"0e72b6":{"lock":false,"pos":{"x":32.985279083252,"y":1.29906010627747,"z":-54.3083381652832},"rot":{"x":0.02082066424191,"y":269.958343505859,"z":0.0167555846273899}},"0ec9bf":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29767024517059,"z":-68.119873046875},"rot":{"x":0.0208085533231497,"y":269.999542236328,"z":0.0167709365487099}},"0feb74":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.0208167433738709,"y":269.970153808594,"z":0.0167600121349096}},"117b7c":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208026114851236,"y":270.02294921875,"z":0.0167798530310392}},"15643b":{"lock":false,"pos":{"x":40.2900886535645,"y":1.2922842502594,"z":-86.5199127197266},"rot":{"x":0.0208025388419628,"y":270.023132324219,"z":0.0167798269540071}},"18927e":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632365703583,"z":-72.719970703125},"rot":{"x":0.0208086185157299,"y":269.999572753906,"z":0.0167709179222584}},"1bd139":{"lock":false,"pos":{"x":40.2742691040039,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.02080262824893,"y":270.02294921875,"z":0.0167800076305866}},"1dbc95":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208087600767612,"y":269.999450683594,"z":0.0167709533125162}},"2423e7":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170965194702,"z":-54.3199996948242},"rot":{"x":0.0208087954670191,"y":269.999481201172,"z":0.0167708713561296}},"26a3bf":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29230272769928,"z":-81.9085083007813},"rot":{"x":0.020808506757021,"y":269.999267578125,"z":0.0167694017291069}},"27446e":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036318302155,"z":-58.9200057983398},"rot":{"x":0.0208086427301168,"y":269.999481201172,"z":0.0167708210647106}},"2aeb8a":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497730731964,"z":-77.3199081420898},"rot":{"x":0.0208017602562904,"y":270.023284912109,"z":0.0167795997112989}},"2cfa4f":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293905735016,"z":-65.8202133178711},"rot":{"x":0.0208086222410202,"y":270.000274658203,"z":0.0167712960392237}},"2f4db2":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30105495452881,"z":-52.0084266662598},"rot":{"x":0.0208032093942165,"y":270.019836425781,"z":0.01677774079144}},"2fba3b":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208088997751474,"y":270.000610351563,"z":0.0167708750814199}},"2fe723":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208086147904396,"y":269.999450683594,"z":0.0167707521468401}},"30062e":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30883598327637,"z":-52.0709686279297},"rot":{"x":0.0208017639815807,"y":270.022705078125,"z":0.0167791415005922}},"308be1":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957282543182,"z":-77.3202514648438},"rot":{"x":0.0208088271319866,"y":269.998748779297,"z":0.0167703907936811}},"3442f5":{"lock":false,"pos":{"x":40.2920913696289,"y":1.29363143444061,"z":-81.9201049804688},"rot":{"x":0.0208085235208273,"y":269.998931884766,"z":0.0167708415538073}},"37882c":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950927734375,"z":-49.7709617614746},"rot":{"x":0.0208085048943758,"y":269.998962402344,"z":0.0167708918452263}},"3add54":{"lock":false,"pos":{"x":52.9462394714355,"y":1.29822707176209,"z":-81.9204635620117},"rot":{"x":0.0208089258521795,"y":269.999328613281,"z":0.0167710725218058}},"3bd955":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208088047802448,"y":269.998901367188,"z":0.0167707744985819}},"3e0653":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202163696289},"rot":{"x":0.0208083707839251,"y":270.000396728516,"z":0.0167714115232229}},"4a45c6":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30428564548492,"z":-61.2198486328125},"rot":{"x":0.0208134297281504,"y":269.98388671875,"z":0.0167652182281017}},"4b4df3":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29973292350769,"z":-52.0095596313477},"rot":{"x":0.0208076201379299,"y":270.004333496094,"z":0.016772111877799}},"4eb231":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889965057373,"z":-79.620246887207},"rot":{"x":0.020808657631278,"y":269.999267578125,"z":0.0167710408568382}},"5065a6":{"lock":false,"pos":{"x":40.2900619506836,"y":1.29969000816345,"z":-61.2195243835449},"rot":{"x":0.0208149272948503,"y":269.978210449219,"z":0.0167631711810827}},"587bc5":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30240142345428,"z":-47.4084358215332},"rot":{"x":0.0208018943667412,"y":270.023376464844,"z":0.016779126599431}},"5f19e0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208082981407642,"y":270.000549316406,"z":0.0167712233960629}},"5fe780":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208087954670191,"y":269.99951171875,"z":0.0167712066322565}},"620b6e":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.0208082180470228,"y":270.000732421875,"z":0.0167711284011602}},"62d930":{"lock":false,"pos":{"x":32.985279083252,"y":1.29973292350769,"z":-52.0095634460449},"rot":{"x":0.0208149123936892,"y":269.978515625,"z":0.0167629700154066}},"63f145":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208105612546206,"y":269.993408203125,"z":0.0167683623731136}},"705e27":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29095637798309,"z":-86.5083084106445},"rot":{"x":0.0208175927400589,"y":269.971008300781,"z":0.0167607720941305}},"731d2a":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208088979125023,"y":269.999450683594,"z":0.0167707968503237}},"7b918b":{"lock":false,"pos":{"x":36.6243362426758,"y":1.2956690788269,"z":-70.4083023071289},"rot":{"x":0.0208081752061844,"y":270.000061035156,"z":0.0167697407305241}},"7baf75":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30091941356659,"z":-72.7198333740234},"rot":{"x":0.020814711228013,"y":269.979187011719,"z":0.0167635828256607}},"7d3a27":{"lock":false,"pos":{"x":58.0996894836426,"y":1.30546903610229,"z":-63.5731620788574},"rot":{"x":0.0208336543291807,"y":269.915924072266,"z":0.016740545630455}},"7f27d6":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29297602176666,"z":-79.608283996582},"rot":{"x":0.0208184029906988,"y":269.965637207031,"z":0.0167571827769279}},"8bec05":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29499578475952,"z":-72.7083892822266},"rot":{"x":0.0208080857992172,"y":269.999450683594,"z":0.0167705006897449}},"91da6b":{"lock":false,"pos":{"x":36.6086463928223,"y":1.29028046131134,"z":-88.7977447509766},"rot":{"x":0.0208183489739895,"y":269.965606689453,"z":0.0167574789375067}},"96ed77":{"lock":false,"pos":{"x":36.6243705749512,"y":1.29364931583405,"z":-77.3084411621094},"rot":{"x":0.0208086725324392,"y":270,"z":0.0167709607630968}},"981f41":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29701554775238,"z":-65.8082962036133},"rot":{"x":0.0208085309714079,"y":269.999481201172,"z":0.0167695712298155}},"982716":{"lock":false,"pos":{"x":58.099666595459,"y":1.3074893951416,"z":-56.6709747314453},"rot":{"x":0.0208121724426746,"y":269.988311767578,"z":0.0167665407061577}},"9dd911":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208017807453871,"y":270.023010253906,"z":0.0167793035507202}},"a6af13":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29364931583405,"z":-77.3083267211914},"rot":{"x":0.0208080317825079,"y":269.999450683594,"z":0.0167706310749054}},"b05089":{"lock":false,"pos":{"x":40.6759,"y":1.3023,"z":-56.6129},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"b3cad4":{"lock":false,"pos":{"x":58.099666595459,"y":1.30816268920898,"z":-54.3709716796875},"rot":{"x":0.0208022575825453,"y":270.022705078125,"z":0.016779026016593}},"b5e5f1":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29095637798309,"z":-86.5082931518555},"rot":{"x":0.02080830745399,"y":269.999481201172,"z":0.0167694929987192}},"b81c84":{"lock":false,"pos":{"x":36.6243362426758,"y":1.296342253685,"z":-68.1082992553711},"rot":{"x":0.0208079889416695,"y":269.999450683594,"z":0.0167707167565823}},"bab03b":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430389404297,"z":-79.6199111938477},"rot":{"x":0.0208016652613878,"y":270.023193359375,"z":0.0167794395238161}},"cb4730":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208081230521202,"y":270.001678466797,"z":0.0167717300355434}},"cdbb37":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30832493305206,"z":-47.420295715332},"rot":{"x":0.0208085924386978,"y":269.99951171875,"z":0.0167709868401289}},"cdd6aa":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208085924386978,"y":269.999481201172,"z":0.0167710017412901}},"ce1b89":{"lock":false,"pos":{"x":40.2741088867188,"y":1.29093325138092,"z":-91.1157989501953},"rot":{"x":0.0208020973950624,"y":270.02294921875,"z":0.016779949888587}},"d041f0":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208086390048265,"y":269.99951171875,"z":0.0167709290981293}},"d4dbc7":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29903519153595,"z":-58.9084434509277},"rot":{"x":0.0208092778921127,"y":269.999420166016,"z":0.0167703665792942}},"d753d7":{"lock":false,"pos":{"x":58.098804473877,"y":1.31018531322479,"z":-47.4597969055176},"rot":{"x":0.0208099950104952,"y":269.994689941406,"z":0.0167692359536886}},"d7dbac":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29162967205048,"z":-84.2082901000977},"rot":{"x":0.0208083968609571,"y":269.999542236328,"z":0.0167703125625849}},"de40c8":{"lock":false,"pos":{"x":58.1010513305664,"y":1.30613505840302,"z":-61.2994766235352},"rot":{"x":0.0208303611725569,"y":269.925231933594,"z":0.0167440343648195}},"e1c0f8":{"lock":false,"pos":{"x":32.985279083252,"y":1.29838681221008,"z":-56.608341217041},"rot":{"x":0.0208079852163792,"y":270.002868652344,"z":0.0167718678712845}},"e503ce":{"lock":false,"pos":{"x":52.9442176818848,"y":1.3002462387085,"z":-75.0198440551758},"rot":{"x":0.0208148825913668,"y":269.978363037109,"z":0.0167633462697268}},"e7f37b":{"lock":false,"pos":{"x":32.985279083252,"y":1.30040621757507,"z":-49.7095642089844},"rot":{"x":0.0208172537386417,"y":269.970855712891,"z":0.0167601369321346}},"e80bd8":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29699695110321,"z":-70.4198608398438},"rot":{"x":0.0208088792860508,"y":269.999572753906,"z":0.0167709421366453}},"e84232":{"lock":false,"pos":{"x":44.229,"y":1.2968,"z":-79.6006},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"e92e98":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30563187599182,"z":-56.6203498840332},"rot":{"x":0.0208081025630236,"y":270.000732421875,"z":0.0167712345719337}},"eaa415":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30765163898468,"z":-49.7202949523926},"rot":{"x":0.0208086669445038,"y":269.99951171875,"z":0.0167709980159998}},"ecfa42":{"lock":false,"pos":{"x":36.6082725524902,"y":1.28960525989532,"z":-91.1042709350586},"rot":{"x":0.0208169128745794,"y":269.971038818359,"z":0.0167596116662025}},"edd6c4":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208086650818586,"y":269.999542236328,"z":0.0167708732187748}},"eef1e6":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30024588108063,"z":-75.0203475952148},"rot":{"x":0.0208095647394657,"y":269.998809814453,"z":0.0167709831148386}},"f2508d":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208083130419254,"y":270.000610351563,"z":0.0167713221162558}},"f4434f":{"lock":false,"pos":{"x":52.944206237793,"y":1.30697846412659,"z":-52.0203437805176},"rot":{"x":0.0208083316683769,"y":270.000793457031,"z":0.016771350055933}},"f57af7":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.0208017565310001,"y":270.023376464844,"z":0.0167798902839422}},"f8dc01":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.0208083726465702,"y":270.001556396484,"z":0.0167714580893517}},"fb4e3f":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208082739263773,"y":270.000579833984,"z":0.0167713910341263}},"fc20b9":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30172824859619,"z":-49.7084617614746},"rot":{"x":0.0208157207816839,"y":269.975402832031,"z":0.016761913895607}},"fc82a5":{"lock":false,"pos":{"x":52.9442291259766,"y":1.3056321144104,"z":-56.6198539733887},"rot":{"x":0.0208129268139601,"y":269.984924316406,"z":0.016765670850873}},"ff1b0c":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7084045410156},"rot":{"x":0.0208092220127583,"y":269.999450683594,"z":0.0167716108262539}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 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 index e9a92b5c5..b15ce1b5c 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -56.61 + posZ: -58.91 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 002bf3507..3c35fed06 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Adaptable (1) 731d2a.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Adaptable (1) 731d2a.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 545632 +CardID: 553932 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5456': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ 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 index acf8bbc0d..a40fa771c 100644 --- 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 @@ -35,9 +35,9 @@ Tooltip: true Transform: posX: 58.1 posY: 1.31 - posZ: -61.27 + posZ: -63.57 rotX: 0.02 - rotY: 270.0 + rotY: 269.92 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 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 index e2b820bcd..053bb96e6 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -58.91 + posZ: -61.21 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Beretta M1918 (4) 91da6b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Beretta M1918 (4) 91da6b.yaml index ee3257299..22b5a317c 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Beretta M1918 (4) 91da6b.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Beretta M1918 (4) 91da6b.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 36.62 + posX: 36.61 posY: 1.29 - posZ: -86.51 + posZ: -88.8 rotX: 0.02 rotY: 269.97 rotZ: 0.02 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 index 7f57a4d98..b79e25bdd 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -61.21 + posZ: -63.51 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 42a27ee99..d66fbd51f 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.61 posY: 1.29 - posZ: -88.8 + posZ: -91.1 rotX: 0.02 rotY: 269.97 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Chuck Fergus (5) 0e72b6.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Chuck Fergus (5) 0e72b6.yaml index ec5c64380..b37698850 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Chuck Fergus (5) 0e72b6.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Chuck Fergus (5) 0e72b6.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -52.01 + posZ: -54.31 rotX: 0.02 rotY: 269.96 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Copycat (3) de40c8.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Copycat (3) de40c8.yaml index eb0818d91..1f3060cad 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Copycat (3) de40c8.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Copycat (3) de40c8.yaml @@ -35,9 +35,9 @@ Tooltip: true Transform: posX: 58.1 posY: 1.31 - posZ: -58.97 + posZ: -61.3 rotX: 0.02 - rotY: 270.01 + rotY: 269.93 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 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 index 6a774a03d..6f06eb598 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Daredevil (2) b3cad4.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Daredevil (2) b3cad4.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 58.1 posY: 1.31 - posZ: -52.07 + posZ: -54.37 rotX: 0.02 rotY: 270.02 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Decorated Skull (3) 981f41.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Decorated Skull (3) 981f41.yaml index 41cc0945a..82108199b 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Decorated Skull (3) 981f41.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Decorated Skull (3) 981f41.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -63.51 + posZ: -65.81 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 003b9b9dd..ca3d78df9 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -65.81 + posZ: -68.11 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 33bb71eb0..7c62a311b 100644 --- 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 @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 36.61 - posY: 1.29 - posZ: -91.1 + posX: 32.99 + posY: 1.3 + posZ: -47.41 rotX: 0.02 rotY: 269.97 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card False Covenant (2) 3442f5.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card False Covenant (2) 3442f5.yaml new file mode 100644 index 000000000..6abf07830 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card False Covenant (2) 3442f5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553108 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3442f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: False Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.29 + posY: 1.29 + posZ: -81.92 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + 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 index f5076a92e..9be0fa95d 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -81.92 + posZ: -84.22 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index 8c698c8a2..76035807e 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -84.22 + posZ: -86.52 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index c1bd93c92..059acd193 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Haste (2) 1bd139.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Haste (2) 1bd139.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.29 + posX: 40.27 posY: 1.29 - posZ: -86.52 + posZ: -88.81 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index 0702493b1..11515177c 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.27 posY: 1.29 - posZ: -88.81 + posZ: -91.12 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index 613ea9ddd..f68164366 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -68.11 + posZ: -70.41 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 699102156..ff31bfe15 100644 --- 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 @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 36.62 - posY: 1.3 - posZ: -70.41 + posY: 1.29 + posZ: -72.71 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lucky Cigarette Case (3) 0feb74.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lucky Cigarette Case (3) 0feb74.yaml index aec052d14..19e2909af 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lucky Cigarette Case (3) 0feb74.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lucky Cigarette Case (3) 0feb74.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -72.71 + posZ: -75.01 rotX: 0.02 rotY: 269.97 rotZ: 0.02 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 index 2c6a0d590..a2197af27 100644 --- 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 @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.27 - posY: 1.29 - posZ: -91.12 + posX: 36.62 + posY: 1.3 + posZ: -47.41 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index db4ae3d9d..59dbfbdd4 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lupara (3) a6af13.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lupara (3) a6af13.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -75.01 + posZ: -77.31 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Manual Dexterity (2) 982716.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Manual Dexterity (2) 982716.yaml index ea33e8133..980e5ffa1 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Manual Dexterity (2) 982716.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Manual Dexterity (2) 982716.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 58.1 posY: 1.31 - posZ: -54.37 + posZ: -56.67 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Mauser C96 (2) fc20b9.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Mauser C96 (2) fc20b9.yaml index 1ee8fc5ff..4322a30f0 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Mauser C96 (2) fc20b9.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Mauser C96 (2) fc20b9.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -47.41 + posZ: -49.71 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index 48c49743e..0f4593dbe 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Opportunist (2) 63f145.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Opportunist (2) 63f145.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 58.1 posY: 1.31 - posZ: -56.67 + posZ: -58.97 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index 6d2a64498..b6f9f01ee 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Pickpocketing (2) 2f4db2.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Pickpocketing (2) 2f4db2.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 36.6 + posX: 36.62 posY: 1.3 - posZ: -49.7 + posZ: -52.01 rotX: 0.02 rotY: 270.02 rotZ: 0.02 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 index 8c8d1bad6..1d6968ba2 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -54.31 + posZ: -56.61 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sharpshooter (3) 7f27d6.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sharpshooter (3) 7f27d6.yaml index a4803b1ab..0ecbca25d 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sharpshooter (3) 7f27d6.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sharpshooter (3) 7f27d6.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -77.31 + posZ: -79.61 rotX: 0.02 rotY: 269.97 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Skeptic (1) 37882c.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Skeptic (1) 37882c.yaml new file mode 100644 index 000000000..2783c80f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Skeptic (1) 37882c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 37882c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Skeptic (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.1 + posY: 1.31 + posZ: -49.77 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + 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 index 621975868..bdda1d9cd 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Stealth (3) 26a3bf.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Stealth (3) 26a3bf.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -79.61 + posZ: -81.91 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 461ecb3a8..6d02debca 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Streetwise (3) d7dbac.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Streetwise (3) d7dbac.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -81.91 + posZ: -84.21 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 9c1b8ee84..c7a1d57eb 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Suggestion (4) e7f37b.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Suggestion (4) e7f37b.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -47.41 + posZ: -49.71 rotX: 0.02 rotY: 269.97 rotZ: 0.02 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 index fbb09ec47..e8f924749 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Switchblade (2) 2fba3b.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Switchblade (2) 2fba3b.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -52.0 + posZ: -54.31 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 1804bc7b9..71d3aa061 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -84.21 + posZ: -86.51 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 92c7def63..90d576b77 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 32.99 posY: 1.3 - posZ: -49.71 + posZ: -52.01 rotX: 0.02 rotY: 269.98 rotZ: 0.02 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 index af26f0e66..68f7cc588 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -54.31 + posZ: -56.61 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 2bf11c71f..72de86af1 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 58.1 posY: 1.31 - posZ: -49.77 + posZ: -52.07 rotX: 0.02 rotY: 270.02 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e.yaml deleted file mode 100644 index 25398694d..000000000 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e.yaml +++ /dev/null @@ -1,121 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Rogue c57f1e/Card Sharpshooter (3) 7f27d6.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Beretta M1918 (4) 91da6b.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Chuck Fergus (5) 0e72b6.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Liquid Courage (1) 5065a6.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Mauser C96 (2) fc20b9.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Lucky Cigarette Case (3) 0feb74.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Daring Maneuver (2) fc82a5.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Slip Away (2) 4a45c6.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Backstab (3) 7baf75.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Pilfer (3) e503ce.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Manual Dexterity (2) 982716.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Copycat (3) de40c8.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Cheap Shot (2) 0b963c.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Another Day, Another Dollar (3) 006d44.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Ace in the Hole (3) 074858.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Borrowed Time (3) 0db666.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Double, Double (4) 0e0530.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Suggestion (1) 0ec9bf.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Garrote Wire (2) 117b7c.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Hard Knocks (2) 15643b.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Treasure Hunter (1) 18927e.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Haste (2) 1bd139.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Charon''s Obol (1) 1dbc95.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Fence (1) 2423e7.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Stealth (3) 26a3bf.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Leo de Luca (1) 27446e.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Burglary (2) 2aeb8a.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Swift Reload (2) 2cfa4f.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Pickpocketing (2) 2f4db2.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Switchblade (2) 2fba3b.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Cat Burglar (1) 2fe723.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Three Aces (1) 30062e.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Sure Gamble (3) 308be1.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Cheat Death (5) 3add54.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Think on Your Feet (2) 3e0653.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Hot Streak (4) 4eb231.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Sneak Attack (2) 5f19e0.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Moxie (1) 5fe780.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Contraband (2) 620b6e.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card The Gold Pocket Watch (4) 62d930.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Opportunist (2) 63f145.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Adaptable (1) 731d2a.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Joey The Rat Vigil (3) 7b918b.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card All In (5) 7d3a27.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Lola Santiago (3) 8bec05.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Decorated Skull (3) 981f41.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Lucky Dice (2) 9dd911.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Lupara (3) a6af13.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Daredevil (2) b3cad4.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Tennessee Sour Mash (3) b5e5f1.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Delilah O''Rourke (3) b81c84.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Colt Vest Pocket (2) bab03b.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Easy Mark (1) cdbb37.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Hired Muscle (1) cdd6aa.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card High Roller (2) ce1b89.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card .45 Thompson (3) d4dbc7.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Momentum (1) d753d7.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Streetwise (3) d7dbac.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Sawed-Off Shotgun (5) e1c0f8.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Suggestion (4) e7f37b.yaml' -- !include "Custom_Model_Bag Rogue c57f1e/Card The Moon \u2022 XVIII (1) e80bd8.yaml" -- !include 'Custom_Model_Bag Rogue c57f1e/Card Pay Day (1) eaa415.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Chicago Typewriter (4) ecfa42.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Lockpicks (1) edd6c4.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card Hot Streak (2) f2508d.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card .41 Derringer (2) f57af7.yaml' -- !include 'Custom_Model_Bag Rogue c57f1e/Card The Skeleton Key (2) f8dc01.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: '' -DragSelectable: true -GMNotes: '' -GUID: c57f1e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Rogue c57f1e.ttslua' -LuaScriptState: '{"ml":{"006d44":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.020808782428503,"y":269.999420166016,"z":0.0167707782238722}},"074858":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30159246921539,"z":-70.4202041625977},"rot":{"x":0.0208088420331478,"y":269.998901367188,"z":0.0167706236243248}},"098da7":{"lock":false,"pos":{"x":58.0935859680176,"y":1.30816042423248,"z":-54.3712768554688},"rot":{"x":0.0208071302622557,"y":270.004486083984,"z":0.0167728867381811}},"0b963c":{"lock":false,"pos":{"x":52.944221496582,"y":1.30697810649872,"z":-52.0198783874512},"rot":{"x":0.0208122860640287,"y":269.987548828125,"z":0.0167665909975767}},"0db666":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208088923245668,"y":269.999420166016,"z":0.0167708974331617}},"0e0530":{"lock":false,"pos":{"x":36.6082649230957,"y":1.28960514068604,"z":-91.1042861938477},"rot":{"x":0.0208171755075455,"y":269.970947265625,"z":0.0167606361210346}},"0e72b6":{"lock":false,"pos":{"x":32.9852981567383,"y":1.29973316192627,"z":-52.0090789794922},"rot":{"x":0.0208209585398436,"y":269.958374023438,"z":0.0167556870728731}},"0ec9bf":{"lock":false,"pos":{"x":40.2900466918945,"y":1.2976701259613,"z":-68.119873046875},"rot":{"x":0.0208087041974068,"y":269.999542236328,"z":0.0167711731046438}},"0feb74":{"lock":false,"pos":{"x":36.6243515014648,"y":1.29499590396881,"z":-72.7079315185547},"rot":{"x":0.0208174511790276,"y":269.970123291016,"z":0.0167609751224518}},"117b7c":{"lock":false,"pos":{"x":40.2920799255371,"y":1.29363143444061,"z":-81.9201202392578},"rot":{"x":0.0208017453551292,"y":270.023010253906,"z":0.016779525205493}},"15643b":{"lock":false,"pos":{"x":40.2899551391602,"y":1.29295742511749,"z":-84.2199020385742},"rot":{"x":0.0208017211407423,"y":270.023193359375,"z":0.0167794525623322}},"18927e":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632365703583,"z":-72.719970703125},"rot":{"x":0.0208085179328918,"y":269.999572753906,"z":0.0167710836976767}},"1bd139":{"lock":false,"pos":{"x":40.2900848388672,"y":1.2922842502594,"z":-86.5199203491211},"rot":{"x":0.0208019483834505,"y":270.023040771484,"z":0.0167794227600098}},"1dbc95":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208088401705027,"y":269.999450683594,"z":0.0167709942907095}},"2423e7":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170953273773,"z":-54.3199996948242},"rot":{"x":0.0208087153732777,"y":269.999481201172,"z":0.0167709309607744}},"26a3bf":{"lock":false,"pos":{"x":36.6243286132813,"y":1.29297602176666,"z":-79.6083068847656},"rot":{"x":0.0208086967468262,"y":269.999176025391,"z":0.0167708024382591}},"27446e":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036306381226,"z":-58.9200057983398},"rot":{"x":0.0208087582141161,"y":269.999481201172,"z":0.0167711153626442}},"2aeb8a":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497718811035,"z":-77.3199081420898},"rot":{"x":0.0208015702664852,"y":270.023284912109,"z":0.0167796760797501}},"2cfa4f":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202133178711},"rot":{"x":0.0208085644990206,"y":270.000274658203,"z":0.0167712420225143}},"2f4db2":{"lock":false,"pos":{"x":36.6021270751953,"y":1.30172204971313,"z":-49.7018852233887},"rot":{"x":0.0208026841282845,"y":270.019836425781,"z":0.0167783033102751}},"2fba3b":{"lock":false,"pos":{"x":36.6246070861816,"y":1.3010573387146,"z":-52.0004806518555},"rot":{"x":0.0208082646131516,"y":270.000640869141,"z":0.0167714562267065}},"2fe723":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208086632192135,"y":269.999450683594,"z":0.0167708117514849}},"30062e":{"lock":false,"pos":{"x":58.0997047424316,"y":1.30950915813446,"z":-49.77099609375},"rot":{"x":0.0208018328994513,"y":270.022705078125,"z":0.0167794208973646}},"308be1":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957270622253,"z":-77.3202514648438},"rot":{"x":0.0208087805658579,"y":269.998748779297,"z":0.0167708024382591}},"3add54":{"lock":false,"pos":{"x":52.9462394714355,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208087414503098,"y":269.999328613281,"z":0.0167708676308393}},"3bd955":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208088047802448,"y":269.998901367188,"z":0.0167707744985819}},"3e0653":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202163696289},"rot":{"x":0.0208085086196661,"y":270.000396728516,"z":0.0167712885886431}},"4a45c6":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30428564548492,"z":-61.2198486328125},"rot":{"x":0.0208133533596992,"y":269.98388671875,"z":0.0167653784155846}},"4b4df3":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29973292350769,"z":-52.0095596313477},"rot":{"x":0.0208076201379299,"y":270.004333496094,"z":0.016772111877799}},"4eb231":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208088215440512,"y":269.999267578125,"z":0.0167707446962595}},"5065a6":{"lock":false,"pos":{"x":40.2900619506836,"y":1.29969000816345,"z":-61.2195243835449},"rot":{"x":0.0208149533718824,"y":269.978210449219,"z":0.0167630817741156}},"587bc5":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30240142345428,"z":-47.4084358215332},"rot":{"x":0.0208018943667412,"y":270.023376464844,"z":0.016779126599431}},"5f19e0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208083223551512,"y":270.000549316406,"z":0.0167713221162558}},"5fe780":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208086799830198,"y":269.99951171875,"z":0.0167711321264505}},"620b6e":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.0208085011690855,"y":270.000732421875,"z":0.0167715419083834}},"62d930":{"lock":false,"pos":{"x":32.9852905273438,"y":1.30040621757507,"z":-49.7095565795898},"rot":{"x":0.020814748480916,"y":269.978515625,"z":0.0167633462697268}},"63f145":{"lock":false,"pos":{"x":58.0996627807617,"y":1.3074893951416,"z":-56.6709785461426},"rot":{"x":0.0208103898912668,"y":269.993408203125,"z":0.016768841072917}},"705e27":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29095637798309,"z":-86.5083084106445},"rot":{"x":0.0208175927400589,"y":269.971008300781,"z":0.0167607720941305}},"731d2a":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208087507635355,"y":269.999450683594,"z":0.0167709644883871}},"7b918b":{"lock":false,"pos":{"x":36.6242637634277,"y":1.296342253685,"z":-68.108154296875},"rot":{"x":0.0208084862679243,"y":270,"z":0.0167712736874819}},"7baf75":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30091941356659,"z":-72.7198333740234},"rot":{"x":0.0208149868994951,"y":269.979187011719,"z":0.0167642626911402}},"7d3a27":{"lock":false,"pos":{"x":58.0996475219727,"y":1.30614292621613,"z":-61.2709808349609},"rot":{"x":0.0208087582141161,"y":269.999328613281,"z":0.0167709141969681}},"7f27d6":{"lock":false,"pos":{"x":36.6243515014648,"y":1.29364943504334,"z":-77.3078689575195},"rot":{"x":0.0208188500255346,"y":269.965576171875,"z":0.0167594105005264}},"8bec05":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.020808644592762,"y":269.999389648438,"z":0.0167708117514849}},"91da6b":{"lock":false,"pos":{"x":36.6243515014648,"y":1.29095649719238,"z":-86.5078353881836},"rot":{"x":0.0208189152181149,"y":269.965545654297,"z":0.0167592819780111}},"96ed77":{"lock":false,"pos":{"x":36.6243705749512,"y":1.29364931583405,"z":-77.3084411621094},"rot":{"x":0.0208086725324392,"y":270,"z":0.0167709607630968}},"981f41":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.0208087991923094,"y":269.999420166016,"z":0.0167709346860647}},"982716":{"lock":false,"pos":{"x":58.0996856689453,"y":1.30816280841827,"z":-54.3705062866211},"rot":{"x":0.0208123233169317,"y":269.988342285156,"z":0.0167665258049965}},"9dd911":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1158065795898},"rot":{"x":0.0208017975091934,"y":270.023010253906,"z":0.0167794581502676}},"a6af13":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29432249069214,"z":-75.008430480957},"rot":{"x":0.0208087898790836,"y":269.999389648438,"z":0.0167711488902569}},"b05089":{"lock":false,"pos":{"x":40.6759,"y":1.3023,"z":-56.6129},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"b3cad4":{"lock":false,"pos":{"x":58.0997047424316,"y":1.30883598327637,"z":-52.0709953308105},"rot":{"x":0.0208018515259027,"y":270.022705078125,"z":0.0167794693261385}},"b5e5f1":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29162955284119,"z":-84.2082824707031},"rot":{"x":0.0208087358623743,"y":269.999420166016,"z":0.0167707707732916}},"b81c84":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083114624023},"rot":{"x":0.0208087898790836,"y":269.999389648438,"z":0.0167709458619356}},"bab03b":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430389404297,"z":-79.6199111938477},"rot":{"x":0.0208018124103546,"y":270.023193359375,"z":0.0167795438319445}},"cb4730":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208081230521202,"y":270.001678466797,"z":0.0167717300355434}},"cdbb37":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30832493305206,"z":-47.420295715332},"rot":{"x":0.0208085011690855,"y":269.99951171875,"z":0.016771012917161}},"cdd6aa":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208085980266333,"y":269.999481201172,"z":0.016771050170064}},"ce1b89":{"lock":false,"pos":{"x":40.2742652893066,"y":1.29160833358765,"z":-88.8093643188477},"rot":{"x":0.0208017826080322,"y":270.023040771484,"z":0.0167795270681381}},"d041f0":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208086390048265,"y":269.99951171875,"z":0.0167709290981293}},"d4dbc7":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084442138672},"rot":{"x":0.0208088792860508,"y":269.999420166016,"z":0.0167709551751614}},"d753d7":{"lock":false,"pos":{"x":58.098804473877,"y":1.31018531322479,"z":-47.4597969055176},"rot":{"x":0.0208100620657206,"y":269.994689941406,"z":0.016769191250205}},"d7dbac":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29230272769928,"z":-81.9085006713867},"rot":{"x":0.0208088625222445,"y":269.999420166016,"z":0.0167708545923233}},"de40c8":{"lock":false,"pos":{"x":58.0996780395508,"y":1.3068163394928,"z":-58.9704666137695},"rot":{"x":0.0208064410835505,"y":270.007598876953,"z":0.0167739689350128}},"e1c0f8":{"lock":false,"pos":{"x":32.9852714538574,"y":1.29906010627747,"z":-54.3083457946777},"rot":{"x":0.0208077095448971,"y":270.002899169922,"z":0.0167723763734102}},"e503ce":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30024564266205,"z":-75.0198440551758},"rot":{"x":0.0208151899278164,"y":269.978363037109,"z":0.0167641099542379}},"e7f37b":{"lock":false,"pos":{"x":32.9852828979492,"y":1.30107951164246,"z":-47.4095649719238},"rot":{"x":0.0208171103149652,"y":269.970886230469,"z":0.0167605057358742}},"e80bd8":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29699695110321,"z":-70.4198608398438},"rot":{"x":0.0208084918558598,"y":269.999572753906,"z":0.0167709514498711}},"e84232":{"lock":false,"pos":{"x":44.229,"y":1.2968,"z":-79.6006},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"e92e98":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30563187599182,"z":-56.6203498840332},"rot":{"x":0.0208081025630236,"y":270.000732421875,"z":0.0167712345719337}},"eaa415":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30765163898468,"z":-49.7202949523926},"rot":{"x":0.0208086762577295,"y":269.99951171875,"z":0.0167711805552244}},"ecfa42":{"lock":false,"pos":{"x":36.608642578125,"y":1.29028046131134,"z":-88.7977600097656},"rot":{"x":0.0208170562982559,"y":269.970977783203,"z":0.0167606230825186}},"edd6c4":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208085142076015,"y":269.999542236328,"z":0.0167709924280643}},"eef1e6":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30024588108063,"z":-75.0203475952148},"rot":{"x":0.0208095647394657,"y":269.998809814453,"z":0.0167709831148386}},"f2508d":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208082552999258,"y":270.000610351563,"z":0.0167712941765785}},"f4434f":{"lock":false,"pos":{"x":52.944206237793,"y":1.30697846412659,"z":-52.0203437805176},"rot":{"x":0.0208083316683769,"y":270.000793457031,"z":0.016771350055933}},"f57af7":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.0208016373217106,"y":270.023376464844,"z":0.0167796723544598}},"f8dc01":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038177967072,"z":-54.3084449768066},"rot":{"x":0.0208079982548952,"y":270.001586914063,"z":0.0167716909199953}},"fb4e3f":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208082739263773,"y":270.000579833984,"z":0.0167713910341263}},"fc20b9":{"lock":false,"pos":{"x":36.6243515014648,"y":1.30240154266357,"z":-47.4079742431641},"rot":{"x":0.0208160169422627,"y":269.975402832031,"z":0.0167620778083801}},"fc82a5":{"lock":false,"pos":{"x":52.9442291259766,"y":1.3056321144104,"z":-56.6198539733887},"rot":{"x":0.0208129808306694,"y":269.984924316406,"z":0.0167653579264879}},"ff1b0c":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7084045410156},"rot":{"x":0.0208092220127583,"y":269.999450683594,"z":0.0167716108262539}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Rogue -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.31 - posY: 1.66 - posZ: -74.79 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e.ttslua b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e.ttslua rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49.ttslua diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49.yaml new file mode 100644 index 000000000..cfa0c7cad --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49.yaml @@ -0,0 +1,123 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue fa4d49/Card False Covenant (2) 3442f5.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Skeptic (1) 37882c.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Another Day, Another Dollar (3) 006d44.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Ace in the Hole (3) 074858.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Cheap Shot (2) 0b963c.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Borrowed Time (3) 0db666.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Double, Double (4) 0e0530.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Chuck Fergus (5) 0e72b6.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Suggestion (1) 0ec9bf.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Lucky Cigarette Case (3) 0feb74.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Garrote Wire (2) 117b7c.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Hard Knocks (2) 15643b.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Treasure Hunter (1) 18927e.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Haste (2) 1bd139.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Charon''s Obol (1) 1dbc95.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Fence (1) 2423e7.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Stealth (3) 26a3bf.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Leo de Luca (1) 27446e.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Burglary (2) 2aeb8a.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Swift Reload (2) 2cfa4f.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Pickpocketing (2) 2f4db2.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Switchblade (2) 2fba3b.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Cat Burglar (1) 2fe723.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Three Aces (1) 30062e.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Sure Gamble (3) 308be1.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Cheat Death (5) 3add54.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Think on Your Feet (2) 3e0653.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Slip Away (2) 4a45c6.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Hot Streak (4) 4eb231.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Liquid Courage (1) 5065a6.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Sneak Attack (2) 5f19e0.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Moxie (1) 5fe780.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Contraband (2) 620b6e.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card The Gold Pocket Watch (4) 62d930.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Opportunist (2) 63f145.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Adaptable (1) 731d2a.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Joey The Rat Vigil (3) 7b918b.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Backstab (3) 7baf75.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card All In (5) 7d3a27.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Sharpshooter (3) 7f27d6.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Lola Santiago (3) 8bec05.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Beretta M1918 (4) 91da6b.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Decorated Skull (3) 981f41.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Manual Dexterity (2) 982716.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Lucky Dice (2) 9dd911.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Lupara (3) a6af13.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Daredevil (2) b3cad4.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Tennessee Sour Mash (3) b5e5f1.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Delilah O''Rourke (3) b81c84.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Colt Vest Pocket (2) bab03b.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Easy Mark (1) cdbb37.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Hired Muscle (1) cdd6aa.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card High Roller (2) ce1b89.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card .45 Thompson (3) d4dbc7.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Momentum (1) d753d7.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Streetwise (3) d7dbac.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Copycat (3) de40c8.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Sawed-Off Shotgun (5) e1c0f8.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Pilfer (3) e503ce.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Suggestion (4) e7f37b.yaml' +- !include "Custom_Model_Bag Rogue fa4d49/Card The Moon \u2022 XVIII (1) e80bd8.yaml" +- !include 'Custom_Model_Bag Rogue fa4d49/Card Pay Day (1) eaa415.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Chicago Typewriter (4) ecfa42.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Lockpicks (1) edd6c4.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Hot Streak (2) f2508d.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card .41 Derringer (2) f57af7.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card The Skeleton Key (2) f8dc01.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Mauser C96 (2) fc20b9.yaml' +- !include 'Custom_Model_Bag Rogue fa4d49/Card Daring Maneuver (2) fc82a5.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: '' +DragSelectable: true +GMNotes: '' +GUID: fa4d49 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Rogue fa4d49.ttslua' +LuaScriptState: '{"ml":{"006d44":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29836189746857,"z":-61.2084465026855},"rot":{"x":0.0208092760294676,"y":269.999420166016,"z":0.0167703833431005}},"074858":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30159258842468,"z":-70.4202041625977},"rot":{"x":0.0208090171217918,"y":269.998901367188,"z":0.0167705975472927}},"098da7":{"lock":false,"pos":{"x":58.0935859680176,"y":1.30816042423248,"z":-54.3712768554688},"rot":{"x":0.0208071302622557,"y":270.004486083984,"z":0.0167728867381811}},"0b963c":{"lock":false,"pos":{"x":52.944221496582,"y":1.30697858333588,"z":-52.0198783874512},"rot":{"x":0.0208123680204153,"y":269.987548828125,"z":0.0167668387293816}},"0db666":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29768872261047,"z":-63.5084457397461},"rot":{"x":0.0208093971014023,"y":269.999389648438,"z":0.0167707167565823}},"0e0530":{"lock":false,"pos":{"x":32.9852981567383,"y":1.30107951164246,"z":-47.4095573425293},"rot":{"x":0.0208172202110291,"y":269.970947265625,"z":0.0167613811790943}},"0e72b6":{"lock":false,"pos":{"x":32.985279083252,"y":1.29906010627747,"z":-54.3083381652832},"rot":{"x":0.02082066424191,"y":269.958343505859,"z":0.0167555846273899}},"0ec9bf":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29767024517059,"z":-68.119873046875},"rot":{"x":0.0208085533231497,"y":269.999542236328,"z":0.0167709365487099}},"0feb74":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.0208167433738709,"y":269.970153808594,"z":0.0167600121349096}},"117b7c":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208026114851236,"y":270.02294921875,"z":0.0167798530310392}},"15643b":{"lock":false,"pos":{"x":40.2900886535645,"y":1.2922842502594,"z":-86.5199127197266},"rot":{"x":0.0208025388419628,"y":270.023132324219,"z":0.0167798269540071}},"18927e":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632365703583,"z":-72.719970703125},"rot":{"x":0.0208086185157299,"y":269.999572753906,"z":0.0167709179222584}},"1bd139":{"lock":false,"pos":{"x":40.2742691040039,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.02080262824893,"y":270.02294921875,"z":0.0167800076305866}},"1dbc95":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208087600767612,"y":269.999450683594,"z":0.0167709533125162}},"2423e7":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170965194702,"z":-54.3199996948242},"rot":{"x":0.0208087954670191,"y":269.999481201172,"z":0.0167708713561296}},"26a3bf":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29230272769928,"z":-81.9085083007813},"rot":{"x":0.020808506757021,"y":269.999267578125,"z":0.0167694017291069}},"27446e":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036318302155,"z":-58.9200057983398},"rot":{"x":0.0208086427301168,"y":269.999481201172,"z":0.0167708210647106}},"2aeb8a":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497730731964,"z":-77.3199081420898},"rot":{"x":0.0208017602562904,"y":270.023284912109,"z":0.0167795997112989}},"2cfa4f":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293905735016,"z":-65.8202133178711},"rot":{"x":0.0208086222410202,"y":270.000274658203,"z":0.0167712960392237}},"2f4db2":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30105495452881,"z":-52.0084266662598},"rot":{"x":0.0208032093942165,"y":270.019836425781,"z":0.01677774079144}},"2fba3b":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208088997751474,"y":270.000610351563,"z":0.0167708750814199}},"2fe723":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208086147904396,"y":269.999450683594,"z":0.0167707521468401}},"30062e":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30883598327637,"z":-52.0709686279297},"rot":{"x":0.0208017639815807,"y":270.022705078125,"z":0.0167791415005922}},"308be1":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957282543182,"z":-77.3202514648438},"rot":{"x":0.0208088271319866,"y":269.998748779297,"z":0.0167703907936811}},"3442f5":{"lock":false,"pos":{"x":40.2920913696289,"y":1.29363143444061,"z":-81.9201049804688},"rot":{"x":0.0208085235208273,"y":269.998931884766,"z":0.0167708415538073}},"37882c":{"lock":false,"pos":{"x":58.099666595459,"y":1.30950927734375,"z":-49.7709617614746},"rot":{"x":0.0208085048943758,"y":269.998962402344,"z":0.0167708918452263}},"3add54":{"lock":false,"pos":{"x":52.9462394714355,"y":1.29822707176209,"z":-81.9204635620117},"rot":{"x":0.0208089258521795,"y":269.999328613281,"z":0.0167710725218058}},"3bd955":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208088047802448,"y":269.998901367188,"z":0.0167707744985819}},"3e0653":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202163696289},"rot":{"x":0.0208083707839251,"y":270.000396728516,"z":0.0167714115232229}},"4a45c6":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30428564548492,"z":-61.2198486328125},"rot":{"x":0.0208134297281504,"y":269.98388671875,"z":0.0167652182281017}},"4b4df3":{"lock":false,"pos":{"x":32.9852867126465,"y":1.29973292350769,"z":-52.0095596313477},"rot":{"x":0.0208076201379299,"y":270.004333496094,"z":0.016772111877799}},"4eb231":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889965057373,"z":-79.620246887207},"rot":{"x":0.020808657631278,"y":269.999267578125,"z":0.0167710408568382}},"5065a6":{"lock":false,"pos":{"x":40.2900619506836,"y":1.29969000816345,"z":-61.2195243835449},"rot":{"x":0.0208149272948503,"y":269.978210449219,"z":0.0167631711810827}},"587bc5":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30240142345428,"z":-47.4084358215332},"rot":{"x":0.0208018943667412,"y":270.023376464844,"z":0.016779126599431}},"5f19e0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208082981407642,"y":270.000549316406,"z":0.0167712233960629}},"5fe780":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208087954670191,"y":269.99951171875,"z":0.0167712066322565}},"620b6e":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3063051700592,"z":-54.3203468322754},"rot":{"x":0.0208082180470228,"y":270.000732421875,"z":0.0167711284011602}},"62d930":{"lock":false,"pos":{"x":32.985279083252,"y":1.29973292350769,"z":-52.0095634460449},"rot":{"x":0.0208149123936892,"y":269.978515625,"z":0.0167629700154066}},"63f145":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208105612546206,"y":269.993408203125,"z":0.0167683623731136}},"705e27":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29095637798309,"z":-86.5083084106445},"rot":{"x":0.0208175927400589,"y":269.971008300781,"z":0.0167607720941305}},"731d2a":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208088979125023,"y":269.999450683594,"z":0.0167707968503237}},"7b918b":{"lock":false,"pos":{"x":36.6243362426758,"y":1.2956690788269,"z":-70.4083023071289},"rot":{"x":0.0208081752061844,"y":270.000061035156,"z":0.0167697407305241}},"7baf75":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30091941356659,"z":-72.7198333740234},"rot":{"x":0.020814711228013,"y":269.979187011719,"z":0.0167635828256607}},"7d3a27":{"lock":false,"pos":{"x":58.0996894836426,"y":1.30546903610229,"z":-63.5731620788574},"rot":{"x":0.0208336543291807,"y":269.915924072266,"z":0.016740545630455}},"7f27d6":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29297602176666,"z":-79.608283996582},"rot":{"x":0.0208184029906988,"y":269.965637207031,"z":0.0167571827769279}},"8bec05":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29499578475952,"z":-72.7083892822266},"rot":{"x":0.0208080857992172,"y":269.999450683594,"z":0.0167705006897449}},"91da6b":{"lock":false,"pos":{"x":36.6086463928223,"y":1.29028046131134,"z":-88.7977447509766},"rot":{"x":0.0208183489739895,"y":269.965606689453,"z":0.0167574789375067}},"96ed77":{"lock":false,"pos":{"x":36.6243705749512,"y":1.29364931583405,"z":-77.3084411621094},"rot":{"x":0.0208086725324392,"y":270,"z":0.0167709607630968}},"981f41":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29701554775238,"z":-65.8082962036133},"rot":{"x":0.0208085309714079,"y":269.999481201172,"z":0.0167695712298155}},"982716":{"lock":false,"pos":{"x":58.099666595459,"y":1.3074893951416,"z":-56.6709747314453},"rot":{"x":0.0208121724426746,"y":269.988311767578,"z":0.0167665407061577}},"9dd911":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208017807453871,"y":270.023010253906,"z":0.0167793035507202}},"a6af13":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29364931583405,"z":-77.3083267211914},"rot":{"x":0.0208080317825079,"y":269.999450683594,"z":0.0167706310749054}},"b05089":{"lock":false,"pos":{"x":40.6759,"y":1.3023,"z":-56.6129},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"b3cad4":{"lock":false,"pos":{"x":58.099666595459,"y":1.30816268920898,"z":-54.3709716796875},"rot":{"x":0.0208022575825453,"y":270.022705078125,"z":0.016779026016593}},"b5e5f1":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29095637798309,"z":-86.5082931518555},"rot":{"x":0.02080830745399,"y":269.999481201172,"z":0.0167694929987192}},"b81c84":{"lock":false,"pos":{"x":36.6243362426758,"y":1.296342253685,"z":-68.1082992553711},"rot":{"x":0.0208079889416695,"y":269.999450683594,"z":0.0167707167565823}},"bab03b":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430389404297,"z":-79.6199111938477},"rot":{"x":0.0208016652613878,"y":270.023193359375,"z":0.0167794395238161}},"cb4730":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208081230521202,"y":270.001678466797,"z":0.0167717300355434}},"cdbb37":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30832493305206,"z":-47.420295715332},"rot":{"x":0.0208085924386978,"y":269.99951171875,"z":0.0167709868401289}},"cdd6aa":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208085924386978,"y":269.999481201172,"z":0.0167710017412901}},"ce1b89":{"lock":false,"pos":{"x":40.2741088867188,"y":1.29093325138092,"z":-91.1157989501953},"rot":{"x":0.0208020973950624,"y":270.02294921875,"z":0.016779949888587}},"d041f0":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208086390048265,"y":269.99951171875,"z":0.0167709290981293}},"d4dbc7":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29903519153595,"z":-58.9084434509277},"rot":{"x":0.0208092778921127,"y":269.999420166016,"z":0.0167703665792942}},"d753d7":{"lock":false,"pos":{"x":58.098804473877,"y":1.31018531322479,"z":-47.4597969055176},"rot":{"x":0.0208099950104952,"y":269.994689941406,"z":0.0167692359536886}},"d7dbac":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29162967205048,"z":-84.2082901000977},"rot":{"x":0.0208083968609571,"y":269.999542236328,"z":0.0167703125625849}},"de40c8":{"lock":false,"pos":{"x":58.1010513305664,"y":1.30613505840302,"z":-61.2994766235352},"rot":{"x":0.0208303611725569,"y":269.925231933594,"z":0.0167440343648195}},"e1c0f8":{"lock":false,"pos":{"x":32.985279083252,"y":1.29838681221008,"z":-56.608341217041},"rot":{"x":0.0208079852163792,"y":270.002868652344,"z":0.0167718678712845}},"e503ce":{"lock":false,"pos":{"x":52.9442176818848,"y":1.3002462387085,"z":-75.0198440551758},"rot":{"x":0.0208148825913668,"y":269.978363037109,"z":0.0167633462697268}},"e7f37b":{"lock":false,"pos":{"x":32.985279083252,"y":1.30040621757507,"z":-49.7095642089844},"rot":{"x":0.0208172537386417,"y":269.970855712891,"z":0.0167601369321346}},"e80bd8":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29699695110321,"z":-70.4198608398438},"rot":{"x":0.0208088792860508,"y":269.999572753906,"z":0.0167709421366453}},"e84232":{"lock":false,"pos":{"x":44.229,"y":1.2968,"z":-79.6006},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"e92e98":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30563187599182,"z":-56.6203498840332},"rot":{"x":0.0208081025630236,"y":270.000732421875,"z":0.0167712345719337}},"eaa415":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30765163898468,"z":-49.7202949523926},"rot":{"x":0.0208086669445038,"y":269.99951171875,"z":0.0167709980159998}},"ecfa42":{"lock":false,"pos":{"x":36.6082725524902,"y":1.28960525989532,"z":-91.1042709350586},"rot":{"x":0.0208169128745794,"y":269.971038818359,"z":0.0167596116662025}},"edd6c4":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208086650818586,"y":269.999542236328,"z":0.0167708732187748}},"eef1e6":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30024588108063,"z":-75.0203475952148},"rot":{"x":0.0208095647394657,"y":269.998809814453,"z":0.0167709831148386}},"f2508d":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208083130419254,"y":270.000610351563,"z":0.0167713221162558}},"f4434f":{"lock":false,"pos":{"x":52.944206237793,"y":1.30697846412659,"z":-52.0203437805176},"rot":{"x":0.0208083316683769,"y":270.000793457031,"z":0.016771350055933}},"f57af7":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.0208017565310001,"y":270.023376464844,"z":0.0167798902839422}},"f8dc01":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.0208083726465702,"y":270.001556396484,"z":0.0167714580893517}},"fb4e3f":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208082739263773,"y":270.000579833984,"z":0.0167713910341263}},"fc20b9":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30172824859619,"z":-49.7084617614746},"rot":{"x":0.0208157207816839,"y":269.975402832031,"z":0.016761913895607}},"fc82a5":{"lock":false,"pos":{"x":52.9442291259766,"y":1.3056321144104,"z":-56.6198539733887},"rot":{"x":0.0208129268139601,"y":269.984924316406,"z":0.016765670850873}},"ff1b0c":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7084045410156},"rot":{"x":0.0208092220127583,"y":269.999450683594,"z":0.0167716108262539}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.31 + posY: 1.66 + posZ: -74.79 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card .41 Derringer (2) f57af7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card .41 Derringer (2) f57af7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card .41 Derringer (2) f57af7.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card .41 Derringer (2) f57af7.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card .45 Thompson (3) d4dbc7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card .45 Thompson (3) d4dbc7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card .45 Thompson (3) d4dbc7.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card .45 Thompson (3) d4dbc7.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Ace in the Hole (3) 074858.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Ace in the Hole (3) 074858.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Ace in the Hole (3) 074858.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Ace in the Hole (3) 074858.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Adaptable (1) 731d2a.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Adaptable (1) 731d2a.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Adaptable (1) 731d2a.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Adaptable (1) 731d2a.yaml index a941165c9..adae3c984 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Adaptable (1) 731d2a.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Adaptable (1) 731d2a.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 545632 +CardID: 553932 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5456': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card All In (5) 7d3a27.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card All In (5) 7d3a27.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card All In (5) 7d3a27.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card All In (5) 7d3a27.yaml index 74b5c73e7..bf1f647ed 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card All In (5) 7d3a27.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card All In (5) 7d3a27.yaml @@ -37,7 +37,7 @@ Transform: posY: 1.41 posZ: -74.79 rotX: 0.02 - rotY: 270.0 + rotY: 269.92 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Another Day, Another Dollar (3) 006d44.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Another Day, Another Dollar (3) 006d44.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Another Day, Another Dollar (3) 006d44.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Another Day, Another Dollar (3) 006d44.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Backstab (3) 7baf75.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Backstab (3) 7baf75.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Backstab (3) 7baf75.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Backstab (3) 7baf75.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Beretta M1918 (4) 91da6b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Beretta M1918 (4) 91da6b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Beretta M1918 (4) 91da6b.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Beretta M1918 (4) 91da6b.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Borrowed Time (3) 0db666.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Borrowed Time (3) 0db666.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Borrowed Time (3) 0db666.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Borrowed Time (3) 0db666.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Burglary (2) 2aeb8a.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Burglary (2) 2aeb8a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Burglary (2) 2aeb8a.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Burglary (2) 2aeb8a.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Cat Burglar (1) 2fe723.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Cat Burglar (1) 2fe723.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Cat Burglar (1) 2fe723.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Cat Burglar (1) 2fe723.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Charon's Obol (1) 1dbc95.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Charon's Obol (1) 1dbc95.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Charon's Obol (1) 1dbc95.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Charon's Obol (1) 1dbc95.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Cheap Shot (2) 0b963c.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Cheap Shot (2) 0b963c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Cheap Shot (2) 0b963c.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Cheap Shot (2) 0b963c.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Cheat Death (5) 3add54.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Cheat Death (5) 3add54.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Cheat Death (5) 3add54.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Cheat Death (5) 3add54.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Chicago Typewriter (4) ecfa42.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Chicago Typewriter (4) ecfa42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Chicago Typewriter (4) ecfa42.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Chicago Typewriter (4) ecfa42.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Chuck Fergus (5) 0e72b6.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Chuck Fergus (5) 0e72b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Chuck Fergus (5) 0e72b6.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Chuck Fergus (5) 0e72b6.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Colt Vest Pocket (2) bab03b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Colt Vest Pocket (2) bab03b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Colt Vest Pocket (2) bab03b.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Colt Vest Pocket (2) bab03b.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Contraband (2) 620b6e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Contraband (2) 620b6e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Contraband (2) 620b6e.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Contraband (2) 620b6e.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Copycat (3) de40c8.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Copycat (3) de40c8.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Copycat (3) de40c8.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Copycat (3) de40c8.yaml index 661d9ae0a..de6adeedc 100644 --- a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Copycat (3) de40c8.yaml +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Copycat (3) de40c8.yaml @@ -37,7 +37,7 @@ Transform: posY: 1.41 posZ: -74.79 rotX: 0.02 - rotY: 270.01 + rotY: 269.93 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Daredevil (2) b3cad4.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Daredevil (2) b3cad4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Daredevil (2) b3cad4.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Daredevil (2) b3cad4.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Daring Maneuver (2) fc82a5.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Daring Maneuver (2) fc82a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Daring Maneuver (2) fc82a5.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Daring Maneuver (2) fc82a5.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Decorated Skull (3) 981f41.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Decorated Skull (3) 981f41.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Decorated Skull (3) 981f41.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Decorated Skull (3) 981f41.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Delilah O'Rourke (3) b81c84.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Delilah O'Rourke (3) b81c84.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Delilah O'Rourke (3) b81c84.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Delilah O'Rourke (3) b81c84.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Double, Double (4) 0e0530.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Double, Double (4) 0e0530.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Double, Double (4) 0e0530.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Double, Double (4) 0e0530.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Easy Mark (1) cdbb37.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Easy Mark (1) cdbb37.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Easy Mark (1) cdbb37.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Easy Mark (1) cdbb37.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card False Covenant (2) 3442f5.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card False Covenant (2) 3442f5.yaml new file mode 100644 index 000000000..ab6933173 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card False Covenant (2) 3442f5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553108 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3442f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: False Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.33 + posY: 1.41 + posZ: -74.79 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Fence (1) 2423e7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Fence (1) 2423e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Fence (1) 2423e7.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Fence (1) 2423e7.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Garrote Wire (2) 117b7c.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Garrote Wire (2) 117b7c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Garrote Wire (2) 117b7c.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Garrote Wire (2) 117b7c.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Hard Knocks (2) 15643b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Hard Knocks (2) 15643b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Hard Knocks (2) 15643b.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Hard Knocks (2) 15643b.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Haste (2) 1bd139.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Haste (2) 1bd139.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Haste (2) 1bd139.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Haste (2) 1bd139.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card High Roller (2) ce1b89.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card High Roller (2) ce1b89.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card High Roller (2) ce1b89.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card High Roller (2) ce1b89.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Hired Muscle (1) cdd6aa.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Hired Muscle (1) cdd6aa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Hired Muscle (1) cdd6aa.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Hired Muscle (1) cdd6aa.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Hot Streak (2) f2508d.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Hot Streak (2) f2508d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Hot Streak (2) f2508d.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Hot Streak (2) f2508d.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Hot Streak (4) 4eb231.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Hot Streak (4) 4eb231.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Hot Streak (4) 4eb231.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Hot Streak (4) 4eb231.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Joey The Rat Vigil (3) 7b918b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Joey The Rat Vigil (3) 7b918b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Joey The Rat Vigil (3) 7b918b.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Joey The Rat Vigil (3) 7b918b.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Leo de Luca (1) 27446e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Leo de Luca (1) 27446e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Leo de Luca (1) 27446e.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Leo de Luca (1) 27446e.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Liquid Courage (1) 5065a6.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Liquid Courage (1) 5065a6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Liquid Courage (1) 5065a6.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Liquid Courage (1) 5065a6.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lockpicks (1) edd6c4.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lockpicks (1) edd6c4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lockpicks (1) edd6c4.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lockpicks (1) edd6c4.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lola Santiago (3) 8bec05.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lola Santiago (3) 8bec05.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lola Santiago (3) 8bec05.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lola Santiago (3) 8bec05.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lucky Cigarette Case (3) 0feb74.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lucky Cigarette Case (3) 0feb74.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lucky Cigarette Case (3) 0feb74.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lucky Cigarette Case (3) 0feb74.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lucky Dice (2) 9dd911.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lucky Dice (2) 9dd911.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lucky Dice (2) 9dd911.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lucky Dice (2) 9dd911.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lupara (3) a6af13.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lupara (3) a6af13.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Lupara (3) a6af13.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Lupara (3) a6af13.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Manual Dexterity (2) 982716.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Manual Dexterity (2) 982716.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Manual Dexterity (2) 982716.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Manual Dexterity (2) 982716.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Mauser C96 (2) fc20b9.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Mauser C96 (2) fc20b9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Mauser C96 (2) fc20b9.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Mauser C96 (2) fc20b9.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Momentum (1) d753d7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Momentum (1) d753d7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Momentum (1) d753d7.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Momentum (1) d753d7.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Moxie (1) 5fe780.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Moxie (1) 5fe780.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Moxie (1) 5fe780.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Moxie (1) 5fe780.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Opportunist (2) 63f145.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Opportunist (2) 63f145.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Opportunist (2) 63f145.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Opportunist (2) 63f145.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Pay Day (1) eaa415.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Pay Day (1) eaa415.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Pay Day (1) eaa415.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Pay Day (1) eaa415.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Pickpocketing (2) 2f4db2.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Pickpocketing (2) 2f4db2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Pickpocketing (2) 2f4db2.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Pickpocketing (2) 2f4db2.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Pilfer (3) e503ce.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Pilfer (3) e503ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Pilfer (3) e503ce.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Pilfer (3) e503ce.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Sawed-Off Shotgun (5) e1c0f8.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Sawed-Off Shotgun (5) e1c0f8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Sawed-Off Shotgun (5) e1c0f8.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Sawed-Off Shotgun (5) e1c0f8.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Sharpshooter (3) 7f27d6.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Sharpshooter (3) 7f27d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Sharpshooter (3) 7f27d6.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Sharpshooter (3) 7f27d6.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Skeptic (1) 37882c.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Skeptic (1) 37882c.yaml new file mode 100644 index 000000000..c9796a1dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Skeptic (1) 37882c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 37882c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Skeptic (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.33 + posY: 1.41 + posZ: -74.79 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Slip Away (2) 4a45c6.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Slip Away (2) 4a45c6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Slip Away (2) 4a45c6.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Slip Away (2) 4a45c6.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Sneak Attack (2) 5f19e0.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Sneak Attack (2) 5f19e0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Sneak Attack (2) 5f19e0.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Sneak Attack (2) 5f19e0.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Stealth (3) 26a3bf.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Stealth (3) 26a3bf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Stealth (3) 26a3bf.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Stealth (3) 26a3bf.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Streetwise (3) d7dbac.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Streetwise (3) d7dbac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Streetwise (3) d7dbac.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Streetwise (3) d7dbac.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Suggestion (1) 0ec9bf.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Suggestion (1) 0ec9bf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Suggestion (1) 0ec9bf.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Suggestion (1) 0ec9bf.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Suggestion (4) e7f37b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Suggestion (4) e7f37b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Suggestion (4) e7f37b.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Suggestion (4) e7f37b.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Sure Gamble (3) 308be1.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Sure Gamble (3) 308be1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Sure Gamble (3) 308be1.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Sure Gamble (3) 308be1.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Swift Reload (2) 2cfa4f.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Swift Reload (2) 2cfa4f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Swift Reload (2) 2cfa4f.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Swift Reload (2) 2cfa4f.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Switchblade (2) 2fba3b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Switchblade (2) 2fba3b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Switchblade (2) 2fba3b.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Switchblade (2) 2fba3b.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Tennessee Sour Mash (3) b5e5f1.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Tennessee Sour Mash (3) b5e5f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Tennessee Sour Mash (3) b5e5f1.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Tennessee Sour Mash (3) b5e5f1.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card The Gold Pocket Watch (4) 62d930.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card The Gold Pocket Watch (4) 62d930.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card The Gold Pocket Watch (4) 62d930.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card The Gold Pocket Watch (4) 62d930.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card The Moon • XVIII (1) e80bd8.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card The Moon • XVIII (1) e80bd8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card The Moon • XVIII (1) e80bd8.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card The Moon • XVIII (1) e80bd8.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card The Skeleton Key (2) f8dc01.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card The Skeleton Key (2) f8dc01.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card The Skeleton Key (2) f8dc01.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card The Skeleton Key (2) f8dc01.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Think on Your Feet (2) 3e0653.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Think on Your Feet (2) 3e0653.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Think on Your Feet (2) 3e0653.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Think on Your Feet (2) 3e0653.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Three Aces (1) 30062e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Three Aces (1) 30062e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Three Aces (1) 30062e.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Three Aces (1) 30062e.yaml diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Treasure Hunter (1) 18927e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Treasure Hunter (1) 18927e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue c57f1e/Card Treasure Hunter (1) 18927e.yaml rename to unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue fa4d49/Card Treasure Hunter (1) 18927e.yaml diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc.yaml index 235f6c59b..83ffa7573 100644 --- a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc.yaml +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc.yaml @@ -4,6 +4,10 @@ ColorDiffuse: g: 0.9921635 r: 0.9999998 ContainedObjects: +- !include 'Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Mysterious + Chanting - Custom Content Blog 18bd3a.yaml' +- !include 'Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Alternate + Playmat Images 3a6cef.yaml' - !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 diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Alternate Playmat Images 3a6cef.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Alternate Playmat Images 3a6cef.yaml new file mode 100644 index 000000000..9cdc6340e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Alternate Playmat Images 3a6cef.yaml @@ -0,0 +1,36 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: Open this page in your actual browser to get the image URLs. +DragSelectable: true +GMNotes: '' +GUID: 3a6cef +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Tablet +Nickname: Alternate Playmat Images +Snap: true +Sticky: true +Tablet: + PageURL: https://ibb.co/album/tPYhgC?sort=date_asc +Tooltip: true +Transform: + posX: 53.8 + posY: 3.45 + posZ: -73.81 + rotX: 0.04 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Mysterious Chanting - Custom Content Blog 18bd3a.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Mysterious Chanting - Custom Content Blog 18bd3a.yaml new file mode 100644 index 000000000..61845206a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Mysterious Chanting - Custom Content Blog 18bd3a.yaml @@ -0,0 +1,36 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 18bd3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Tablet +Nickname: Mysterious Chanting - Custom Content Blog +Snap: true +Sticky: true +Tablet: + PageURL: https://mysteriouschanting.wordpress.com/ +Tooltip: true +Transform: + posX: 29.04 + posY: 3.44 + posZ: -72.9 + rotX: 0.04 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5.yaml index 11455478f..a1a820af6 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5.yaml @@ -4,7 +4,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69.yaml' +- !include 'Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea.yaml' +- !include 'Custom_Model_Bag Seeker 1e7fc5/Card Eldritch Sophist 53d103.yaml' - !include 'Custom_Model_Bag Seeker 1e7fc5/Card Shortcut 00ade1.yaml' - !include 'Custom_Model_Bag Seeker 1e7fc5/Card Occult Invocation 010509.yaml' - !include 'Custom_Model_Bag Seeker 1e7fc5/Card Extensive Research 013446.yaml' @@ -99,7 +100,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Seeker 1e7fc5.ttslua' -LuaScriptState: '{"ml":{"00ade1":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208085924386978,"y":269.999237060547,"z":0.0167709067463875}},"010509":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208112671971321,"y":269.990295410156,"z":0.0167676564306021}},"013446":{"lock":false,"pos":{"x":53.2285575866699,"y":1.302858710289,"z":74.0412216186523},"rot":{"x":0.0208111386746168,"y":269.99072265625,"z":0.0167677849531174}},"03bb19":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208170935511589,"y":269.971069335938,"z":0.016760528087616}},"05125c":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208084899932146,"y":269.999938964844,"z":0.0167710985988379}},"05660e":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30355060100555,"z":80.9527740478516},"rot":{"x":0.0208084490150213,"y":269.999938964844,"z":0.0167711395770311}},"070246":{"lock":false,"pos":{"x":53.2204895019531,"y":1.30017018318176,"z":64.8664398193359},"rot":{"x":0.0209635943174362,"y":269.467224121094,"z":0.0165768787264824}},"088c27":{"lock":false,"pos":{"x":53.2046852111816,"y":1.29612815380096,"z":51.0772857666016},"rot":{"x":0.0209583323448896,"y":269.485229492188,"z":0.0165835320949554}},"0a4d22":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208112336695194,"y":269.990905761719,"z":0.0167678166180849}},"0abaf8":{"lock":false,"pos":{"x":40.9603080749512,"y":1.29638135433197,"z":67.1338729858398},"rot":{"x":0.0208081174641848,"y":270.001770019531,"z":0.0167716667056084}},"0d29be":{"lock":false,"pos":{"x":53.228588104248,"y":1.30622494220734,"z":85.5412445068359},"rot":{"x":0.0209494065493345,"y":269.515899658203,"z":0.0165947694331408}},"1753a8":{"lock":false,"pos":{"x":53.2277336120605,"y":1.30420529842377,"z":78.6426696777344},"rot":{"x":0.0208094753324986,"y":269.952514648438,"z":0.0167681593447924}},"176d57":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30109834671021,"z":83.2488479614258},"rot":{"x":0.0208083558827639,"y":270.000030517578,"z":0.0167711973190308}},"178794":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30353188514709,"z":76.3414459228516},"rot":{"x":0.0208091642707586,"y":269.999633789063,"z":0.0167708769440651}},"1c353d":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29571235179901,"z":64.8486557006836},"rot":{"x":0.0208084043115377,"y":270,"z":0.0167712271213531}},"2239d4":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30048787593842,"z":85.5607299804688},"rot":{"x":0.0208086147904396,"y":270.000274658203,"z":0.0167713277041912}},"244e5d":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30875551700592,"z":87.7903671264648},"rot":{"x":0.0208189114928246,"y":269.964630126953,"z":0.0167584251612425}},"27258f":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208095964044333,"y":269.999359130859,"z":0.0167712904512882}},"338973":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30083966255188,"z":67.1435165405273},"rot":{"x":0.0209633316844702,"y":269.468658447266,"z":0.0165775045752525}},"38217d":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30689823627472,"z":87.8414535522461},"rot":{"x":0.0208084359765053,"y":270.000457763672,"z":0.0167713668197393}},"3b9c2c":{"lock":false,"pos":{"x":58.3838500976563,"y":1.30740904808044,"z":83.1903762817383},"rot":{"x":0.0208082757890224,"y":269.999450683594,"z":0.0167706254869699}},"3c5099":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29375553131104,"z":62.5607719421387},"rot":{"x":0.020811203867197,"y":269.990539550781,"z":0.0167677570134401}},"3d6f47":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29846823215485,"z":78.6607208251953},"rot":{"x":0.0208084341138601,"y":270.000122070313,"z":0.0167712587863207}},"3f0c57":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0598754882813},"rot":{"x":0.0208078045397997,"y":270.000061035156,"z":0.0167713537812233}},"4ee663":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.020808506757021,"y":270.000061035156,"z":0.0167713165283203}},"52f66c":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208084508776665,"y":270.000030517578,"z":0.0167712140828371}},"560b32":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.020808694884181,"y":270.000030517578,"z":0.0167711973190308}},"5e0769":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705882072449,"z":69.4486846923828},"rot":{"x":0.0208086371421814,"y":270.000061035156,"z":0.0167712420225143}},"65a64f":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208084713667631,"y":270,"z":0.0167713221162558}},"6743e2":{"lock":false,"pos":{"x":40.9634399414063,"y":1.29369390010834,"z":57.9487953186035},"rot":{"x":0.02080855704844,"y":270.000366210938,"z":0.0167711358517408}},"6d5337":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208083000034094,"y":270.000335693359,"z":0.0167712271213531}},"70406e":{"lock":false,"pos":{"x":53.2285766601563,"y":1.3075715303421,"z":90.141471862793},"rot":{"x":0.0208083111792803,"y":270.000366210938,"z":0.0167713407427073}},"73172c":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607269287109},"rot":{"x":0.0208083800971508,"y":270.000030517578,"z":0.0167711563408375}},"7833aa":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30622506141663,"z":85.5414810180664},"rot":{"x":0.0208083316683769,"y":270.000518798828,"z":0.0167712830007076}},"7973c0":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29773211479187,"z":71.7486877441406},"rot":{"x":0.0208083689212799,"y":270.00048828125,"z":0.0167713314294815}},"7b6e14":{"lock":false,"pos":{"x":53.228630065918,"y":1.29680037498474,"z":53.3435668945313},"rot":{"x":0.0209661405533552,"y":269.458129882813,"z":0.0165735185146332}},"7d0ada":{"lock":false,"pos":{"x":37.4159698486328,"y":1.29442870616913,"z":64.8606796264648},"rot":{"x":0.0208084285259247,"y":270.000122070313,"z":0.0167712979018688}},"7dfe08":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244481563568,"z":87.8487014770508},"rot":{"x":0.0208083745092154,"y":270.000030517578,"z":0.0167712084949017}},"8595fb":{"lock":false,"pos":{"x":37.4159927368164,"y":1.30250763893127,"z":92.4607315063477},"rot":{"x":0.0208113249391317,"y":269.990417480469,"z":0.0167678520083427}},"889177":{"lock":false,"pos":{"x":37.4159851074219,"y":1.3011611700058,"z":87.8607330322266},"rot":{"x":0.0208081491291523,"y":270.001159667969,"z":0.0167716294527054}},"922850":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208174008876085,"y":269.969604492188,"z":0.0167601108551025}},"92890f":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712176322937,"z":74.0607223510742},"rot":{"x":0.0208083279430866,"y":270.000518798828,"z":0.016771350055933}},"94abd7":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30555176734924,"z":83.2414474487305},"rot":{"x":0.0208085980266333,"y":270.000274658203,"z":0.0167713034898043}},"9902a8":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30183446407318,"z":90.1607437133789},"rot":{"x":0.0208082515746355,"y":270.000518798828,"z":0.0167714580893517}},"9bfe76":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29510200023651,"z":67.1606903076172},"rot":{"x":0.020808007568121,"y":270.000061035156,"z":0.0167708769440651}},"a5c1cd":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30379140377045,"z":92.4488830566406},"rot":{"x":0.0208085775375366,"y":270.000122070313,"z":0.0167712010443211}},"a614de":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208112467080355,"y":269.990447998047,"z":0.0167678035795689}},"adde8d":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30353200435638,"z":76.3412246704102},"rot":{"x":0.0208081919699907,"y":269.999389648438,"z":0.0167706999927759}},"af84e6":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30042505264282,"z":80.9486923217773},"rot":{"x":0.0208095870912075,"y":269.995544433594,"z":0.0167680289596319}},"b3debc":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607238769531},"rot":{"x":0.0208085477352142,"y":270.000030517578,"z":0.0167712029069662}},"b57f33":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208085794001818,"y":270.000183105469,"z":0.0167712457478046}},"b73951":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208084173500538,"y":270,"z":0.0167713034898043}},"ba1c85":{"lock":false,"pos":{"x":58.3838539123535,"y":1.30808234214783,"z":85.4903793334961},"rot":{"x":0.020816732198,"y":269.971832275391,"z":0.0167609956115484}},"bc0fb2":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208084154874086,"y":270.000244140625,"z":0.0167712923139334}},"bc5a8d":{"lock":false,"pos":{"x":40.9601936340332,"y":1.2957124710083,"z":64.848876953125},"rot":{"x":0.0208088587969542,"y":270.000335693359,"z":0.0167714487761259}},"bf4815":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30218553543091,"z":71.7412185668945},"rot":{"x":0.020808607339859,"y":270.000091552734,"z":0.016771050170064}},"c03b59":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208085346966982,"y":270.000213623047,"z":0.016771225258708}},"cc7761":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208084918558598,"y":270.000274658203,"z":0.0167712662369013}},"d1c417":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30042517185211,"z":80.9488067626953},"rot":{"x":0.0208072233945131,"y":269.999969482422,"z":0.0167714934796095}},"d287bc":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30177164077759,"z":85.5487060546875},"rot":{"x":0.0208111219108105,"y":269.990661621094,"z":0.0167677644640207}},"d5bad4":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208083745092154,"y":270,"z":0.0167711582034826}},"d6c44a":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29907858371735,"z":76.3486862182617},"rot":{"x":0.0208112467080355,"y":269.990600585938,"z":0.0167677626013756}},"d83a35":{"lock":false,"pos":{"x":53.2285804748535,"y":1.30487859249115,"z":80.9414367675781},"rot":{"x":0.0208082851022482,"y":270.000335693359,"z":0.016771262511611}},"d950d8":{"lock":false,"pos":{"x":37.4159774780273,"y":1.2957751750946,"z":69.4607162475586},"rot":{"x":0.0208083596080542,"y":270.000518798828,"z":0.0167713034898043}},"dbb0e0":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.0208114311099052,"y":269.990356445313,"z":0.016767755150795}},"dff559":{"lock":false,"pos":{"x":53.230598449707,"y":1.29814660549164,"z":57.9409141540527},"rot":{"x":0.0208087917417288,"y":270.000122070313,"z":0.0167707074433565}},"e13107":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779493808746,"z":76.3607177734375},"rot":{"x":0.0208083428442478,"y":270.000518798828,"z":0.0167714562267065}},"e4f8ba":{"lock":false,"pos":{"x":49.5785140991211,"y":1.30691921710968,"z":92.4415512084961},"rot":{"x":0.0208084546029568,"y":270,"z":0.0167712643742561}},"e5d521":{"lock":false,"pos":{"x":37.4159698486328,"y":1.29510200023651,"z":67.1606826782227},"rot":{"x":0.0208087600767612,"y":270.000061035156,"z":0.0167712401598692}},"e69708":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379128456116,"z":92.4486923217773},"rot":{"x":0.0208112951368093,"y":269.990142822266,"z":0.0167676638811827}},"e7f376":{"lock":false,"pos":{"x":58.3838577270508,"y":1.3094288110733,"z":90.0903930664063},"rot":{"x":0.0208188500255346,"y":269.96484375,"z":0.0167583711445332}},"e957df":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3082447052002,"z":92.4413375854492},"rot":{"x":0.0208086259663105,"y":270.000030517578,"z":0.0167711619287729}},"eac7ac":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30177164077759,"z":85.5487518310547},"rot":{"x":0.0208083540201187,"y":269.999938964844,"z":0.0167701616883278}},"f475ca":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607192993164},"rot":{"x":0.0208086092025042,"y":270.000061035156,"z":0.0167711228132248}},"f6b017":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949247837067,"z":62.5411834716797},"rot":{"x":0.0208085495978594,"y":270,"z":0.0167710762470961}},"f8e2fb":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151224136353,"z":69.4412155151367},"rot":{"x":0.020808381959796,"y":270.000183105469,"z":0.016771087422967}},"fb48a9":{"lock":false,"pos":{"x":58.3838386535645,"y":1.31010210514069,"z":92.3903656005859},"rot":{"x":0.0208169687539339,"y":269.971313476563,"z":0.0167608167976141}},"ff2776":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30420517921448,"z":78.641227722168},"rot":{"x":0.020811440423131,"y":269.990325927734,"z":0.0167677495628595}}}}' +LuaScriptState: '{"ml":{"00ade1":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208089146763086,"y":269.999237060547,"z":0.0167710985988379}},"010509":{"lock":false,"pos":{"x":53.2284660339355,"y":1.2974728345871,"z":55.641185760498},"rot":{"x":0.0208114627748728,"y":269.990295410156,"z":0.0167677570134401}},"013446":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30285882949829,"z":74.0412216186523},"rot":{"x":0.0208111777901649,"y":269.99072265625,"z":0.0167678743600845}},"03bb19":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208170730620623,"y":269.971069335938,"z":0.0167604517191648}},"05125c":{"lock":false,"pos":{"x":37.4159965515137,"y":1.30250763893127,"z":92.4607315063477},"rot":{"x":0.0208078976720572,"y":269.999938964844,"z":0.0167709328234196}},"05660e":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30355060100555,"z":80.9527740478516},"rot":{"x":0.0208085905760527,"y":269.999938964844,"z":0.0167712699621916}},"070246":{"lock":false,"pos":{"x":53.2204895019531,"y":1.30017030239105,"z":64.8664398193359},"rot":{"x":0.0209635645151138,"y":269.467224121094,"z":0.0165769252926111}},"088c27":{"lock":false,"pos":{"x":53.2046852111816,"y":1.29612827301025,"z":51.0772857666016},"rot":{"x":0.0209585633128881,"y":269.485229492188,"z":0.0165835153311491}},"0a4d22":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208115633577108,"y":269.990875244141,"z":0.0167674757540226}},"0abaf8":{"lock":false,"pos":{"x":40.9603080749512,"y":1.29638135433197,"z":67.1338729858398},"rot":{"x":0.0208081174641848,"y":270.001770019531,"z":0.0167716667056084}},"0d29be":{"lock":false,"pos":{"x":53.228588104248,"y":1.30622506141663,"z":85.5412445068359},"rot":{"x":0.020949499681592,"y":269.515899658203,"z":0.0165947545319796}},"1753a8":{"lock":false,"pos":{"x":53.2277336120605,"y":1.30420529842377,"z":78.6426696777344},"rot":{"x":0.0208094753324986,"y":269.952514648438,"z":0.0167681593447924}},"176d57":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30109846591949,"z":83.2488479614258},"rot":{"x":0.020808594301343,"y":270.000030517578,"z":0.0167710836976767}},"178794":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30353188514709,"z":76.3414459228516},"rot":{"x":0.0208091642707586,"y":269.999633789063,"z":0.0167708769440651}},"1c353d":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29571235179901,"z":64.8486557006836},"rot":{"x":0.0208086147904396,"y":270,"z":0.0167713183909655}},"2239d4":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208092052489519,"y":270.000183105469,"z":0.0167716555297375}},"244e5d":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30875563621521,"z":87.7903671264648},"rot":{"x":0.0208189226686955,"y":269.964630126953,"z":0.0167582873255014}},"27258f":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208087135106325,"y":269.999328613281,"z":0.0167710948735476}},"338973":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30083978176117,"z":67.1435165405273},"rot":{"x":0.0209631063044071,"y":269.468658447266,"z":0.0165774803608656}},"38217d":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30689835548401,"z":87.8414535522461},"rot":{"x":0.0208083894103765,"y":270.000457763672,"z":0.0167712587863207}},"3b9c2c":{"lock":false,"pos":{"x":58.3838500976563,"y":1.30740916728973,"z":83.1903762817383},"rot":{"x":0.0208088159561157,"y":269.999450683594,"z":0.0167710911482573}},"3c5099":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29308223724365,"z":60.2607688903809},"rot":{"x":0.0208115875720978,"y":269.990539550781,"z":0.0167672373354435}},"3d6f47":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208092927932739,"y":270.000061035156,"z":0.0167716797441244}},"3f0c57":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0598754882813},"rot":{"x":0.0208078045397997,"y":270.000061035156,"z":0.0167713537812233}},"4ee663":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.0208085309714079,"y":270.000061035156,"z":0.0167711935937405}},"52f66c":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208084583282471,"y":270.000030517578,"z":0.0167713686823845}},"53d103":{"lock":false,"pos":{"x":40.9602546691895,"y":1.29503774642944,"z":62.5439567565918},"rot":{"x":0.0208096951246262,"y":269.996398925781,"z":0.0167700108140707}},"560b32":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.0208085309714079,"y":270.000030517578,"z":0.0167714171111584}},"5e0769":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208084564656019,"y":270.000061035156,"z":0.0167710464447737}},"65a64f":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7452774047852},"rot":{"x":0.0208086259663105,"y":270,"z":0.0167712587863207}},"6743e2":{"lock":false,"pos":{"x":40.9634399414063,"y":1.29369390010834,"z":57.9487953186035},"rot":{"x":0.02080855704844,"y":270.000366210938,"z":0.0167711358517408}},"6d5337":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881918430328,"z":60.2411842346191},"rot":{"x":0.0208086259663105,"y":270.000335693359,"z":0.0167714841663837}},"70406e":{"lock":false,"pos":{"x":53.2285766601563,"y":1.3075715303421,"z":90.141471862793},"rot":{"x":0.0208083391189575,"y":270.000366210938,"z":0.0167713202536106}},"73172c":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208094585686922,"y":269.999938964844,"z":0.0167716164141893}},"7833aa":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30622506141663,"z":85.5414810180664},"rot":{"x":0.0208083316683769,"y":270.000518798828,"z":0.0167712830007076}},"7973c0":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29773211479187,"z":71.7486877441406},"rot":{"x":0.0208083614706993,"y":270.00048828125,"z":0.0167712196707726}},"7b6e14":{"lock":false,"pos":{"x":53.228630065918,"y":1.29680037498474,"z":53.3435668945313},"rot":{"x":0.0209661237895489,"y":269.458129882813,"z":0.0165737457573414}},"7d0ada":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29375553131104,"z":62.5607681274414},"rot":{"x":0.0208084918558598,"y":270.000091552734,"z":0.0167706683278084}},"7dfe08":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244493484497,"z":87.8487014770508},"rot":{"x":0.0208085477352142,"y":270.000030517578,"z":0.0167712103575468}},"8595fb":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183446407318,"z":90.1607284545898},"rot":{"x":0.0208120103925467,"y":269.990325927734,"z":0.0167681258171797}},"889177":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.0208090450614691,"y":270.001068115234,"z":0.0167719591408968}},"922850":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208177138119936,"y":269.969573974609,"z":0.0167596247047186}},"92890f":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208092294633389,"y":270.000457763672,"z":0.0167714804410934}},"94abd7":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30555188655853,"z":83.2414474487305},"rot":{"x":0.0208084508776665,"y":270.000274658203,"z":0.0167712271213531}},"9902a8":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208091977983713,"y":270.000457763672,"z":0.0167717430740595}},"9bfe76":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29510200023651,"z":67.1606903076172},"rot":{"x":0.020808007568121,"y":270.000061035156,"z":0.0167708769440651}},"a5c1cd":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30379140377045,"z":92.4488830566406},"rot":{"x":0.0208085775375366,"y":270.000122070313,"z":0.0167712010443211}},"a614de":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208115540444851,"y":269.990417480469,"z":0.0167671982198954}},"adde8d":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30353200435638,"z":76.3412246704102},"rot":{"x":0.020808732137084,"y":269.999389648438,"z":0.0167711768299341}},"af84e6":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30042517185211,"z":80.9486923217773},"rot":{"x":0.0208097752183676,"y":269.995544433594,"z":0.0167694855481386}},"b3debc":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29846823215485,"z":78.6607131958008},"rot":{"x":0.0208093021064997,"y":269.999938964844,"z":0.0167715214192867}},"b57f33":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557036399841,"z":87.8527908325195},"rot":{"x":0.0208086408674717,"y":270.000183105469,"z":0.0167713351547718}},"b73951":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208087209612131,"y":270,"z":0.016770688816905}},"ba1c85":{"lock":false,"pos":{"x":58.3838539123535,"y":1.30808246135712,"z":85.4903793334961},"rot":{"x":0.0208169631659985,"y":269.971832275391,"z":0.0167610887438059}},"bc0fb2":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489695072174,"z":85.5527801513672},"rot":{"x":0.0208084564656019,"y":270.000244140625,"z":0.0167711675167084}},"bc5a8d":{"lock":false,"pos":{"x":40.9601936340332,"y":1.2957124710083,"z":64.848876953125},"rot":{"x":0.0208088587969542,"y":270.000335693359,"z":0.0167714487761259}},"bf4815":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3021856546402,"z":71.7412185668945},"rot":{"x":0.0208084601908922,"y":270.000091552734,"z":0.0167710334062576}},"c03b59":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422389507294,"z":83.2527770996094},"rot":{"x":0.0208083055913448,"y":270.000213623047,"z":0.0167712196707726}},"cc7761":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814684391022,"z":57.9409637451172},"rot":{"x":0.0208086352795362,"y":270.000274658203,"z":0.016771113499999}},"d1c417":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30042517185211,"z":80.9488067626953},"rot":{"x":0.0208072233945131,"y":269.999969482422,"z":0.0167714934796095}},"d287bc":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30177164077759,"z":85.5487060546875},"rot":{"x":0.0208111815154552,"y":269.990661621094,"z":0.0167677607387304}},"d5bad4":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208087358623743,"y":270,"z":0.0167706683278084}},"d6c44a":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29907870292664,"z":76.3486862182617},"rot":{"x":0.0208112820982933,"y":269.990600585938,"z":0.0167677719146013}},"d83a35":{"lock":false,"pos":{"x":53.2285804748535,"y":1.30487847328186,"z":80.9414367675781},"rot":{"x":0.0208084881305695,"y":270.000335693359,"z":0.0167712420225143}},"d950d8":{"lock":false,"pos":{"x":37.4159660339355,"y":1.29510200023651,"z":67.1606750488281},"rot":{"x":0.020809156820178,"y":270.000457763672,"z":0.0167718138545752}},"dbb0e0":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208114571869373,"y":269.990356445313,"z":0.0167671535164118}},"dff559":{"lock":false,"pos":{"x":53.230598449707,"y":1.29814660549164,"z":57.9409141540527},"rot":{"x":0.0208087917417288,"y":270.000122070313,"z":0.0167707074433565}},"e13107":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29712176322937,"z":74.0607147216797},"rot":{"x":0.0208091102540493,"y":270.000457763672,"z":0.0167717114090919}},"e4f8ba":{"lock":false,"pos":{"x":49.5785140991211,"y":1.30691921710968,"z":92.4415512084961},"rot":{"x":0.0208086799830198,"y":270,"z":0.0167711228132248}},"e5d521":{"lock":false,"pos":{"x":37.4159660339355,"y":1.29442870616913,"z":64.8606719970703},"rot":{"x":0.0208094995468855,"y":270,"z":0.0167716350406408}},"e69708":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379140377045,"z":92.4486923217773},"rot":{"x":0.020811403170228,"y":269.990142822266,"z":0.0167674291878939}},"e7f376":{"lock":false,"pos":{"x":58.3838577270508,"y":1.30942893028259,"z":90.0903930664063},"rot":{"x":0.0208188742399216,"y":269.96484375,"z":0.0167582537978888}},"e957df":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3082447052002,"z":92.4413375854492},"rot":{"x":0.0208085123449564,"y":270.000030517578,"z":0.0167710185050964}},"eac7ac":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30177164077759,"z":85.5487518310547},"rot":{"x":0.0208083540201187,"y":269.999938964844,"z":0.0167701616883278}},"f475ca":{"lock":false,"pos":{"x":37.4159736633301,"y":1.2957751750946,"z":69.4607086181641},"rot":{"x":0.0208094362169504,"y":270,"z":0.0167716238647699}},"f6b017":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949259757996,"z":62.5411834716797},"rot":{"x":0.0208085123449564,"y":270,"z":0.0167711041867733}},"f8e2fb":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151236057281,"z":69.4412155151367},"rot":{"x":0.0208085831254721,"y":270.000183105469,"z":0.0167711284011602}},"fb48a9":{"lock":false,"pos":{"x":58.3838386535645,"y":1.31010210514069,"z":92.3903656005859},"rot":{"x":0.0208168085664511,"y":269.971313476563,"z":0.0167605876922607}},"ff2776":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30420529842377,"z":78.641227722168},"rot":{"x":0.0208113752305508,"y":269.990325927734,"z":0.0167676098644733}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Arcane Enlightenment e69708.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Arcane Enlightenment e69708.yaml index 55cda7683..e3e8e566b 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Arcane Enlightenment e69708.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Arcane Enlightenment e69708.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553703 +CardID: 555003 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5537': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Celaeno Fragments d287bc.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Celaeno Fragments d287bc.yaml index 9e2f73196..5df03cbb0 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Celaeno Fragments d287bc.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Celaeno Fragments d287bc.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553404 +CardID: 554704 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5534': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptic Grimoire af84e6.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptic Grimoire af84e6.yaml index 428f2f5de..e0eccd688 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptic Grimoire af84e6.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptic Grimoire af84e6.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266316 +CardID: 554616 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptic Writings ff2776.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptic Writings ff2776.yaml index 7e0a10f47..bffce6d70 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptic Writings ff2776.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptic Writings ff2776.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553813 +CardID: 555113 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5538': + '5551': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptographic Cipher 27258f.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptographic Cipher 27258f.yaml index 173b4454d..12c5dbffd 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptographic Cipher 27258f.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Cryptographic Cipher 27258f.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266315 +CardID: 554015 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Deep Knowledge adde8d.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Deep Knowledge adde8d.yaml index eab563085..6632767bf 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Deep Knowledge adde8d.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Deep Knowledge adde8d.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266317 +CardID: 554517 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Disc of Itzamna d6c44a.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Disc of Itzamna d6c44a.yaml index fd51c518a..30be6c661 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Disc of Itzamna d6c44a.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Disc of Itzamna d6c44a.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553505 +CardID: 554805 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5535': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Eldritch Sophist 53d103.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Eldritch Sophist 53d103.yaml new file mode 100644 index 000000000..60700f6c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Eldritch Sophist 53d103.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 53d103 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eldritch Sophist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96 + posY: 1.3 + posZ: 62.54 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Encyclopedia dbb0e0.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Encyclopedia dbb0e0.yaml index bc8669b60..44e834476 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Encyclopedia dbb0e0.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Encyclopedia dbb0e0.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553606 +CardID: 554906 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5536': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 40.96 - posY: 1.3 - posZ: 62.55 + posY: 1.29 + posZ: 60.25 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Feed the Mind a614de.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Feed the Mind a614de.yaml index e9e5fb1c5..aea1f3dc8 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Feed the Mind a614de.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Feed the Mind a614de.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553307 +CardID: 554407 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5533': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 60.25 + posZ: 57.95 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Fieldwork 922850.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Fieldwork 922850.yaml index 671c0c4b8..1dbf3200e 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Fieldwork 922850.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Fieldwork 922850.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 57.95 + posZ: 55.65 rotX: 0.02 rotY: 269.97 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Fingerprint Kit b73951.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Fingerprint Kit b73951.yaml index 717ef90ea..7443f8ce1 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Fingerprint Kit b73951.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Fingerprint Kit b73951.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 55.65 + posZ: 53.35 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Forbidden Tome 0a4d22.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Forbidden Tome 0a4d22.yaml index e2a63abe5..df76f4ded 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Forbidden Tome 0a4d22.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Forbidden Tome 0a4d22.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 53.35 + posZ: 51.06 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Grisly Totem d5bad4.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Grisly Totem d5bad4.yaml index 598cd4931..2facad96e 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Grisly Totem d5bad4.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Grisly Totem d5bad4.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 51.06 + posZ: 48.75 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Hawk-Eye Folding Camera 05125c.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Hawk-Eye Folding Camera 05125c.yaml index b4a62307e..2b5149364 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Hawk-Eye Folding Camera 05125c.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Hawk-Eye Folding Camera 05125c.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.96 - posY: 1.29 - posZ: 48.75 + posX: 37.42 + posY: 1.3 + posZ: 92.46 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Higher Education 8595fb.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Higher Education 8595fb.yaml index 48ae9408a..444af0ee3 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Higher Education 8595fb.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Higher Education 8595fb.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553209 +CardID: 554309 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5532': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 92.46 + posZ: 90.16 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Hyperawareness 9902a8.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Hyperawareness 9902a8.yaml index ee15ab78e..2ad67a748 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Hyperawareness 9902a8.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Hyperawareness 9902a8.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 90.16 + posZ: 87.86 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Laboratory Assistant 889177.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Laboratory Assistant 889177.yaml index a91999da5..d7da0aced 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Laboratory Assistant 889177.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Laboratory Assistant 889177.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 87.86 + posZ: 85.56 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Magnifying Glass 2239d4.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Magnifying Glass 2239d4.yaml index ff2571039..5d67f1f18 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Magnifying Glass 2239d4.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Magnifying Glass 2239d4.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 85.56 + posZ: 83.26 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Medical Texts 73172c.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Medical Texts 73172c.yaml index 13eca143a..910ec0a39 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Medical Texts 73172c.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Medical Texts 73172c.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 83.26 + posZ: 80.96 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Mr. Rook b3debc.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Mr. Rook b3debc.yaml index a54eb80e3..985b81e53 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Mr. Rook b3debc.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Mr. Rook b3debc.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 80.96 + posZ: 78.66 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Occult Invocation 010509.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Occult Invocation 010509.yaml index 3dd1b52b3..21dbd7c76 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Occult Invocation 010509.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Occult Invocation 010509.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 552715 +CardID: 553915 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5527': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Occult Lexicon 3d6f47.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Occult Lexicon 3d6f47.yaml index 30156895b..7112c7085 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Occult Lexicon 3d6f47.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Occult Lexicon 3d6f47.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 78.66 + posZ: 76.36 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Old Book of Lore e13107.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Old Book of Lore e13107.yaml index 412869510..d83c461f5 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Old Book of Lore e13107.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Old Book of Lore e13107.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 76.36 + posZ: 74.06 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Plan of Action 3b9c2c.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Plan of Action 3b9c2c.yaml index b5077d3be..3263cafbc 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Plan of Action 3b9c2c.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Plan of Action 3b9c2c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266318 +CardID: 554118 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Research Librarian 92890f.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Research Librarian 92890f.yaml index 195556dad..8c14dffa3 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Research Librarian 92890f.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Research Librarian 92890f.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 74.06 + posZ: 71.76 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Scroll of Secrets f475ca.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Scroll of Secrets f475ca.yaml index d22f1f775..7217d7858 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Scroll of Secrets f475ca.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Scroll of Secrets f475ca.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 71.76 + posZ: 69.46 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Shrewd Analysis d950d8.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Shrewd Analysis d950d8.yaml index b0526f8f6..7e105b707 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Shrewd Analysis d950d8.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Shrewd Analysis d950d8.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 69.46 + posZ: 67.16 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Strange Solution e5d521.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Strange Solution e5d521.yaml index c3b66a503..53efd66cd 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Strange Solution e5d521.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Strange Solution e5d521.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 37.42 - posY: 1.3 - posZ: 67.16 + posY: 1.29 + posZ: 64.86 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Tooth of Eztli 7d0ada.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Tooth of Eztli 7d0ada.yaml index b4c09226c..cdc3750ce 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Tooth of Eztli 7d0ada.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Tooth of Eztli 7d0ada.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.29 - posZ: 64.86 + posZ: 62.56 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Whitton Greene 3c5099.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Whitton Greene 3c5099.yaml index 87c3a226e..0908851ce 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Whitton Greene 3c5099.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Card Whitton Greene 3c5099.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553111 +CardID: 554211 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5531': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.29 - posZ: 62.56 + posZ: 60.26 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69.yaml deleted file mode 100644 index 12e174ac3..000000000 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69.yaml +++ /dev/null @@ -1,120 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Seeker 79eb69/Card Cryptic Grimoire af84e6.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Plan of Action 3b9c2c.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Deep Knowledge adde8d.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Cryptographic Cipher 27258f.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Shortcut 00ade1.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Occult Invocation 010509.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Extensive Research 013446.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card True Understanding 03bb19.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Hawk-Eye Folding Camera 05125c.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Working a Hunch 05660e.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Knowledge is Power 070246.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Practice Makes Perfect 088c27.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Forbidden Tome 0a4d22.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Burning the Midnight Oil 0d29be.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Charles Ross, Esq. 176d57.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Dream-Enhancing Serum 1c353d.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Magnifying Glass 2239d4.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Eureka! 244e5d.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card I''ve got a plan! 338973.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Barricade 38217d.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Whitton Greene 3c5099.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Occult Lexicon 3d6f47.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Dr. Milian Christopher 4ee663.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Dream Diary 52f66c.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Archaic Glyphs 560b32.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Dr. William T. Maleson 5e0769.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Preposterous Sketches 65a64f.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Mind over Matter 6d5337.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Astounding Revelation 70406e.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Medical Texts 73172c.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Dr. Elli Horowitz 7973c0.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Persuasion 7b6e14.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Tooth of Eztli 7d0ada.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Art Student 7dfe08.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Higher Education 8595fb.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Laboratory Assistant 889177.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Fieldwork 922850.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Research Librarian 92890f.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Connect the Dots 94abd7.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Hyperawareness 9902a8.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Feed the Mind a614de.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Mr. Rook b3debc.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Truth from Fiction b57f33.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Fingerprint Kit b73951.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Inquiring Mind ba1c85.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Unearth the Ancients bc0fb2.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Ghastly Revelation bf4815.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Vantage Point c03b59.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card No Stone Unturned cc7761.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Celaeno Fragments d287bc.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Grisly Totem d5bad4.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Disc of Itzamna d6c44a.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Crack the Case d83a35.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Shrewd Analysis d950d8.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Encyclopedia dbb0e0.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Old Book of Lore e13107.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Seeking Answers e4f8ba.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Strange Solution e5d521.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Arcane Enlightenment e69708.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Deduction e7f376.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Anatomical Diagrams e957df.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Scroll of Secrets f475ca.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Logical Reasoning f6b017.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Guidance f8e2fb.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Curiosity fb48a9.yaml' -- !include 'Custom_Model_Bag Seeker 79eb69/Card Cryptic Writings ff2776.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: '' -DragSelectable: true -GMNotes: '' -GUID: 79eb69 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Seeker 79eb69.ttslua' -LuaScriptState: '{"ml":{"00ade1":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208085924386978,"y":269.999237060547,"z":0.0167709067463875}},"010509":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208112671971321,"y":269.990295410156,"z":0.0167676564306021}},"013446":{"lock":false,"pos":{"x":53.2285575866699,"y":1.302858710289,"z":74.0412216186523},"rot":{"x":0.0208111386746168,"y":269.99072265625,"z":0.0167677849531174}},"03bb19":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208170935511589,"y":269.971069335938,"z":0.016760528087616}},"05125c":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208084899932146,"y":269.999938964844,"z":0.0167710985988379}},"05660e":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30355060100555,"z":80.9527740478516},"rot":{"x":0.0208084490150213,"y":269.999938964844,"z":0.0167711395770311}},"070246":{"lock":false,"pos":{"x":53.2204895019531,"y":1.30017018318176,"z":64.8664398193359},"rot":{"x":0.0209635943174362,"y":269.467224121094,"z":0.0165768787264824}},"088c27":{"lock":false,"pos":{"x":53.2046852111816,"y":1.29612815380096,"z":51.0772857666016},"rot":{"x":0.0209583323448896,"y":269.485229492188,"z":0.0165835320949554}},"0a4d22":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208112336695194,"y":269.990905761719,"z":0.0167678166180849}},"0abaf8":{"lock":false,"pos":{"x":40.9603080749512,"y":1.29638135433197,"z":67.1338729858398},"rot":{"x":0.0208081174641848,"y":270.001770019531,"z":0.0167716667056084}},"0d29be":{"lock":false,"pos":{"x":53.228588104248,"y":1.30622494220734,"z":85.5412445068359},"rot":{"x":0.0209494065493345,"y":269.515899658203,"z":0.0165947694331408}},"1753a8":{"lock":false,"pos":{"x":53.2277336120605,"y":1.30420529842377,"z":78.6426696777344},"rot":{"x":0.0208094753324986,"y":269.952514648438,"z":0.0167681593447924}},"176d57":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30109834671021,"z":83.2488479614258},"rot":{"x":0.0208083558827639,"y":270.000030517578,"z":0.0167711973190308}},"178794":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30353188514709,"z":76.3414459228516},"rot":{"x":0.0208091642707586,"y":269.999633789063,"z":0.0167708769440651}},"1c353d":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29571235179901,"z":64.8486557006836},"rot":{"x":0.0208084043115377,"y":270,"z":0.0167712271213531}},"2239d4":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30048787593842,"z":85.5607299804688},"rot":{"x":0.0208086147904396,"y":270.000274658203,"z":0.0167713277041912}},"244e5d":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30875551700592,"z":87.7903671264648},"rot":{"x":0.0208189114928246,"y":269.964630126953,"z":0.0167584251612425}},"27258f":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208095964044333,"y":269.999359130859,"z":0.0167712904512882}},"338973":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30083966255188,"z":67.1435165405273},"rot":{"x":0.0209633316844702,"y":269.468658447266,"z":0.0165775045752525}},"38217d":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30689823627472,"z":87.8414535522461},"rot":{"x":0.0208084359765053,"y":270.000457763672,"z":0.0167713668197393}},"3b9c2c":{"lock":false,"pos":{"x":58.3838500976563,"y":1.30740904808044,"z":83.1903762817383},"rot":{"x":0.0208082757890224,"y":269.999450683594,"z":0.0167706254869699}},"3c5099":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29375553131104,"z":62.5607719421387},"rot":{"x":0.020811203867197,"y":269.990539550781,"z":0.0167677570134401}},"3d6f47":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29846823215485,"z":78.6607208251953},"rot":{"x":0.0208084341138601,"y":270.000122070313,"z":0.0167712587863207}},"3f0c57":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0598754882813},"rot":{"x":0.0208078045397997,"y":270.000061035156,"z":0.0167713537812233}},"4ee663":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.020808506757021,"y":270.000061035156,"z":0.0167713165283203}},"52f66c":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208084508776665,"y":270.000030517578,"z":0.0167712140828371}},"560b32":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.020808694884181,"y":270.000030517578,"z":0.0167711973190308}},"5e0769":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705882072449,"z":69.4486846923828},"rot":{"x":0.0208086371421814,"y":270.000061035156,"z":0.0167712420225143}},"65a64f":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208084713667631,"y":270,"z":0.0167713221162558}},"6743e2":{"lock":false,"pos":{"x":40.9634399414063,"y":1.29369390010834,"z":57.9487953186035},"rot":{"x":0.02080855704844,"y":270.000366210938,"z":0.0167711358517408}},"6d5337":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881930351257,"z":60.2411842346191},"rot":{"x":0.0208083000034094,"y":270.000335693359,"z":0.0167712271213531}},"70406e":{"lock":false,"pos":{"x":53.2285766601563,"y":1.3075715303421,"z":90.141471862793},"rot":{"x":0.0208083111792803,"y":270.000366210938,"z":0.0167713407427073}},"73172c":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29981470108032,"z":83.2607269287109},"rot":{"x":0.0208083800971508,"y":270.000030517578,"z":0.0167711563408375}},"7833aa":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30622506141663,"z":85.5414810180664},"rot":{"x":0.0208083316683769,"y":270.000518798828,"z":0.0167712830007076}},"7973c0":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29773211479187,"z":71.7486877441406},"rot":{"x":0.0208083689212799,"y":270.00048828125,"z":0.0167713314294815}},"7b6e14":{"lock":false,"pos":{"x":53.228630065918,"y":1.29680037498474,"z":53.3435668945313},"rot":{"x":0.0209661405533552,"y":269.458129882813,"z":0.0165735185146332}},"7d0ada":{"lock":false,"pos":{"x":37.4159698486328,"y":1.29442870616913,"z":64.8606796264648},"rot":{"x":0.0208084285259247,"y":270.000122070313,"z":0.0167712979018688}},"7dfe08":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244481563568,"z":87.8487014770508},"rot":{"x":0.0208083745092154,"y":270.000030517578,"z":0.0167712084949017}},"8595fb":{"lock":false,"pos":{"x":37.4159927368164,"y":1.30250763893127,"z":92.4607315063477},"rot":{"x":0.0208113249391317,"y":269.990417480469,"z":0.0167678520083427}},"889177":{"lock":false,"pos":{"x":37.4159851074219,"y":1.3011611700058,"z":87.8607330322266},"rot":{"x":0.0208081491291523,"y":270.001159667969,"z":0.0167716294527054}},"922850":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208174008876085,"y":269.969604492188,"z":0.0167601108551025}},"92890f":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29712176322937,"z":74.0607223510742},"rot":{"x":0.0208083279430866,"y":270.000518798828,"z":0.016771350055933}},"94abd7":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30555176734924,"z":83.2414474487305},"rot":{"x":0.0208085980266333,"y":270.000274658203,"z":0.0167713034898043}},"9902a8":{"lock":false,"pos":{"x":37.4159851074219,"y":1.30183446407318,"z":90.1607437133789},"rot":{"x":0.0208082515746355,"y":270.000518798828,"z":0.0167714580893517}},"9bfe76":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29510200023651,"z":67.1606903076172},"rot":{"x":0.020808007568121,"y":270.000061035156,"z":0.0167708769440651}},"a5c1cd":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30379140377045,"z":92.4488830566406},"rot":{"x":0.0208085775375366,"y":270.000122070313,"z":0.0167712010443211}},"a614de":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208112467080355,"y":269.990447998047,"z":0.0167678035795689}},"adde8d":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30353200435638,"z":76.3412246704102},"rot":{"x":0.0208081919699907,"y":269.999389648438,"z":0.0167706999927759}},"af84e6":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30042505264282,"z":80.9486923217773},"rot":{"x":0.0208095870912075,"y":269.995544433594,"z":0.0167680289596319}},"b3debc":{"lock":false,"pos":{"x":37.4159851074219,"y":1.29914140701294,"z":80.9607238769531},"rot":{"x":0.0208085477352142,"y":270.000030517578,"z":0.0167712029069662}},"b57f33":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208085794001818,"y":270.000183105469,"z":0.0167712457478046}},"b73951":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208084173500538,"y":270,"z":0.0167713034898043}},"ba1c85":{"lock":false,"pos":{"x":58.3838539123535,"y":1.30808234214783,"z":85.4903793334961},"rot":{"x":0.020816732198,"y":269.971832275391,"z":0.0167609956115484}},"bc0fb2":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208084154874086,"y":270.000244140625,"z":0.0167712923139334}},"bc5a8d":{"lock":false,"pos":{"x":40.9601936340332,"y":1.2957124710083,"z":64.848876953125},"rot":{"x":0.0208088587969542,"y":270.000335693359,"z":0.0167714487761259}},"bf4815":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30218553543091,"z":71.7412185668945},"rot":{"x":0.020808607339859,"y":270.000091552734,"z":0.016771050170064}},"c03b59":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208085346966982,"y":270.000213623047,"z":0.016771225258708}},"cc7761":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208084918558598,"y":270.000274658203,"z":0.0167712662369013}},"d1c417":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30042517185211,"z":80.9488067626953},"rot":{"x":0.0208072233945131,"y":269.999969482422,"z":0.0167714934796095}},"d287bc":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30177164077759,"z":85.5487060546875},"rot":{"x":0.0208111219108105,"y":269.990661621094,"z":0.0167677644640207}},"d5bad4":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208083745092154,"y":270,"z":0.0167711582034826}},"d6c44a":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29907858371735,"z":76.3486862182617},"rot":{"x":0.0208112467080355,"y":269.990600585938,"z":0.0167677626013756}},"d83a35":{"lock":false,"pos":{"x":53.2285804748535,"y":1.30487859249115,"z":80.9414367675781},"rot":{"x":0.0208082851022482,"y":270.000335693359,"z":0.016771262511611}},"d950d8":{"lock":false,"pos":{"x":37.4159774780273,"y":1.2957751750946,"z":69.4607162475586},"rot":{"x":0.0208083596080542,"y":270.000518798828,"z":0.0167713034898043}},"dbb0e0":{"lock":false,"pos":{"x":40.9601783752441,"y":1.29503917694092,"z":62.5487480163574},"rot":{"x":0.0208114311099052,"y":269.990356445313,"z":0.016767755150795}},"dff559":{"lock":false,"pos":{"x":53.230598449707,"y":1.29814660549164,"z":57.9409141540527},"rot":{"x":0.0208087917417288,"y":270.000122070313,"z":0.0167707074433565}},"e13107":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29779493808746,"z":76.3607177734375},"rot":{"x":0.0208083428442478,"y":270.000518798828,"z":0.0167714562267065}},"e4f8ba":{"lock":false,"pos":{"x":49.5785140991211,"y":1.30691921710968,"z":92.4415512084961},"rot":{"x":0.0208084546029568,"y":270,"z":0.0167712643742561}},"e5d521":{"lock":false,"pos":{"x":37.4159698486328,"y":1.29510200023651,"z":67.1606826782227},"rot":{"x":0.0208087600767612,"y":270.000061035156,"z":0.0167712401598692}},"e69708":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379128456116,"z":92.4486923217773},"rot":{"x":0.0208112951368093,"y":269.990142822266,"z":0.0167676638811827}},"e7f376":{"lock":false,"pos":{"x":58.3838577270508,"y":1.3094288110733,"z":90.0903930664063},"rot":{"x":0.0208188500255346,"y":269.96484375,"z":0.0167583711445332}},"e957df":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3082447052002,"z":92.4413375854492},"rot":{"x":0.0208086259663105,"y":270.000030517578,"z":0.0167711619287729}},"eac7ac":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30177164077759,"z":85.5487518310547},"rot":{"x":0.0208083540201187,"y":269.999938964844,"z":0.0167701616883278}},"f475ca":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29644846916199,"z":71.7607192993164},"rot":{"x":0.0208086092025042,"y":270.000061035156,"z":0.0167711228132248}},"f6b017":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949247837067,"z":62.5411834716797},"rot":{"x":0.0208085495978594,"y":270,"z":0.0167710762470961}},"f8e2fb":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151224136353,"z":69.4412155151367},"rot":{"x":0.020808381959796,"y":270.000183105469,"z":0.016771087422967}},"fb48a9":{"lock":false,"pos":{"x":58.3838386535645,"y":1.31010210514069,"z":92.3903656005859},"rot":{"x":0.0208169687539339,"y":269.971313476563,"z":0.0167608167976141}},"ff2776":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30420517921448,"z":78.641227722168},"rot":{"x":0.020811440423131,"y":269.990325927734,"z":0.0167677495628595}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Seeker -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.58 - posY: 1.67 - posZ: 70.51 - rotX: 0.02 - rotY: 270.03 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69.ttslua b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69.ttslua rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea.ttslua diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea.yaml new file mode 100644 index 000000000..b9e67cca4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea.yaml @@ -0,0 +1,121 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker e328ea/Card Eldritch Sophist 53d103.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Shortcut 00ade1.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Occult Invocation 010509.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Extensive Research 013446.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card True Understanding 03bb19.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Hawk-Eye Folding Camera 05125c.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Working a Hunch 05660e.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Knowledge is Power 070246.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Practice Makes Perfect 088c27.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Forbidden Tome 0a4d22.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Burning the Midnight Oil 0d29be.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Charles Ross, Esq. 176d57.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Dream-Enhancing Serum 1c353d.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Magnifying Glass 2239d4.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Eureka! 244e5d.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Cryptographic Cipher 27258f.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card I''ve got a plan! 338973.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Barricade 38217d.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Plan of Action 3b9c2c.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Whitton Greene 3c5099.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Occult Lexicon 3d6f47.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Dr. Milian Christopher 4ee663.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Dream Diary 52f66c.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Archaic Glyphs 560b32.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Dr. William T. Maleson 5e0769.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Preposterous Sketches 65a64f.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Mind over Matter 6d5337.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Astounding Revelation 70406e.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Medical Texts 73172c.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Dr. Elli Horowitz 7973c0.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Persuasion 7b6e14.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Tooth of Eztli 7d0ada.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Art Student 7dfe08.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Higher Education 8595fb.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Laboratory Assistant 889177.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Fieldwork 922850.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Research Librarian 92890f.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Connect the Dots 94abd7.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Hyperawareness 9902a8.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Feed the Mind a614de.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Deep Knowledge adde8d.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Cryptic Grimoire af84e6.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Mr. Rook b3debc.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Truth from Fiction b57f33.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Fingerprint Kit b73951.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Inquiring Mind ba1c85.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Unearth the Ancients bc0fb2.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Ghastly Revelation bf4815.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Vantage Point c03b59.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card No Stone Unturned cc7761.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Celaeno Fragments d287bc.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Grisly Totem d5bad4.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Disc of Itzamna d6c44a.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Crack the Case d83a35.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Shrewd Analysis d950d8.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Encyclopedia dbb0e0.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Old Book of Lore e13107.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Seeking Answers e4f8ba.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Strange Solution e5d521.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Arcane Enlightenment e69708.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Deduction e7f376.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Anatomical Diagrams e957df.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Scroll of Secrets f475ca.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Logical Reasoning f6b017.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Guidance f8e2fb.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Curiosity fb48a9.yaml' +- !include 'Custom_Model_Bag Seeker e328ea/Card Cryptic Writings ff2776.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: '' +DragSelectable: true +GMNotes: '' +GUID: e328ea +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Seeker e328ea.ttslua' +LuaScriptState: '{"ml":{"00ade1":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208089146763086,"y":269.999237060547,"z":0.0167710985988379}},"010509":{"lock":false,"pos":{"x":53.2284660339355,"y":1.2974728345871,"z":55.641185760498},"rot":{"x":0.0208114627748728,"y":269.990295410156,"z":0.0167677570134401}},"013446":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30285882949829,"z":74.0412216186523},"rot":{"x":0.0208111777901649,"y":269.99072265625,"z":0.0167678743600845}},"03bb19":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208170730620623,"y":269.971069335938,"z":0.0167604517191648}},"05125c":{"lock":false,"pos":{"x":37.4159965515137,"y":1.30250763893127,"z":92.4607315063477},"rot":{"x":0.0208078976720572,"y":269.999938964844,"z":0.0167709328234196}},"05660e":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30355060100555,"z":80.9527740478516},"rot":{"x":0.0208085905760527,"y":269.999938964844,"z":0.0167712699621916}},"070246":{"lock":false,"pos":{"x":53.2204895019531,"y":1.30017030239105,"z":64.8664398193359},"rot":{"x":0.0209635645151138,"y":269.467224121094,"z":0.0165769252926111}},"088c27":{"lock":false,"pos":{"x":53.2046852111816,"y":1.29612827301025,"z":51.0772857666016},"rot":{"x":0.0209585633128881,"y":269.485229492188,"z":0.0165835153311491}},"0a4d22":{"lock":false,"pos":{"x":40.9634208679199,"y":1.2916773557663,"z":51.0597610473633},"rot":{"x":0.0208115633577108,"y":269.990875244141,"z":0.0167674757540226}},"0abaf8":{"lock":false,"pos":{"x":40.9603080749512,"y":1.29638135433197,"z":67.1338729858398},"rot":{"x":0.0208081174641848,"y":270.001770019531,"z":0.0167716667056084}},"0d29be":{"lock":false,"pos":{"x":53.228588104248,"y":1.30622506141663,"z":85.5412445068359},"rot":{"x":0.020949499681592,"y":269.515899658203,"z":0.0165947545319796}},"1753a8":{"lock":false,"pos":{"x":53.2277336120605,"y":1.30420529842377,"z":78.6426696777344},"rot":{"x":0.0208094753324986,"y":269.952514648438,"z":0.0167681593447924}},"176d57":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30109846591949,"z":83.2488479614258},"rot":{"x":0.020808594301343,"y":270.000030517578,"z":0.0167710836976767}},"178794":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30353188514709,"z":76.3414459228516},"rot":{"x":0.0208091642707586,"y":269.999633789063,"z":0.0167708769440651}},"1c353d":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29571235179901,"z":64.8486557006836},"rot":{"x":0.0208086147904396,"y":270,"z":0.0167713183909655}},"2239d4":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208092052489519,"y":270.000183105469,"z":0.0167716555297375}},"244e5d":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30875563621521,"z":87.7903671264648},"rot":{"x":0.0208189226686955,"y":269.964630126953,"z":0.0167582873255014}},"27258f":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208087135106325,"y":269.999328613281,"z":0.0167710948735476}},"338973":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30083978176117,"z":67.1435165405273},"rot":{"x":0.0209631063044071,"y":269.468658447266,"z":0.0165774803608656}},"38217d":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30689835548401,"z":87.8414535522461},"rot":{"x":0.0208083894103765,"y":270.000457763672,"z":0.0167712587863207}},"3b9c2c":{"lock":false,"pos":{"x":58.3838500976563,"y":1.30740916728973,"z":83.1903762817383},"rot":{"x":0.0208088159561157,"y":269.999450683594,"z":0.0167710911482573}},"3c5099":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29308223724365,"z":60.2607688903809},"rot":{"x":0.0208115875720978,"y":269.990539550781,"z":0.0167672373354435}},"3d6f47":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208092927932739,"y":270.000061035156,"z":0.0167716797441244}},"3f0c57":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0598754882813},"rot":{"x":0.0208078045397997,"y":270.000061035156,"z":0.0167713537812233}},"4ee663":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29840540885925,"z":74.0486907958984},"rot":{"x":0.0208085309714079,"y":270.000061035156,"z":0.0167711935937405}},"52f66c":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29638564586639,"z":67.148681640625},"rot":{"x":0.0208084583282471,"y":270.000030517578,"z":0.0167713686823845}},"53d103":{"lock":false,"pos":{"x":40.9602546691895,"y":1.29503774642944,"z":62.5439567565918},"rot":{"x":0.0208096951246262,"y":269.996398925781,"z":0.0167700108140707}},"560b32":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.0208085309714079,"y":270.000030517578,"z":0.0167714171111584}},"5e0769":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208084564656019,"y":270.000061035156,"z":0.0167710464447737}},"65a64f":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7452774047852},"rot":{"x":0.0208086259663105,"y":270,"z":0.0167712587863207}},"6743e2":{"lock":false,"pos":{"x":40.9634399414063,"y":1.29369390010834,"z":57.9487953186035},"rot":{"x":0.02080855704844,"y":270.000366210938,"z":0.0167711358517408}},"6d5337":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29881918430328,"z":60.2411842346191},"rot":{"x":0.0208086259663105,"y":270.000335693359,"z":0.0167714841663837}},"70406e":{"lock":false,"pos":{"x":53.2285766601563,"y":1.3075715303421,"z":90.141471862793},"rot":{"x":0.0208083391189575,"y":270.000366210938,"z":0.0167713202536106}},"73172c":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208094585686922,"y":269.999938964844,"z":0.0167716164141893}},"7833aa":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30622506141663,"z":85.5414810180664},"rot":{"x":0.0208083316683769,"y":270.000518798828,"z":0.0167712830007076}},"7973c0":{"lock":false,"pos":{"x":40.9602088928223,"y":1.29773211479187,"z":71.7486877441406},"rot":{"x":0.0208083614706993,"y":270.00048828125,"z":0.0167712196707726}},"7b6e14":{"lock":false,"pos":{"x":53.228630065918,"y":1.29680037498474,"z":53.3435668945313},"rot":{"x":0.0209661237895489,"y":269.458129882813,"z":0.0165737457573414}},"7d0ada":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29375553131104,"z":62.5607681274414},"rot":{"x":0.0208084918558598,"y":270.000091552734,"z":0.0167706683278084}},"7dfe08":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244493484497,"z":87.8487014770508},"rot":{"x":0.0208085477352142,"y":270.000030517578,"z":0.0167712103575468}},"8595fb":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183446407318,"z":90.1607284545898},"rot":{"x":0.0208120103925467,"y":269.990325927734,"z":0.0167681258171797}},"889177":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.0208090450614691,"y":270.001068115234,"z":0.0167719591408968}},"922850":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29302072525024,"z":55.6492195129395},"rot":{"x":0.0208177138119936,"y":269.969573974609,"z":0.0167596247047186}},"92890f":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29644846916199,"z":71.7607116699219},"rot":{"x":0.0208092294633389,"y":270.000457763672,"z":0.0167714804410934}},"94abd7":{"lock":false,"pos":{"x":53.2285842895508,"y":1.30555188655853,"z":83.2414474487305},"rot":{"x":0.0208084508776665,"y":270.000274658203,"z":0.0167712271213531}},"9902a8":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208091977983713,"y":270.000457763672,"z":0.0167717430740595}},"9bfe76":{"lock":false,"pos":{"x":37.4159774780273,"y":1.29510200023651,"z":67.1606903076172},"rot":{"x":0.020808007568121,"y":270.000061035156,"z":0.0167708769440651}},"a5c1cd":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30379140377045,"z":92.4488830566406},"rot":{"x":0.0208085775375366,"y":270.000122070313,"z":0.0167712010443211}},"a614de":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29369378089905,"z":57.9485626220703},"rot":{"x":0.0208115540444851,"y":269.990417480469,"z":0.0167671982198954}},"adde8d":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30353200435638,"z":76.3412246704102},"rot":{"x":0.020808732137084,"y":269.999389648438,"z":0.0167711768299341}},"af84e6":{"lock":false,"pos":{"x":40.9602127075195,"y":1.30042517185211,"z":80.9486923217773},"rot":{"x":0.0208097752183676,"y":269.995544433594,"z":0.0167694855481386}},"b3debc":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29846823215485,"z":78.6607131958008},"rot":{"x":0.0208093021064997,"y":269.999938964844,"z":0.0167715214192867}},"b57f33":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557036399841,"z":87.8527908325195},"rot":{"x":0.0208086408674717,"y":270.000183105469,"z":0.0167713351547718}},"b73951":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29234755039215,"z":53.3492164611816},"rot":{"x":0.0208087209612131,"y":270,"z":0.016770688816905}},"ba1c85":{"lock":false,"pos":{"x":58.3838539123535,"y":1.30808246135712,"z":85.4903793334961},"rot":{"x":0.0208169631659985,"y":269.971832275391,"z":0.0167610887438059}},"bc0fb2":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489695072174,"z":85.5527801513672},"rot":{"x":0.0208084564656019,"y":270.000244140625,"z":0.0167711675167084}},"bc5a8d":{"lock":false,"pos":{"x":40.9601936340332,"y":1.2957124710083,"z":64.848876953125},"rot":{"x":0.0208088587969542,"y":270.000335693359,"z":0.0167714487761259}},"bf4815":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3021856546402,"z":71.7412185668945},"rot":{"x":0.0208084601908922,"y":270.000091552734,"z":0.0167710334062576}},"c03b59":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422389507294,"z":83.2527770996094},"rot":{"x":0.0208083055913448,"y":270.000213623047,"z":0.0167712196707726}},"cc7761":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814684391022,"z":57.9409637451172},"rot":{"x":0.0208086352795362,"y":270.000274658203,"z":0.016771113499999}},"d1c417":{"lock":false,"pos":{"x":40.9602165222168,"y":1.30042517185211,"z":80.9488067626953},"rot":{"x":0.0208072233945131,"y":269.999969482422,"z":0.0167714934796095}},"d287bc":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30177164077759,"z":85.5487060546875},"rot":{"x":0.0208111815154552,"y":269.990661621094,"z":0.0167677607387304}},"d5bad4":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208087358623743,"y":270,"z":0.0167706683278084}},"d6c44a":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29907870292664,"z":76.3486862182617},"rot":{"x":0.0208112820982933,"y":269.990600585938,"z":0.0167677719146013}},"d83a35":{"lock":false,"pos":{"x":53.2285804748535,"y":1.30487847328186,"z":80.9414367675781},"rot":{"x":0.0208084881305695,"y":270.000335693359,"z":0.0167712420225143}},"d950d8":{"lock":false,"pos":{"x":37.4159660339355,"y":1.29510200023651,"z":67.1606750488281},"rot":{"x":0.020809156820178,"y":270.000457763672,"z":0.0167718138545752}},"dbb0e0":{"lock":false,"pos":{"x":40.9603157043457,"y":1.29436600208282,"z":60.2487869262695},"rot":{"x":0.0208114571869373,"y":269.990356445313,"z":0.0167671535164118}},"dff559":{"lock":false,"pos":{"x":53.230598449707,"y":1.29814660549164,"z":57.9409141540527},"rot":{"x":0.0208087917417288,"y":270.000122070313,"z":0.0167707074433565}},"e13107":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29712176322937,"z":74.0607147216797},"rot":{"x":0.0208091102540493,"y":270.000457763672,"z":0.0167717114090919}},"e4f8ba":{"lock":false,"pos":{"x":49.5785140991211,"y":1.30691921710968,"z":92.4415512084961},"rot":{"x":0.0208086799830198,"y":270,"z":0.0167711228132248}},"e5d521":{"lock":false,"pos":{"x":37.4159660339355,"y":1.29442870616913,"z":64.8606719970703},"rot":{"x":0.0208094995468855,"y":270,"z":0.0167716350406408}},"e69708":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379140377045,"z":92.4486923217773},"rot":{"x":0.020811403170228,"y":269.990142822266,"z":0.0167674291878939}},"e7f376":{"lock":false,"pos":{"x":58.3838577270508,"y":1.30942893028259,"z":90.0903930664063},"rot":{"x":0.0208188742399216,"y":269.96484375,"z":0.0167582537978888}},"e957df":{"lock":false,"pos":{"x":53.2285690307617,"y":1.3082447052002,"z":92.4413375854492},"rot":{"x":0.0208085123449564,"y":270.000030517578,"z":0.0167710185050964}},"eac7ac":{"lock":false,"pos":{"x":40.9602203369141,"y":1.30177164077759,"z":85.5487518310547},"rot":{"x":0.0208083540201187,"y":269.999938964844,"z":0.0167701616883278}},"f475ca":{"lock":false,"pos":{"x":37.4159736633301,"y":1.2957751750946,"z":69.4607086181641},"rot":{"x":0.0208094362169504,"y":270,"z":0.0167716238647699}},"f6b017":{"lock":false,"pos":{"x":53.2285537719727,"y":1.29949259757996,"z":62.5411834716797},"rot":{"x":0.0208085123449564,"y":270,"z":0.0167711041867733}},"f8e2fb":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30151236057281,"z":69.4412155151367},"rot":{"x":0.0208085831254721,"y":270.000183105469,"z":0.0167711284011602}},"fb48a9":{"lock":false,"pos":{"x":58.3838386535645,"y":1.31010210514069,"z":92.3903656005859},"rot":{"x":0.0208168085664511,"y":269.971313476563,"z":0.0167605876922607}},"ff2776":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30420529842377,"z":78.641227722168},"rot":{"x":0.0208113752305508,"y":269.990325927734,"z":0.0167676098644733}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.58 + posY: 1.66 + posZ: 70.51 + rotX: 0.02 + rotY: 270.03 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Anatomical Diagrams e957df.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Anatomical Diagrams e957df.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Anatomical Diagrams e957df.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Anatomical Diagrams e957df.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Arcane Enlightenment e69708.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Arcane Enlightenment e69708.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Arcane Enlightenment e69708.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Arcane Enlightenment e69708.yaml index 2ea0af427..ea35db691 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Arcane Enlightenment e69708.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Arcane Enlightenment e69708.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553703 +CardID: 555003 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5537': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Archaic Glyphs 560b32.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Archaic Glyphs 560b32.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Archaic Glyphs 560b32.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Archaic Glyphs 560b32.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Art Student 7dfe08.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Art Student 7dfe08.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Art Student 7dfe08.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Art Student 7dfe08.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Astounding Revelation 70406e.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Astounding Revelation 70406e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Astounding Revelation 70406e.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Astounding Revelation 70406e.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Barricade 38217d.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Barricade 38217d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Barricade 38217d.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Barricade 38217d.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Burning the Midnight Oil 0d29be.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Burning the Midnight Oil 0d29be.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Burning the Midnight Oil 0d29be.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Burning the Midnight Oil 0d29be.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Celaeno Fragments d287bc.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Celaeno Fragments d287bc.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Celaeno Fragments d287bc.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Celaeno Fragments d287bc.yaml index a919f2265..fbfacb793 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Celaeno Fragments d287bc.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Celaeno Fragments d287bc.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553404 +CardID: 554704 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5534': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Charles Ross, Esq. 176d57.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Charles Ross, Esq. 176d57.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Charles Ross, Esq. 176d57.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Charles Ross, Esq. 176d57.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Connect the Dots 94abd7.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Connect the Dots 94abd7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Connect the Dots 94abd7.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Connect the Dots 94abd7.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Crack the Case d83a35.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Crack the Case d83a35.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Crack the Case d83a35.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Crack the Case d83a35.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptic Grimoire af84e6.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptic Grimoire af84e6.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptic Grimoire af84e6.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptic Grimoire af84e6.yaml index f94d38377..26796d3c3 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptic Grimoire af84e6.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptic Grimoire af84e6.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266316 +CardID: 554616 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptic Writings ff2776.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptic Writings ff2776.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptic Writings ff2776.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptic Writings ff2776.yaml index 155682bda..be65e2e73 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptic Writings ff2776.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptic Writings ff2776.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553813 +CardID: 555113 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5538': + '5551': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptographic Cipher 27258f.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptographic Cipher 27258f.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptographic Cipher 27258f.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptographic Cipher 27258f.yaml index 5f04d0705..b6bbd95cb 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Cryptographic Cipher 27258f.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Cryptographic Cipher 27258f.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266315 +CardID: 554015 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Curiosity fb48a9.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Curiosity fb48a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Curiosity fb48a9.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Curiosity fb48a9.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Deduction e7f376.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Deduction e7f376.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Deduction e7f376.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Deduction e7f376.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Deep Knowledge adde8d.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Deep Knowledge adde8d.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Deep Knowledge adde8d.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Deep Knowledge adde8d.yaml index 6178311fb..d82c8122c 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Deep Knowledge adde8d.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Deep Knowledge adde8d.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266317 +CardID: 554517 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Disc of Itzamna d6c44a.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Disc of Itzamna d6c44a.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Disc of Itzamna d6c44a.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Disc of Itzamna d6c44a.yaml index 409c7a71d..0944ee6e9 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Disc of Itzamna d6c44a.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Disc of Itzamna d6c44a.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553505 +CardID: 554805 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5535': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dr. Elli Horowitz 7973c0.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dr. Elli Horowitz 7973c0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dr. Elli Horowitz 7973c0.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dr. Elli Horowitz 7973c0.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dr. Milian Christopher 4ee663.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dr. Milian Christopher 4ee663.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dr. Milian Christopher 4ee663.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dr. Milian Christopher 4ee663.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dr. William T. Maleson 5e0769.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dr. William T. Maleson 5e0769.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dr. William T. Maleson 5e0769.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dr. William T. Maleson 5e0769.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dream Diary 52f66c.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dream Diary 52f66c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dream Diary 52f66c.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dream Diary 52f66c.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dream-Enhancing Serum 1c353d.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dream-Enhancing Serum 1c353d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Dream-Enhancing Serum 1c353d.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Dream-Enhancing Serum 1c353d.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Eldritch Sophist 53d103.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Eldritch Sophist 53d103.yaml new file mode 100644 index 000000000..a741d6762 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Eldritch Sophist 53d103.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 53d103 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eldritch Sophist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.58 + posY: 1.41 + posZ: 70.51 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Encyclopedia dbb0e0.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Encyclopedia dbb0e0.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Encyclopedia dbb0e0.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Encyclopedia dbb0e0.yaml index 5c35c9af6..6801e3fbd 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Encyclopedia dbb0e0.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Encyclopedia dbb0e0.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553606 +CardID: 554906 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5536': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Eureka! 244e5d.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Eureka! 244e5d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Eureka! 244e5d.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Eureka! 244e5d.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Extensive Research 013446.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Extensive Research 013446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Extensive Research 013446.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Extensive Research 013446.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Feed the Mind a614de.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Feed the Mind a614de.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Feed the Mind a614de.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Feed the Mind a614de.yaml index 62f74aaaf..b8e31cdaa 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Feed the Mind a614de.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Feed the Mind a614de.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553307 +CardID: 554407 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5533': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Fieldwork 922850.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Fieldwork 922850.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Fieldwork 922850.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Fieldwork 922850.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Fingerprint Kit b73951.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Fingerprint Kit b73951.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Fingerprint Kit b73951.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Fingerprint Kit b73951.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Forbidden Tome 0a4d22.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Forbidden Tome 0a4d22.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Forbidden Tome 0a4d22.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Forbidden Tome 0a4d22.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Ghastly Revelation bf4815.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Ghastly Revelation bf4815.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Ghastly Revelation bf4815.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Ghastly Revelation bf4815.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Grisly Totem d5bad4.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Grisly Totem d5bad4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Grisly Totem d5bad4.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Grisly Totem d5bad4.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Guidance f8e2fb.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Guidance f8e2fb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Guidance f8e2fb.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Guidance f8e2fb.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Hawk-Eye Folding Camera 05125c.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Hawk-Eye Folding Camera 05125c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Hawk-Eye Folding Camera 05125c.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Hawk-Eye Folding Camera 05125c.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Higher Education 8595fb.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Higher Education 8595fb.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Higher Education 8595fb.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Higher Education 8595fb.yaml index a0596fa1d..573c88545 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Higher Education 8595fb.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Higher Education 8595fb.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553209 +CardID: 554309 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5532': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Hyperawareness 9902a8.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Hyperawareness 9902a8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Hyperawareness 9902a8.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Hyperawareness 9902a8.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card I've got a plan! 338973.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card I've got a plan! 338973.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card I've got a plan! 338973.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card I've got a plan! 338973.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Inquiring Mind ba1c85.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Inquiring Mind ba1c85.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Inquiring Mind ba1c85.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Inquiring Mind ba1c85.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Knowledge is Power 070246.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Knowledge is Power 070246.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Knowledge is Power 070246.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Knowledge is Power 070246.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Laboratory Assistant 889177.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Laboratory Assistant 889177.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Laboratory Assistant 889177.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Laboratory Assistant 889177.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Logical Reasoning f6b017.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Logical Reasoning f6b017.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Logical Reasoning f6b017.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Logical Reasoning f6b017.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Magnifying Glass 2239d4.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Magnifying Glass 2239d4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Magnifying Glass 2239d4.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Magnifying Glass 2239d4.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Medical Texts 73172c.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Medical Texts 73172c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Medical Texts 73172c.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Medical Texts 73172c.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Mind over Matter 6d5337.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Mind over Matter 6d5337.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Mind over Matter 6d5337.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Mind over Matter 6d5337.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Mr. Rook b3debc.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Mr. Rook b3debc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Mr. Rook b3debc.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Mr. Rook b3debc.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card No Stone Unturned cc7761.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card No Stone Unturned cc7761.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card No Stone Unturned cc7761.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card No Stone Unturned cc7761.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Occult Invocation 010509.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Occult Invocation 010509.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Occult Invocation 010509.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Occult Invocation 010509.yaml index cbbdecd4d..cb74a2a5e 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Occult Invocation 010509.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Occult Invocation 010509.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 552715 +CardID: 553915 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5527': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Occult Lexicon 3d6f47.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Occult Lexicon 3d6f47.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Occult Lexicon 3d6f47.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Occult Lexicon 3d6f47.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Old Book of Lore e13107.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Old Book of Lore e13107.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Old Book of Lore e13107.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Old Book of Lore e13107.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Persuasion 7b6e14.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Persuasion 7b6e14.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Persuasion 7b6e14.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Persuasion 7b6e14.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Plan of Action 3b9c2c.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Plan of Action 3b9c2c.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Plan of Action 3b9c2c.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Plan of Action 3b9c2c.yaml index 2130606dd..45f9b90d9 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Plan of Action 3b9c2c.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Plan of Action 3b9c2c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266318 +CardID: 554118 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Practice Makes Perfect 088c27.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Practice Makes Perfect 088c27.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Practice Makes Perfect 088c27.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Practice Makes Perfect 088c27.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Preposterous Sketches 65a64f.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Preposterous Sketches 65a64f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Preposterous Sketches 65a64f.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Preposterous Sketches 65a64f.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Research Librarian 92890f.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Research Librarian 92890f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Research Librarian 92890f.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Research Librarian 92890f.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Scroll of Secrets f475ca.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Scroll of Secrets f475ca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Scroll of Secrets f475ca.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Scroll of Secrets f475ca.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Seeking Answers e4f8ba.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Seeking Answers e4f8ba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Seeking Answers e4f8ba.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Seeking Answers e4f8ba.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Shortcut 00ade1.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Shortcut 00ade1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Shortcut 00ade1.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Shortcut 00ade1.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Shrewd Analysis d950d8.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Shrewd Analysis d950d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Shrewd Analysis d950d8.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Shrewd Analysis d950d8.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Strange Solution e5d521.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Strange Solution e5d521.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Strange Solution e5d521.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Strange Solution e5d521.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Tooth of Eztli 7d0ada.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Tooth of Eztli 7d0ada.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Tooth of Eztli 7d0ada.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Tooth of Eztli 7d0ada.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card True Understanding 03bb19.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card True Understanding 03bb19.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card True Understanding 03bb19.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card True Understanding 03bb19.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Truth from Fiction b57f33.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Truth from Fiction b57f33.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Truth from Fiction b57f33.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Truth from Fiction b57f33.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Unearth the Ancients bc0fb2.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Unearth the Ancients bc0fb2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Unearth the Ancients bc0fb2.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Unearth the Ancients bc0fb2.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Vantage Point c03b59.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Vantage Point c03b59.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Vantage Point c03b59.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Vantage Point c03b59.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Whitton Greene 3c5099.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Whitton Greene 3c5099.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Whitton Greene 3c5099.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Whitton Greene 3c5099.yaml index 728190558..083948794 100644 --- a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Whitton Greene 3c5099.yaml +++ b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Whitton Greene 3c5099.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553111 +CardID: 554211 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5531': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Working a Hunch 05660e.yaml b/unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Working a Hunch 05660e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker 79eb69/Card Working a Hunch 05660e.yaml rename to unpacked/Custom_Model_Bag Seeker 1e7fc5/Custom_Model_Bag Seeker e328ea/Card Working a Hunch 05660e.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb.yaml index dd295ad9e..0859aa622 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb.yaml @@ -4,30 +4,23 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Deck Forbidden Tome (3) 367e5c.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card I''ve got a plan! (2) 344e90.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card The Necronomicon (5) 96ba38.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Miskatonic Archaeology Funding (4) - 1a1b58.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Esoteric Atlas (2) 2172e2.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Whitton Greene (2) 854c79.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Farsight (4) b4121c.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Perception (2) 96b5ed.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Mind Over Matter (2) 9b1c5b.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Library Docent (1) fab3a9.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Seeking Answers (2) c1365d.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Writings (2) 870bdc.yaml' -- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (1) 6e4d54.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Blasphemous Covenant (2) 86d109.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Stirring Up Trouble (1) e99f0d.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Higher Education (3) 0d3413.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Surprising Find (1) 0d3d1a.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Old Book of Lore (3) 0d88ac.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Disc of Itzamna (2) 117137.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Preposterous Sketches (2) 15a1bb.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Miskatonic Archaeology Funding (4) + 1a1b58.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Esoteric Atlas (2) 2172e2.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Deck Archaic Glyphs (3) 22c4b1.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Quick Study (2) 26d70e.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Pnakotic Manuscripts (5) 300569.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card I''ve got a plan! (2) 344e90.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Barricade (3) 3469e0.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Deck Forbidden Tome (3) 367e5c.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Studious (3) 384258.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Shortcut (2) 404410.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Eidetic Memory (3) 423ea2.yaml' @@ -39,21 +32,29 @@ ContainedObjects: - !include 'Custom_Model_Bag Seeker 5ec2fb/Deck Dream Diary (3) 6465d8.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Feed the Mind (3) 659f2d.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Pathfinder (1) 683123.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (1) 6e4d54.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Logical Reasoning (4) 6f6976.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Arcane Insight (4) 6fab5a.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Research (4) 791d5f.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Deck Ancient Stone (4) 7b5a65.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Magnifying Glass (1) 8343e5.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Whitton Greene (2) 854c79.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Writings (2) 870bdc.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Ancient Stone (1) 8b1863.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Scientific Theory (1) 8cdfc7.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Perception (2) 96b5ed.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card The Necronomicon (5) 96ba38.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Expose Weakness (1) 97ed44.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Mind Over Matter (2) 9b1c5b.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card No Stone Unturned (5) a641de.yaml' - !include "Custom_Model_Bag Seeker 5ec2fb/Card Death \u2022 XIII (1) add7c9.yaml" +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Farsight (4) b4121c.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Abigail Foreman (4) b63277.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Grisly Totem (3) b722cd.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Deciphered Reality (5) b98ff6.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Segment of Onyx (1) bc498d.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (5) bdbca5.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Seeking Answers (2) c1365d.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Scroll of Secrets (3) cffeb0.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Expose Weakness (3) d391c7.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Encyclopedia (2) d86b0d.yaml' @@ -62,6 +63,7 @@ ContainedObjects: - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Hyperawareness (2) e4ceae.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Esoteric Atlas (1) e50ca0.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Forewarned (1) f22453.yaml' +- !include 'Custom_Model_Bag Seeker 5ec2fb/Card Library Docent (1) fab3a9.yaml' - !include 'Custom_Model_Bag Seeker 5ec2fb/Card Truth from Fiction (2) fd3cda.yaml' CustomMesh: CastShadows: true @@ -91,7 +93,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Seeker 5ec2fb.ttslua' -LuaScriptState: '{"ml":{"037da2":{"lock":false,"pos":{"x":7.0765,"y":1.3194,"z":-77.26},"rot":{"x":0.0208,"y":270.0044,"z":0.0168}},"0d3413":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.008430480957},"rot":{"x":0.0208130404353142,"y":269.984161376953,"z":0.0167653616517782}},"0d3d1a":{"lock":false,"pos":{"x":58.0996589660645,"y":1.31018245220184,"z":-47.4709777832031},"rot":{"x":0.0208098292350769,"y":269.99560546875,"z":0.0167696308344603}},"0d88ac":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084411621094},"rot":{"x":0.0208131857216358,"y":269.984130859375,"z":0.0167654100805521}},"117137":{"lock":false,"pos":{"x":40.2900466918945,"y":1.2976701259613,"z":-68.119873046875},"rot":{"x":0.0208052508533001,"y":270.01171875,"z":0.0167753808200359}},"15a1bb":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30361223220825,"z":-63.5203514099121},"rot":{"x":0.0208081714808941,"y":270.002197265625,"z":0.0167720057070255}},"1a1b58":{"lock":false,"pos":{"x":36.6243629455566,"y":1.2956690788269,"z":-70.4082870483398},"rot":{"x":0.0208052806556225,"y":270.011291503906,"z":0.0167751740664244}},"2172e2":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632365703583,"z":-72.719970703125},"rot":{"x":0.0208050608634949,"y":270.011291503906,"z":0.016775319352746}},"22c4b1":{"lock":false,"pos":{"x":40.2900848388672,"y":1.31405210494995,"z":-86.5199127197266},"rot":{"x":0.020813126116991,"y":269.984924316406,"z":0.0167654789984226}},"26d70e":{"lock":false,"pos":{"x":40.2920875549316,"y":1.29363143444061,"z":-81.9201126098633},"rot":{"x":0.0208039600402117,"y":270.015686035156,"z":0.0167767200618982}},"300569":{"lock":false,"pos":{"x":36.6243629455566,"y":1.29432249069214,"z":-75.0083999633789},"rot":{"x":0.0208085924386978,"y":269.999694824219,"z":0.0167710538953543}},"344e90":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30495870113373,"z":-58.9203453063965},"rot":{"x":0.0208052527159452,"y":270.011291503906,"z":0.0167754273861647}},"3469e0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208078064024448,"y":270.002136230469,"z":0.0167719814926386}},"367e5c":{"lock":false,"pos":{"x":36.6243438720703,"y":1.31935524940491,"z":-47.4084320068359},"rot":{"x":0.0208057425916195,"y":270.011199951172,"z":0.0167762581259012}},"384258":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29903519153595,"z":-58.9084396362305},"rot":{"x":0.0208130870014429,"y":269.983947753906,"z":0.0167654640972614}},"3c0d81":{"lock":false,"pos":{"x":10.6138734817505,"y":1.31733238697052,"z":-88.7451629638672},"rot":{"x":0.0208089593797922,"y":269.999938964844,"z":0.0167716406285763}},"404410":{"lock":false,"pos":{"x":52.944206237793,"y":1.30226576328278,"z":-68.1202087402344},"rot":{"x":0.0208079610019922,"y":270.002258300781,"z":0.0167720168828964}},"423ea2":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30024600028992,"z":-75.0203399658203},"rot":{"x":0.0208085048943758,"y":269.999938964844,"z":0.0167712271213531}},"488fab":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170953273773,"z":-54.3199996948242},"rot":{"x":0.0208087079226971,"y":269.999694824219,"z":0.0167710147798061}},"4a29bd":{"lock":false,"pos":{"x":36.6243438720703,"y":1.32157766819,"z":-72.708381652832},"rot":{"x":0.0208091251552105,"y":269.99951171875,"z":0.016770863905549}},"53eaa9":{"lock":false,"pos":{"x":7.07654333114624,"y":1.32277584075928,"z":-65.7601165771484},"rot":{"x":0.0208094976842403,"y":269.999755859375,"z":0.0167715046554804}},"552689":{"lock":false,"pos":{"x":58.099666595459,"y":1.30816268920898,"z":-54.3709716796875},"rot":{"x":0.020817082375288,"y":269.970977783203,"z":0.0167605578899384}},"562c05":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29430389404297,"z":-79.6198883056641},"rot":{"x":0.0208049807697535,"y":270.011413574219,"z":0.0167751777917147}},"5bdc77":{"lock":false,"pos":{"x":7.07654094696045,"y":1.32210242748261,"z":-68.0601196289063},"rot":{"x":0.020809318870306,"y":269.999877929688,"z":0.0167716238647699}},"5d4212":{"lock":false,"pos":{"x":40.2899627685547,"y":1.29295742511749,"z":-84.2198867797852},"rot":{"x":0.0208051223307848,"y":270.011291503906,"z":0.0167752541601658}},"5f8011":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497718811035,"z":-77.3199081420898},"rot":{"x":0.0208050180226564,"y":270.011505126953,"z":0.0167753007262945}},"6465d8":{"lock":false,"pos":{"x":40.2742652893066,"y":1.3133761882782,"z":-88.8093566894531},"rot":{"x":0.0208180714398623,"y":269.968841552734,"z":0.0167595781385899}},"659f2d":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1157989501953},"rot":{"x":0.0208130795508623,"y":269.984313964844,"z":0.0167654324322939}},"683123":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208087395876646,"y":269.99951171875,"z":0.0167709402740002}},"6e4d54":{"lock":false,"pos":{"x":52.9442253112793,"y":1.3063051700592,"z":-54.3203315734863},"rot":{"x":0.020805362612009,"y":270.011291503906,"z":0.0167753379791975}},"6f6976":{"lock":false,"pos":{"x":52.9462394714355,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208086520433426,"y":270.000061035156,"z":0.0167712830007076}},"6fab5a":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.020808657631278,"y":269.999755859375,"z":0.0167713258415461}},"73255e":{"lock":false,"pos":{"x":36.6243476867676,"y":1.31935524940491,"z":-47.4084320068359},"rot":{"x":0.0208136457949877,"y":269.984313964844,"z":0.0167664084583521}},"7337c1":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083145141602},"rot":{"x":0.0208085253834724,"y":269.999725341797,"z":0.0167711153626442}},"791d5f":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208085309714079,"y":270.000244140625,"z":0.0167712010443211}},"7b5a65":{"lock":false,"pos":{"x":36.6243438720703,"y":1.31878340244293,"z":-65.8082885742188},"rot":{"x":0.0208089835941792,"y":269.999542236328,"z":0.0167706087231636}},"8343e5":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036306381226,"z":-58.9200057983398},"rot":{"x":0.020808657631278,"y":269.999542236328,"z":0.0167709849774837}},"854c79":{"lock":false,"pos":{"x":40.289966583252,"y":1.29295742511749,"z":-84.2198791503906},"rot":{"x":0.0208050925284624,"y":270.011291503906,"z":0.0167752355337143}},"870bdc":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563187599182,"z":-56.6203422546387},"rot":{"x":0.0208052061498165,"y":270.011169433594,"z":0.016775269061327}},"8b1863":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208086296916008,"y":269.999847412109,"z":0.0167711619287729}},"8c4d07":{"lock":false,"pos":{"x":52.944206237793,"y":1.30293893814087,"z":-65.8202056884766},"rot":{"x":0.0208080857992172,"y":270.002349853516,"z":0.0167721528559923}},"8cdfc7":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208087675273418,"y":269.999420166016,"z":0.0167708285152912}},"90e0af":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208087228238583,"y":269.999603271484,"z":0.016771050170064}},"96b5ed":{"lock":false,"pos":{"x":58.099666595459,"y":1.30883598327637,"z":-52.0709648132324},"rot":{"x":0.020805349573493,"y":270.011260986328,"z":0.016775282099843}},"96ba38":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208052955567837,"y":270.011199951172,"z":0.016775181517005}},"96ec75":{"lock":false,"pos":{"x":7.07653141021729,"y":1.32075607776642,"z":-72.6601257324219},"rot":{"x":0.020809406414628,"y":269.999755859375,"z":0.0167715381830931}},"97ed44":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208085179328918,"y":269.999694824219,"z":0.0167710892856121}},"9b1c5b":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30428540706635,"z":-61.2203483581543},"rot":{"x":0.0208052508533001,"y":270.011169433594,"z":0.0167752429842949}},"a641de":{"lock":false,"pos":{"x":52.9284248352051,"y":1.29620385169983,"z":-88.809700012207},"rot":{"x":0.0208085179328918,"y":270.000091552734,"z":0.0167713444679976}},"a781f4":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30495882034302,"z":-58.9203491210938},"rot":{"x":0.0208078641444445,"y":270.002197265625,"z":0.0167722031474113}},"add7c9":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.020808506757021,"y":269.999786376953,"z":0.0167710706591606}},"afb8cf":{"lock":false,"pos":{"x":40.6758728027344,"y":1.32536602020264,"z":-52.0128517150879},"rot":{"x":0.0208085291087627,"y":270.000427246094,"z":0.0167702343314886}},"b4121c":{"lock":false,"pos":{"x":36.6243591308594,"y":1.296342253685,"z":-68.108283996582},"rot":{"x":0.0208050794899464,"y":270.011291503906,"z":0.0167752988636494}},"b63277":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208086185157299,"y":269.999694824219,"z":0.016770975664258}},"b722cd":{"lock":false,"pos":{"x":36.6243324279785,"y":1.3017281293869,"z":-49.7084655761719},"rot":{"x":0.0208131335675716,"y":269.984252929688,"z":0.0167653895914555}},"b92e9b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.020808594301343,"y":269.999633789063,"z":0.0167710985988379}},"b98ff6":{"lock":false,"pos":{"x":52.9441146850586,"y":1.29755294322968,"z":-84.2202377319336},"rot":{"x":0.0208058711141348,"y":270.009460449219,"z":0.0167746972292662}},"bc498d":{"lock":false,"pos":{"x":40.2900581359863,"y":1.29834342002869,"z":-65.8198547363281},"rot":{"x":0.0208088122308254,"y":269.999450683594,"z":0.0167709570378065}},"bc868c":{"lock":false,"pos":{"x":7.07651281356812,"y":1.32008278369904,"z":-74.9601593017578},"rot":{"x":0.0208091288805008,"y":269.999481201172,"z":0.0167714580893517}},"bdbca5":{"lock":false,"pos":{"x":52.9442443847656,"y":1.29687976837158,"z":-86.5202560424805},"rot":{"x":0.0208046659827232,"y":270.013244628906,"z":0.016775893047452}},"be04d4":{"lock":false,"pos":{"x":40.2900390625,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208050403743982,"y":270.011474609375,"z":0.0167753025889397}},"c1365d":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30293893814087,"z":-65.820198059082},"rot":{"x":0.0208051577210426,"y":270.011169433594,"z":0.0167751796543598}},"c4e958":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428540706635,"z":-61.2203521728516},"rot":{"x":0.0208078399300575,"y":270.002197265625,"z":0.0167719554156065}},"c8716d":{"lock":false,"pos":{"x":7.07653570175171,"y":1.3214293718338,"z":-70.3601226806641},"rot":{"x":0.0208090115338564,"y":269.999664306641,"z":0.0167711675167084}},"cffeb0":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.0208134148269892,"y":269.984008789063,"z":0.0167654249817133}},"d391c7":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957282543182,"z":-77.3202438354492},"rot":{"x":0.0208085011690855,"y":270,"z":0.0167710948735476}},"d5605f":{"lock":false,"pos":{"x":40.6758728027344,"y":1.32603931427002,"z":-49.7128486633301},"rot":{"x":0.0208086594939232,"y":269.999816894531,"z":0.0167700685560703}},"d86b0d":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208050981163979,"y":270.011657714844,"z":0.0167753770947456}},"dadcc3":{"lock":false,"pos":{"x":52.9442138671875,"y":1.3063051700592,"z":-54.3203430175781},"rot":{"x":0.0208133850246668,"y":269.984008789063,"z":0.0167653672397137}},"ddaded":{"lock":false,"pos":{"x":19.3437099456787,"y":1.29451763629913,"z":-56.5678901672363},"rot":{"x":0.0208087582141161,"y":269.999481201172,"z":0.016770189628005}},"dde850":{"lock":false,"pos":{"x":7.07655096054077,"y":1.32816159725189,"z":-47.3604888916016},"rot":{"x":0.0208085924386978,"y":270.000396728516,"z":0.0167710743844509}},"e0721f":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30950915813446,"z":-49.7709655761719},"rot":{"x":0.0208087842911482,"y":269.999755859375,"z":0.0167711209505796}},"e07aab":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.020804051309824,"y":270.014984130859,"z":0.0167767032980919}},"e4ceae":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.0208050273358822,"y":270.011474609375,"z":0.0167753677815199}},"e50ca0":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208085887134075,"y":269.999755859375,"z":0.0167709738016129}},"e87c2d":{"lock":false,"pos":{"x":7.07654714584351,"y":1.3274884223938,"z":-49.6604766845703},"rot":{"x":0.020808594301343,"y":270.00048828125,"z":0.0167711768299341}},"eaafcf":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208131372928619,"y":269.984069824219,"z":0.0167653374373913}},"ebf4c0":{"lock":false,"pos":{"x":7.07653713226318,"y":1.32344889640808,"z":-63.4604873657227},"rot":{"x":0.0208090376108885,"y":269.999877929688,"z":0.0167712233960629}},"ef2ecd":{"lock":false,"pos":{"x":10.6296834945679,"y":1.31801056861877,"z":-86.4480361938477},"rot":{"x":0.020808607339859,"y":269.999816894531,"z":0.0167710799723864}},"f22453":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3069783449173,"z":-52.0203399658203},"rot":{"x":0.020808519795537,"y":269.999755859375,"z":0.0167709589004517}},"f75ae4":{"lock":false,"pos":{"x":7.07651996612549,"y":1.31940948963165,"z":-77.2600555419922},"rot":{"x":0.0208091493695974,"y":269.999969482422,"z":0.0167716313153505}},"f86ed0":{"lock":false,"pos":{"x":7.07654428482056,"y":1.32681512832642,"z":-51.9604797363281},"rot":{"x":0.020808408036828,"y":270.000427246094,"z":0.0167713183909655}},"f99e05":{"lock":false,"pos":{"x":44.2130165100098,"y":1.31039607524872,"z":-91.0974273681641},"rot":{"x":0.0208132099360228,"y":269.984924316406,"z":0.0167646240442991}},"fab3a9":{"lock":false,"pos":{"x":40.2900657653809,"y":1.30103635787964,"z":-56.6199951171875},"rot":{"x":0.0208053775131702,"y":270.01123046875,"z":0.0167752597481012}},"fbd97e":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30563187599182,"z":-56.6203460693359},"rot":{"x":0.0208078734576702,"y":270.002197265625,"z":0.0167717821896076}},"fc5406":{"lock":false,"pos":{"x":10.6137104034424,"y":1.3166606426239,"z":-91.0400085449219},"rot":{"x":0.0208087395876646,"y":269.999816894531,"z":0.0167708862572908}},"fc790a":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30883586406708,"z":-52.0709686279297},"rot":{"x":0.0208129156380892,"y":269.984436035156,"z":0.016765596345067}},"fd1c20":{"lock":false,"pos":{"x":40.6758651733398,"y":1.32132661342621,"z":-65.8127288818359},"rot":{"x":0.0208073426038027,"y":270.004455566406,"z":0.0167714562267065}},"fd3cda":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30159246921539,"z":-70.4202117919922},"rot":{"x":0.0208077505230904,"y":270.002319335938,"z":0.0167719703167677}},"ff2be9":{"lock":false,"pos":{"x":40.6758651733398,"y":1.32681381702423,"z":-63.5128746032715},"rot":{"x":0.0208086092025042,"y":269.999969482422,"z":0.0167697928845882}}}}' +LuaScriptState: '{"ml":{"037da2":{"lock":false,"pos":{"x":7.0765,"y":1.3194,"z":-77.26},"rot":{"x":0.0208,"y":270.0044,"z":0.0168}},"0d3413":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208135452121496,"y":269.984130859375,"z":0.0167649015784264}},"0d3d1a":{"lock":false,"pos":{"x":58.0996589660645,"y":1.31018245220184,"z":-47.4709777832031},"rot":{"x":0.0208096764981747,"y":269.99560546875,"z":0.0167697537690401}},"0d88ac":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.020813662558794,"y":269.984130859375,"z":0.0167651195079088}},"117137":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29699695110321,"z":-70.4198684692383},"rot":{"x":0.0208062455058098,"y":270.01171875,"z":0.0167758595198393}},"15a1bb":{"lock":false,"pos":{"x":52.944206237793,"y":1.30293893814087,"z":-65.8202056884766},"rot":{"x":0.0208074115216732,"y":270.002258300781,"z":0.0167705472558737}},"1a1b58":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29499566555023,"z":-72.7083969116211},"rot":{"x":0.0208062380552292,"y":270.01123046875,"z":0.0167753864079714}},"2172e2":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29565048217773,"z":-75.0199966430664},"rot":{"x":0.0208058170974255,"y":270.01123046875,"z":0.016775343567133}},"22c4b1":{"lock":false,"pos":{"x":40.2742691040039,"y":1.3133761882782,"z":-88.8093566894531},"rot":{"x":0.0208147652447224,"y":269.984893798828,"z":0.0167664028704166}},"26d70e":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208047293126583,"y":270.015655517578,"z":0.0167774185538292}},"300569":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29364931583405,"z":-77.3083267211914},"rot":{"x":0.0208061747252941,"y":270.005340576172,"z":0.0167729835957289}},"344e90":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428540706635,"z":-61.2203521728516},"rot":{"x":0.0208056177943945,"y":270.011260986328,"z":0.0167746227234602}},"3469e0":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30024600028992,"z":-75.0203399658203},"rot":{"x":0.020807784050703,"y":270.002197265625,"z":0.0167698990553617}},"367e5c":{"lock":false,"pos":{"x":36.6243362426758,"y":1.31868195533752,"z":-49.7084617614746},"rot":{"x":0.0208057407289743,"y":270.011169433594,"z":0.0167744066566229}},"384258":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29836189746857,"z":-61.2084465026855},"rot":{"x":0.0208135508000851,"y":269.983917236328,"z":0.0167649332433939}},"3c0d81":{"lock":false,"pos":{"x":10.6138734817505,"y":1.31733238697052,"z":-88.7451629638672},"rot":{"x":0.0208089593797922,"y":269.999938964844,"z":0.0167716406285763}},"404410":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30159246921539,"z":-70.4202117919922},"rot":{"x":0.0208075251430273,"y":270.002349853516,"z":0.016770638525486}},"423ea2":{"lock":false,"pos":{"x":52.944206237793,"y":1.29957270622253,"z":-77.3202438354492},"rot":{"x":0.020808532834053,"y":270,"z":0.016769191250205}},"488fab":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170965194702,"z":-54.3199996948242},"rot":{"x":0.0208086092025042,"y":269.999694824219,"z":0.0167709644883871}},"4a29bd":{"lock":false,"pos":{"x":36.6243362426758,"y":1.32090437412262,"z":-75.0084228515625},"rot":{"x":0.0208107065409422,"y":269.999481201172,"z":0.016771649941802}},"53eaa9":{"lock":false,"pos":{"x":7.07654333114624,"y":1.32277584075928,"z":-65.7601165771484},"rot":{"x":0.0208094976842403,"y":269.999755859375,"z":0.0167715046554804}},"552689":{"lock":false,"pos":{"x":58.099666595459,"y":1.30816280841827,"z":-54.3709716796875},"rot":{"x":0.0208169873803854,"y":269.970977783203,"z":0.0167606212198734}},"562c05":{"lock":false,"pos":{"x":40.2920837402344,"y":1.29363131523132,"z":-81.9201202392578},"rot":{"x":0.0208061765879393,"y":270.011352539063,"z":0.0167755149304867}},"5bdc77":{"lock":false,"pos":{"x":7.07654094696045,"y":1.32210242748261,"z":-68.0601196289063},"rot":{"x":0.020809318870306,"y":269.999877929688,"z":0.0167716238647699}},"5d4212":{"lock":false,"pos":{"x":40.2899627685547,"y":1.29295742511749,"z":-84.2198867797852},"rot":{"x":0.0208051223307848,"y":270.011291503906,"z":0.0167752541601658}},"5f8011":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29430389404297,"z":-79.6199035644531},"rot":{"x":0.0208057668060064,"y":270.011474609375,"z":0.0167762991040945}},"6465d8":{"lock":false,"pos":{"x":40.2741088867188,"y":1.31270098686218,"z":-91.1157989501953},"rot":{"x":0.0208196602761745,"y":269.968811035156,"z":0.0167605970054865}},"659f2d":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30240142345428,"z":-47.4084358215332},"rot":{"x":0.020813575014472,"y":269.984313964844,"z":0.016765259206295}},"683123":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208087358623743,"y":269.99951171875,"z":0.0167709458619356}},"6e4d54":{"lock":false,"pos":{"x":52.9442253112793,"y":1.3063051700592,"z":-54.3203315734863},"rot":{"x":0.0208052564412355,"y":270.011291503906,"z":0.0167751219123602}},"6f6976":{"lock":false,"pos":{"x":52.9441184997559,"y":1.29755294322968,"z":-84.2202377319336},"rot":{"x":0.0208085421472788,"y":270.000122070313,"z":0.016769165173173}},"6fab5a":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29701554775238,"z":-65.8083038330078},"rot":{"x":0.0208097118884325,"y":269.999664306641,"z":0.0167714897543192}},"73255e":{"lock":false,"pos":{"x":36.6243476867676,"y":1.31935524940491,"z":-47.4084320068359},"rot":{"x":0.0208136457949877,"y":269.984313964844,"z":0.0167664084583521}},"7337c1":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083145141602},"rot":{"x":0.0208085253834724,"y":269.999725341797,"z":0.0167711153626442}},"791d5f":{"lock":false,"pos":{"x":52.9462432861328,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208083353936672,"y":270.000305175781,"z":0.0167693682014942}},"7b5a65":{"lock":false,"pos":{"x":36.6243362426758,"y":1.31811010837555,"z":-68.1082992553711},"rot":{"x":0.0208076350390911,"y":269.999572753906,"z":0.0167704727500677}},"8343e5":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036318302155,"z":-58.9200057983398},"rot":{"x":0.0208086185157299,"y":269.999542236328,"z":0.0167709663510323}},"854c79":{"lock":false,"pos":{"x":40.2900886535645,"y":1.29228413105011,"z":-86.5199127197266},"rot":{"x":0.0208059661090374,"y":270.01123046875,"z":0.0167757142335176}},"86d109":{"lock":false,"pos":{"x":40.2900543212891,"y":1.2976701259613,"z":-68.1198577880859},"rot":{"x":0.0208084471523762,"y":269.998718261719,"z":0.0167706422507763}},"870bdc":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30495870113373,"z":-58.9203491210938},"rot":{"x":0.0208055749535561,"y":270.011169433594,"z":0.0167747605592012}},"8b1863":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208084397017956,"y":269.999847412109,"z":0.016770888119936}},"8c4d07":{"lock":false,"pos":{"x":52.944206237793,"y":1.30293893814087,"z":-65.8202056884766},"rot":{"x":0.0208080857992172,"y":270.002349853516,"z":0.0167721528559923}},"8cdfc7":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901671409607,"z":-63.5200119018555},"rot":{"x":0.020808594301343,"y":269.999420166016,"z":0.0167709793895483}},"90e0af":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208087228238583,"y":269.999603271484,"z":0.016771050170064}},"96b5ed":{"lock":false,"pos":{"x":58.099666595459,"y":1.30883598327637,"z":-52.0709648132324},"rot":{"x":0.0208051018416882,"y":270.011260986328,"z":0.0167749132961035}},"96ba38":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29297602176666,"z":-79.6082916259766},"rot":{"x":0.0208080112934113,"y":270.005249023438,"z":0.0167735610157251}},"96ec75":{"lock":false,"pos":{"x":7.07653141021729,"y":1.32075607776642,"z":-72.6601257324219},"rot":{"x":0.020809406414628,"y":269.999755859375,"z":0.0167715381830931}},"97ed44":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208086092025042,"y":269.999694824219,"z":0.0167712606489658}},"9b1c5b":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30361223220825,"z":-63.5203552246094},"rot":{"x":0.020805174484849,"y":270.011199951172,"z":0.0167740415781736}},"a641de":{"lock":false,"pos":{"x":52.9282684326172,"y":1.2955287694931,"z":-91.1161422729492},"rot":{"x":0.0208085980266333,"y":270.000122070313,"z":0.0167691260576248}},"a781f4":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30495882034302,"z":-58.9203491210938},"rot":{"x":0.0208078641444445,"y":270.002197265625,"z":0.0167722031474113}},"add7c9":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208085626363754,"y":269.999786376953,"z":0.0167709924280643}},"afb8cf":{"lock":false,"pos":{"x":40.6758728027344,"y":1.32536602020264,"z":-52.0128517150879},"rot":{"x":0.0208085291087627,"y":270.000427246094,"z":0.0167702343314886}},"b4121c":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29566895961761,"z":-70.4083099365234},"rot":{"x":0.0208063498139381,"y":270.01123046875,"z":0.0167755018919706}},"b63277":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29768872261047,"z":-63.5084495544434},"rot":{"x":0.0208085030317307,"y":269.999694824219,"z":0.0167699977755547}},"b722cd":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30105495452881,"z":-52.0084266662598},"rot":{"x":0.0208131112158298,"y":269.984252929688,"z":0.016765184700489}},"b92e9b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.020808594301343,"y":269.999633789063,"z":0.0167710985988379}},"b98ff6":{"lock":false,"pos":{"x":52.9442443847656,"y":1.29687976837158,"z":-86.5202560424805},"rot":{"x":0.0208053644746542,"y":270.009521484375,"z":0.0167733896523714}},"bc498d":{"lock":false,"pos":{"x":40.2900581359863,"y":1.29834342002869,"z":-65.8198547363281},"rot":{"x":0.0208087749779224,"y":269.999450683594,"z":0.0167711395770311}},"bc868c":{"lock":false,"pos":{"x":7.07651281356812,"y":1.32008278369904,"z":-74.9601593017578},"rot":{"x":0.0208091288805008,"y":269.999481201172,"z":0.0167714580893517}},"bdbca5":{"lock":false,"pos":{"x":52.9284248352051,"y":1.29620397090912,"z":-88.809700012207},"rot":{"x":0.0208044350147247,"y":270.013305664063,"z":0.0167760346084833}},"be04d4":{"lock":false,"pos":{"x":40.2900390625,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208050403743982,"y":270.011474609375,"z":0.0167753025889397}},"c1365d":{"lock":false,"pos":{"x":52.944206237793,"y":1.30226576328278,"z":-68.1202087402344},"rot":{"x":0.0208051148802042,"y":270.01123046875,"z":0.0167738441377878}},"c4e958":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428540706635,"z":-61.2203521728516},"rot":{"x":0.0208078399300575,"y":270.002197265625,"z":0.0167719554156065}},"c8716d":{"lock":false,"pos":{"x":7.07653570175171,"y":1.3214293718338,"z":-70.3601226806641},"rot":{"x":0.0208090115338564,"y":269.999664306641,"z":0.0167711675167084}},"cffeb0":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29903519153595,"z":-58.9084434509277},"rot":{"x":0.0208135731518269,"y":269.984008789063,"z":0.0167648307979107}},"d391c7":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208081752061844,"y":270.000061035156,"z":0.0167700406163931}},"d5605f":{"lock":false,"pos":{"x":40.6758728027344,"y":1.32603931427002,"z":-49.7128486633301},"rot":{"x":0.0208086594939232,"y":269.999816894531,"z":0.0167700685560703}},"d86b0d":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29632353782654,"z":-72.7199859619141},"rot":{"x":0.0208059288561344,"y":270.011627197266,"z":0.0167759340256453}},"dadcc3":{"lock":false,"pos":{"x":52.9442138671875,"y":1.3063051700592,"z":-54.3203430175781},"rot":{"x":0.0208133850246668,"y":269.984008789063,"z":0.0167653672397137}},"ddaded":{"lock":false,"pos":{"x":19.3437099456787,"y":1.29451763629913,"z":-56.5678901672363},"rot":{"x":0.0208087582141161,"y":269.999481201172,"z":0.016770189628005}},"dde850":{"lock":false,"pos":{"x":7.07655096054077,"y":1.32816159725189,"z":-47.3604888916016},"rot":{"x":0.0208085924386978,"y":270.000396728516,"z":0.0167710743844509}},"e0721f":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30950927734375,"z":-49.7709655761719},"rot":{"x":0.0208086743950844,"y":269.999755859375,"z":0.0167709551751614}},"e07aab":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208041667938232,"y":270.014984130859,"z":0.0167763959616423}},"e4ceae":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29497718811035,"z":-77.3199005126953},"rot":{"x":0.0208061467856169,"y":270.011444091797,"z":0.0167754273861647}},"e50ca0":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208086743950844,"y":269.999755859375,"z":0.0167708694934845}},"e87c2d":{"lock":false,"pos":{"x":7.07654714584351,"y":1.3274884223938,"z":-49.6604766845703},"rot":{"x":0.020808594301343,"y":270.00048828125,"z":0.0167711768299341}},"e99f0d":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30563187599182,"z":-56.6203422546387},"rot":{"x":0.0208089593797922,"y":269.998962402344,"z":0.0167701579630375}},"eaafcf":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208131372928619,"y":269.984069824219,"z":0.0167653374373913}},"ebf4c0":{"lock":false,"pos":{"x":7.07653713226318,"y":1.32344889640808,"z":-63.4604873657227},"rot":{"x":0.0208090376108885,"y":269.999877929688,"z":0.0167712233960629}},"ef2ecd":{"lock":false,"pos":{"x":10.6296834945679,"y":1.31801056861877,"z":-86.4480361938477},"rot":{"x":0.020808607339859,"y":269.999816894531,"z":0.0167710799723864}},"f22453":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30697846412659,"z":-52.0203399658203},"rot":{"x":0.0208084303885698,"y":269.999755859375,"z":0.0167709495872259}},"f75ae4":{"lock":false,"pos":{"x":7.07651996612549,"y":1.31940948963165,"z":-77.2600555419922},"rot":{"x":0.0208091493695974,"y":269.999969482422,"z":0.0167716313153505}},"f86ed0":{"lock":false,"pos":{"x":7.07654428482056,"y":1.32681512832642,"z":-51.9604797363281},"rot":{"x":0.020808408036828,"y":270.000427246094,"z":0.0167713183909655}},"f99e05":{"lock":false,"pos":{"x":44.2130165100098,"y":1.31039607524872,"z":-91.0974273681641},"rot":{"x":0.0208132099360228,"y":269.984924316406,"z":0.0167646240442991}},"fab3a9":{"lock":false,"pos":{"x":40.2900657653809,"y":1.30103635787964,"z":-56.6199951171875},"rot":{"x":0.0208053700625896,"y":270.01123046875,"z":0.0167752765119076}},"fbd97e":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30563187599182,"z":-56.6203460693359},"rot":{"x":0.0208078734576702,"y":270.002197265625,"z":0.0167717821896076}},"fc5406":{"lock":false,"pos":{"x":10.6137104034424,"y":1.3166606426239,"z":-91.0400085449219},"rot":{"x":0.0208087395876646,"y":269.999816894531,"z":0.0167708862572908}},"fc790a":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30883586406708,"z":-52.0709686279297},"rot":{"x":0.0208129156380892,"y":269.984436035156,"z":0.016765596345067}},"fd1c20":{"lock":false,"pos":{"x":40.6758651733398,"y":1.32132661342621,"z":-65.8127288818359},"rot":{"x":0.0208073426038027,"y":270.004455566406,"z":0.0167714562267065}},"fd3cda":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208078119903803,"y":270.002380371094,"z":0.01677006483078}},"ff2be9":{"lock":false,"pos":{"x":40.6758651733398,"y":1.32681381702423,"z":-63.5128746032715},"rot":{"x":0.0208086092025042,"y":269.999969482422,"z":0.0167697928845882}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Abigail Foreman (4) b63277.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Abigail Foreman (4) b63277.yaml index 461f1919b..43d13f08c 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Abigail Foreman (4) b63277.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Abigail Foreman (4) b63277.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -61.21 + posZ: -63.51 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Arcane Insight (4) 6fab5a.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Arcane Insight (4) 6fab5a.yaml index a076cc34d..75ff428a0 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Arcane Insight (4) 6fab5a.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Arcane Insight (4) 6fab5a.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -63.51 + posZ: -65.81 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Barricade (3) 3469e0.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Barricade (3) 3469e0.yaml index b011fdd27..ed1484499 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Barricade (3) 3469e0.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Barricade (3) 3469e0.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -72.72 + posZ: -75.02 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Blasphemous Covenant (2) 86d109.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Blasphemous Covenant (2) 86d109.yaml new file mode 100644 index 000000000..664f5dfc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Blasphemous Covenant (2) 86d109.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553105 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 86d109 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Blasphemous Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.29 + posY: 1.3 + posZ: -68.12 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Research (4) 791d5f.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Research (4) 791d5f.yaml index ec0fa87ed..74e2516e2 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Research (4) 791d5f.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Research (4) 791d5f.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52.94 + posX: 52.95 posY: 1.3 - posZ: -79.62 + posZ: -81.92 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Writings (2) 870bdc.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Writings (2) 870bdc.yaml index 762129cd6..05e6f9f3c 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Writings (2) 870bdc.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Cryptic Writings (2) 870bdc.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266222 +CardID: 554522 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 52.94 - posY: 1.31 - posZ: -56.62 + posY: 1.3 + posZ: -58.92 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Deciphered Reality (5) b98ff6.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Deciphered Reality (5) b98ff6.yaml index c64753094..08c2a8fcd 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Deciphered Reality (5) b98ff6.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Deciphered Reality (5) b98ff6.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -84.22 + posZ: -86.52 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Disc of Itzamna (2) 117137.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Disc of Itzamna (2) 117137.yaml index 3f7873f9c..8a88d89c1 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Disc of Itzamna (2) 117137.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Disc of Itzamna (2) 117137.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.3 - posZ: -68.12 + posZ: -70.42 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Eidetic Memory (3) 423ea2.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Eidetic Memory (3) 423ea2.yaml index cb20a9fe3..f4f0614a7 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Eidetic Memory (3) 423ea2.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Eidetic Memory (3) 423ea2.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -75.02 + posZ: -77.32 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Encyclopedia (2) d86b0d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Encyclopedia (2) d86b0d.yaml index 3aba328bd..68ab05a9c 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Encyclopedia (2) d86b0d.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Encyclopedia (2) d86b0d.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.3 - posZ: -70.42 + posZ: -72.72 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Esoteric Atlas (2) 2172e2.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Esoteric Atlas (2) 2172e2.yaml index 58905efb4..714b0d5be 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Esoteric Atlas (2) 2172e2.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Esoteric Atlas (2) 2172e2.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266220 +CardID: 554020 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.3 - posZ: -72.72 + posZ: -75.02 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Expose Weakness (3) d391c7.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Expose Weakness (3) d391c7.yaml index ff305d7ea..687a44445 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Expose Weakness (3) d391c7.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Expose Weakness (3) d391c7.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -77.32 + posZ: -79.62 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Farsight (4) b4121c.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Farsight (4) b4121c.yaml index ea67cc50e..6acbc152c 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Farsight (4) b4121c.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Farsight (4) b4121c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266229 +CardID: 554929 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -68.11 + posZ: -70.41 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Feed the Mind (3) 659f2d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Feed the Mind (3) 659f2d.yaml index 322967d09..c3e39b0c4 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Feed the Mind (3) 659f2d.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Feed the Mind (3) 659f2d.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.27 - posY: 1.29 - posZ: -91.12 + posX: 36.62 + posY: 1.3 + posZ: -47.41 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (1) 6e4d54.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (1) 6e4d54.yaml index 6f65fba11..226aae24c 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (1) 6e4d54.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (1) 6e4d54.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266219 +CardID: 554319 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (5) bdbca5.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (5) bdbca5.yaml index c2520dfa8..723e3ec3b 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (5) bdbca5.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Glimpse the Unthinkable (5) bdbca5.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52.94 + posX: 52.93 posY: 1.3 - posZ: -86.52 + posZ: -88.81 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Grisly Totem (3) b722cd.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Grisly Totem (3) b722cd.yaml index 23250348b..f204f945d 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Grisly Totem (3) b722cd.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Grisly Totem (3) b722cd.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -49.71 + posZ: -52.01 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Higher Education (3) 0d3413.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Higher Education (3) 0d3413.yaml index 6bbe0cbfa..ac8e1f760 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Higher Education (3) 0d3413.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Higher Education (3) 0d3413.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -52.01 + posZ: -54.31 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Hyperawareness (2) e4ceae.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Hyperawareness (2) e4ceae.yaml index c2bbd9ad2..411534a38 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Hyperawareness (2) e4ceae.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Hyperawareness (2) e4ceae.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 40.29 - posY: 1.3 - posZ: -75.02 + posY: 1.29 + posZ: -77.32 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card I've got a plan! (2) 344e90.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card I've got a plan! (2) 344e90.yaml index fa4c94dea..93e2f9fcb 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card I've got a plan! (2) 344e90.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card I've got a plan! (2) 344e90.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266223 +CardID: 554123 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -58.92 + posZ: -61.22 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Library Docent (1) fab3a9.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Library Docent (1) fab3a9.yaml index cd25e7ec3..c6173f179 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Library Docent (1) fab3a9.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Library Docent (1) fab3a9.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266218 +CardID: 555118 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5551': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Logical Reasoning (4) 6f6976.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Logical Reasoning (4) 6f6976.yaml index 5bdbe1236..fb6db1079 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Logical Reasoning (4) 6f6976.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Logical Reasoning (4) 6f6976.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 52.95 + posX: 52.94 posY: 1.3 - posZ: -81.92 + posZ: -84.22 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Mind Over Matter (2) 9b1c5b.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Mind Over Matter (2) 9b1c5b.yaml index 5e5e78463..4d04c6534 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Mind Over Matter (2) 9b1c5b.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Mind Over Matter (2) 9b1c5b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266224 +CardID: 554824 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -61.22 + posZ: -63.52 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml index 1532963aa..d767e3e16 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266230 +CardID: 553930 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 36.62 - posY: 1.3 - posZ: -70.41 + posY: 1.29 + posZ: -72.71 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card No Stone Unturned (5) a641de.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card No Stone Unturned (5) a641de.yaml index c6ae76851..dae16eb26 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card No Stone Unturned (5) a641de.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card No Stone Unturned (5) a641de.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.93 posY: 1.3 - posZ: -88.81 + posZ: -91.12 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Old Book of Lore (3) 0d88ac.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Old Book of Lore (3) 0d88ac.yaml index 76a98819d..cf77a45eb 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Old Book of Lore (3) 0d88ac.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Old Book of Lore (3) 0d88ac.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -54.31 + posZ: -56.61 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Otherworld Codex (2) 5f8011.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Otherworld Codex (2) 5f8011.yaml index cac75ba90..eeff1dc5e 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Otherworld Codex (2) 5f8011.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Otherworld Codex (2) 5f8011.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -77.32 + posZ: -79.62 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Otherworldly Compass (2) 562c05.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Otherworldly Compass (2) 562c05.yaml index 5d825c13c..374e1c888 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Otherworldly Compass (2) 562c05.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Otherworldly Compass (2) 562c05.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -79.62 + posZ: -81.92 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Perception (2) 96b5ed.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Perception (2) 96b5ed.yaml index 0fbc6339b..fa86e94d5 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Perception (2) 96b5ed.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Perception (2) 96b5ed.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266226 +CardID: 554626 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Pnakotic Manuscripts (5) 300569.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Pnakotic Manuscripts (5) 300569.yaml index 6c4499367..4308729ac 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Pnakotic Manuscripts (5) 300569.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Pnakotic Manuscripts (5) 300569.yaml @@ -35,9 +35,9 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -75.01 + posZ: -77.31 rotX: 0.02 - rotY: 270.0 + rotY: 270.01 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Preposterous Sketches (2) 15a1bb.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Preposterous Sketches (2) 15a1bb.yaml index 198395b9d..7eb37e792 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Preposterous Sketches (2) 15a1bb.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Preposterous Sketches (2) 15a1bb.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -63.52 + posZ: -65.82 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Quick Study (2) 26d70e.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Quick Study (2) 26d70e.yaml index 0dcbbed25..d7a769b45 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Quick Study (2) 26d70e.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Quick Study (2) 26d70e.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -81.92 + posZ: -84.22 rotX: 0.02 rotY: 270.02 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Scroll of Secrets (3) cffeb0.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Scroll of Secrets (3) cffeb0.yaml index 5eab2c955..3f6510d9f 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Scroll of Secrets (3) cffeb0.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Scroll of Secrets (3) cffeb0.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -56.61 + posZ: -58.91 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Seeking Answers (2) c1365d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Seeking Answers (2) c1365d.yaml index 7f3220d12..e78187aa2 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Seeking Answers (2) c1365d.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Seeking Answers (2) c1365d.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266225 +CardID: 555025 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -65.82 + posZ: -68.12 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Shortcut (2) 404410.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Shortcut (2) 404410.yaml index af0c43e04..7967cc8f7 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Shortcut (2) 404410.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Shortcut (2) 404410.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -68.12 + posZ: -70.42 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Stirring Up Trouble (1) e99f0d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Stirring Up Trouble (1) e99f0d.yaml new file mode 100644 index 000000000..df547438b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Stirring Up Trouble (1) e99f0d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e99f0d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Stirring Up Trouble (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94 + posY: 1.31 + posZ: -56.62 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Studious (3) 384258.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Studious (3) 384258.yaml index 8ba040b74..ee4924aab 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Studious (3) 384258.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Studious (3) 384258.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -58.91 + posZ: -61.21 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card The Necronomicon (5) 96ba38.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card The Necronomicon (5) 96ba38.yaml index 2dc6b1169..f67c0ac5d 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card The Necronomicon (5) 96ba38.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card The Necronomicon (5) 96ba38.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266231 +CardID: 554731 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -77.31 + posZ: -79.61 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Truth from Fiction (2) fd3cda.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Truth from Fiction (2) fd3cda.yaml index 50314e1a4..e635f7d85 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Truth from Fiction (2) fd3cda.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Truth from Fiction (2) fd3cda.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 52.94 posY: 1.3 - posZ: -70.42 + posZ: -72.72 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Whitton Greene (2) 854c79.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Whitton Greene (2) 854c79.yaml index b62555067..e867c0518 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Whitton Greene (2) 854c79.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Card Whitton Greene (2) 854c79.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266221 +CardID: 554421 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -84.22 + posZ: -86.52 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63.yaml deleted file mode 100644 index d6f72a5f8..000000000 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63.yaml +++ /dev/null @@ -1,112 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Seeker 42bb63/Deck Forbidden Tome (3) 367e5c.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card I''ve got a plan! (2) 344e90.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card The Necronomicon (5) 96ba38.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Miskatonic Archaeology Funding (4) - 1a1b58.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Esoteric Atlas (2) 2172e2.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Whitton Greene (2) 854c79.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Farsight (4) b4121c.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Perception (2) 96b5ed.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Mind Over Matter (2) 9b1c5b.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Library Docent (1) fab3a9.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Seeking Answers (2) c1365d.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Cryptic Writings (2) 870bdc.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Glimpse the Unthinkable (1) 6e4d54.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Higher Education (3) 0d3413.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Surprising Find (1) 0d3d1a.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Old Book of Lore (3) 0d88ac.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Disc of Itzamna (2) 117137.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Preposterous Sketches (2) 15a1bb.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Deck Archaic Glyphs (3) 22c4b1.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Quick Study (2) 26d70e.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Pnakotic Manuscripts (5) 300569.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Barricade (3) 3469e0.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Studious (3) 384258.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Shortcut (2) 404410.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Eidetic Memory (3) 423ea2.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card In the Know (1) 488fab.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Deck Strange Solution (4) 4a29bd.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card The Eye of Truth (5) 552689.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Otherworldly Compass (2) 562c05.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Otherworld Codex (2) 5f8011.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Deck Dream Diary (3) 6465d8.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Feed the Mind (3) 659f2d.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Pathfinder (1) 683123.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Logical Reasoning (4) 6f6976.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Arcane Insight (4) 6fab5a.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Cryptic Research (4) 791d5f.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Deck Ancient Stone (4) 7b5a65.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Magnifying Glass (1) 8343e5.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Ancient Stone (1) 8b1863.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Scientific Theory (1) 8cdfc7.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Expose Weakness (1) 97ed44.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card No Stone Unturned (5) a641de.yaml' -- !include "Custom_Model_Bag Seeker 42bb63/Card Death \u2022 XIII (1) add7c9.yaml" -- !include 'Custom_Model_Bag Seeker 42bb63/Card Abigail Foreman (4) b63277.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Grisly Totem (3) b722cd.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Deciphered Reality (5) b98ff6.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Segment of Onyx (1) bc498d.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Glimpse the Unthinkable (5) bdbca5.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Scroll of Secrets (3) cffeb0.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Expose Weakness (3) d391c7.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Encyclopedia (2) d86b0d.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Deduction (2) e0721f.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Extensive Research (1) e07aab.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Hyperawareness (2) e4ceae.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Esoteric Atlas (1) e50ca0.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Forewarned (1) f22453.yaml' -- !include 'Custom_Model_Bag Seeker 42bb63/Card Truth from Fiction (2) fd3cda.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: '' -DragSelectable: true -GMNotes: '' -GUID: 42bb63 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Seeker 42bb63.ttslua' -LuaScriptState: '{"ml":{"037da2":{"lock":false,"pos":{"x":7.0765,"y":1.3194,"z":-77.26},"rot":{"x":0.0208,"y":270.0044,"z":0.0168}},"0d3413":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.008430480957},"rot":{"x":0.0208130404353142,"y":269.984161376953,"z":0.0167653616517782}},"0d3d1a":{"lock":false,"pos":{"x":58.0996589660645,"y":1.31018245220184,"z":-47.4709777832031},"rot":{"x":0.0208098292350769,"y":269.99560546875,"z":0.0167696308344603}},"0d88ac":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084411621094},"rot":{"x":0.0208131857216358,"y":269.984130859375,"z":0.0167654100805521}},"117137":{"lock":false,"pos":{"x":40.2900466918945,"y":1.2976701259613,"z":-68.119873046875},"rot":{"x":0.0208052508533001,"y":270.01171875,"z":0.0167753808200359}},"15a1bb":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30361223220825,"z":-63.5203514099121},"rot":{"x":0.0208081714808941,"y":270.002197265625,"z":0.0167720057070255}},"1a1b58":{"lock":false,"pos":{"x":36.6243629455566,"y":1.2956690788269,"z":-70.4082870483398},"rot":{"x":0.0208052806556225,"y":270.011291503906,"z":0.0167751740664244}},"2172e2":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632365703583,"z":-72.719970703125},"rot":{"x":0.0208050608634949,"y":270.011291503906,"z":0.016775319352746}},"22c4b1":{"lock":false,"pos":{"x":40.2900848388672,"y":1.31405210494995,"z":-86.5199127197266},"rot":{"x":0.020813126116991,"y":269.984924316406,"z":0.0167654789984226}},"26d70e":{"lock":false,"pos":{"x":40.2920875549316,"y":1.29363143444061,"z":-81.9201126098633},"rot":{"x":0.0208039600402117,"y":270.015686035156,"z":0.0167767200618982}},"300569":{"lock":false,"pos":{"x":36.6243629455566,"y":1.29432249069214,"z":-75.0083999633789},"rot":{"x":0.0208085924386978,"y":269.999694824219,"z":0.0167710538953543}},"344e90":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30495870113373,"z":-58.9203453063965},"rot":{"x":0.0208052527159452,"y":270.011291503906,"z":0.0167754273861647}},"3469e0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208078064024448,"y":270.002136230469,"z":0.0167719814926386}},"367e5c":{"lock":false,"pos":{"x":36.6243438720703,"y":1.31935524940491,"z":-47.4084320068359},"rot":{"x":0.0208057425916195,"y":270.011199951172,"z":0.0167762581259012}},"384258":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29903519153595,"z":-58.9084396362305},"rot":{"x":0.0208130870014429,"y":269.983947753906,"z":0.0167654640972614}},"3c0d81":{"lock":false,"pos":{"x":10.6138734817505,"y":1.31733238697052,"z":-88.7451629638672},"rot":{"x":0.0208089593797922,"y":269.999938964844,"z":0.0167716406285763}},"404410":{"lock":false,"pos":{"x":52.944206237793,"y":1.30226576328278,"z":-68.1202087402344},"rot":{"x":0.0208079610019922,"y":270.002258300781,"z":0.0167720168828964}},"423ea2":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30024600028992,"z":-75.0203399658203},"rot":{"x":0.0208085048943758,"y":269.999938964844,"z":0.0167712271213531}},"488fab":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170953273773,"z":-54.3199996948242},"rot":{"x":0.0208087079226971,"y":269.999694824219,"z":0.0167710147798061}},"4a29bd":{"lock":false,"pos":{"x":36.6243438720703,"y":1.32157766819,"z":-72.708381652832},"rot":{"x":0.0208091251552105,"y":269.99951171875,"z":0.016770863905549}},"53eaa9":{"lock":false,"pos":{"x":7.07654333114624,"y":1.32277584075928,"z":-65.7601165771484},"rot":{"x":0.0208094976842403,"y":269.999755859375,"z":0.0167715046554804}},"552689":{"lock":false,"pos":{"x":58.099666595459,"y":1.30816268920898,"z":-54.3709716796875},"rot":{"x":0.020817082375288,"y":269.970977783203,"z":0.0167605578899384}},"562c05":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29430389404297,"z":-79.6198883056641},"rot":{"x":0.0208049807697535,"y":270.011413574219,"z":0.0167751777917147}},"5bdc77":{"lock":false,"pos":{"x":7.07654094696045,"y":1.32210242748261,"z":-68.0601196289063},"rot":{"x":0.020809318870306,"y":269.999877929688,"z":0.0167716238647699}},"5d4212":{"lock":false,"pos":{"x":40.2899627685547,"y":1.29295742511749,"z":-84.2198867797852},"rot":{"x":0.0208051223307848,"y":270.011291503906,"z":0.0167752541601658}},"5f8011":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29497718811035,"z":-77.3199081420898},"rot":{"x":0.0208050180226564,"y":270.011505126953,"z":0.0167753007262945}},"6465d8":{"lock":false,"pos":{"x":40.2742652893066,"y":1.3133761882782,"z":-88.8093566894531},"rot":{"x":0.0208180714398623,"y":269.968841552734,"z":0.0167595781385899}},"659f2d":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1157989501953},"rot":{"x":0.0208130795508623,"y":269.984313964844,"z":0.0167654324322939}},"683123":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208087395876646,"y":269.99951171875,"z":0.0167709402740002}},"6e4d54":{"lock":false,"pos":{"x":52.9442253112793,"y":1.3063051700592,"z":-54.3203315734863},"rot":{"x":0.020805362612009,"y":270.011291503906,"z":0.0167753379791975}},"6f6976":{"lock":false,"pos":{"x":52.9462394714355,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208086520433426,"y":270.000061035156,"z":0.0167712830007076}},"6fab5a":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.020808657631278,"y":269.999755859375,"z":0.0167713258415461}},"73255e":{"lock":false,"pos":{"x":36.6243476867676,"y":1.31935524940491,"z":-47.4084320068359},"rot":{"x":0.0208136457949877,"y":269.984313964844,"z":0.0167664084583521}},"7337c1":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083145141602},"rot":{"x":0.0208085253834724,"y":269.999725341797,"z":0.0167711153626442}},"791d5f":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208085309714079,"y":270.000244140625,"z":0.0167712010443211}},"7b5a65":{"lock":false,"pos":{"x":36.6243438720703,"y":1.31878340244293,"z":-65.8082885742188},"rot":{"x":0.0208089835941792,"y":269.999542236328,"z":0.0167706087231636}},"8343e5":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036306381226,"z":-58.9200057983398},"rot":{"x":0.020808657631278,"y":269.999542236328,"z":0.0167709849774837}},"854c79":{"lock":false,"pos":{"x":40.289966583252,"y":1.29295742511749,"z":-84.2198791503906},"rot":{"x":0.0208050925284624,"y":270.011291503906,"z":0.0167752355337143}},"870bdc":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563187599182,"z":-56.6203422546387},"rot":{"x":0.0208052061498165,"y":270.011169433594,"z":0.016775269061327}},"8b1863":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208086296916008,"y":269.999847412109,"z":0.0167711619287729}},"8c4d07":{"lock":false,"pos":{"x":52.944206237793,"y":1.30293893814087,"z":-65.8202056884766},"rot":{"x":0.0208080857992172,"y":270.002349853516,"z":0.0167721528559923}},"8cdfc7":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208087675273418,"y":269.999420166016,"z":0.0167708285152912}},"90e0af":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208087228238583,"y":269.999603271484,"z":0.016771050170064}},"96b5ed":{"lock":false,"pos":{"x":58.099666595459,"y":1.30883598327637,"z":-52.0709648132324},"rot":{"x":0.020805349573493,"y":270.011260986328,"z":0.016775282099843}},"96ba38":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208052955567837,"y":270.011199951172,"z":0.016775181517005}},"96ec75":{"lock":false,"pos":{"x":7.07653141021729,"y":1.32075607776642,"z":-72.6601257324219},"rot":{"x":0.020809406414628,"y":269.999755859375,"z":0.0167715381830931}},"97ed44":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208085179328918,"y":269.999694824219,"z":0.0167710892856121}},"9b1c5b":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30428540706635,"z":-61.2203483581543},"rot":{"x":0.0208052508533001,"y":270.011169433594,"z":0.0167752429842949}},"a641de":{"lock":false,"pos":{"x":52.9284248352051,"y":1.29620385169983,"z":-88.809700012207},"rot":{"x":0.0208085179328918,"y":270.000091552734,"z":0.0167713444679976}},"a781f4":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30495882034302,"z":-58.9203491210938},"rot":{"x":0.0208078641444445,"y":270.002197265625,"z":0.0167722031474113}},"add7c9":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.020808506757021,"y":269.999786376953,"z":0.0167710706591606}},"afb8cf":{"lock":false,"pos":{"x":40.6758728027344,"y":1.32536602020264,"z":-52.0128517150879},"rot":{"x":0.0208085291087627,"y":270.000427246094,"z":0.0167702343314886}},"b4121c":{"lock":false,"pos":{"x":36.6243591308594,"y":1.296342253685,"z":-68.108283996582},"rot":{"x":0.0208050794899464,"y":270.011291503906,"z":0.0167752988636494}},"b63277":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208086185157299,"y":269.999694824219,"z":0.016770975664258}},"b722cd":{"lock":false,"pos":{"x":36.6243324279785,"y":1.3017281293869,"z":-49.7084655761719},"rot":{"x":0.0208131335675716,"y":269.984252929688,"z":0.0167653895914555}},"b92e9b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.020808594301343,"y":269.999633789063,"z":0.0167710985988379}},"b98ff6":{"lock":false,"pos":{"x":52.9441146850586,"y":1.29755294322968,"z":-84.2202377319336},"rot":{"x":0.0208058711141348,"y":270.009460449219,"z":0.0167746972292662}},"bc498d":{"lock":false,"pos":{"x":40.2900581359863,"y":1.29834342002869,"z":-65.8198547363281},"rot":{"x":0.0208088122308254,"y":269.999450683594,"z":0.0167709570378065}},"bc868c":{"lock":false,"pos":{"x":7.07651281356812,"y":1.32008278369904,"z":-74.9601593017578},"rot":{"x":0.0208091288805008,"y":269.999481201172,"z":0.0167714580893517}},"bdbca5":{"lock":false,"pos":{"x":52.9442443847656,"y":1.29687976837158,"z":-86.5202560424805},"rot":{"x":0.0208046659827232,"y":270.013244628906,"z":0.016775893047452}},"be04d4":{"lock":false,"pos":{"x":40.2900390625,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208050403743982,"y":270.011474609375,"z":0.0167753025889397}},"c1365d":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30293893814087,"z":-65.820198059082},"rot":{"x":0.0208051577210426,"y":270.011169433594,"z":0.0167751796543598}},"c4e958":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428540706635,"z":-61.2203521728516},"rot":{"x":0.0208078399300575,"y":270.002197265625,"z":0.0167719554156065}},"c8716d":{"lock":false,"pos":{"x":7.07653570175171,"y":1.3214293718338,"z":-70.3601226806641},"rot":{"x":0.0208090115338564,"y":269.999664306641,"z":0.0167711675167084}},"cffeb0":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.0208134148269892,"y":269.984008789063,"z":0.0167654249817133}},"d391c7":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29957282543182,"z":-77.3202438354492},"rot":{"x":0.0208085011690855,"y":270,"z":0.0167710948735476}},"d5605f":{"lock":false,"pos":{"x":40.6758728027344,"y":1.32603931427002,"z":-49.7128486633301},"rot":{"x":0.0208086594939232,"y":269.999816894531,"z":0.0167700685560703}},"d86b0d":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29699695110321,"z":-70.4198760986328},"rot":{"x":0.0208050981163979,"y":270.011657714844,"z":0.0167753770947456}},"dadcc3":{"lock":false,"pos":{"x":52.9442138671875,"y":1.3063051700592,"z":-54.3203430175781},"rot":{"x":0.0208133850246668,"y":269.984008789063,"z":0.0167653672397137}},"ddaded":{"lock":false,"pos":{"x":19.3437099456787,"y":1.29451763629913,"z":-56.5678901672363},"rot":{"x":0.0208087582141161,"y":269.999481201172,"z":0.016770189628005}},"dde850":{"lock":false,"pos":{"x":7.07655096054077,"y":1.32816159725189,"z":-47.3604888916016},"rot":{"x":0.0208085924386978,"y":270.000396728516,"z":0.0167710743844509}},"e0721f":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30950915813446,"z":-49.7709655761719},"rot":{"x":0.0208087842911482,"y":269.999755859375,"z":0.0167711209505796}},"e07aab":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.020804051309824,"y":270.014984130859,"z":0.0167767032980919}},"e4ceae":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.0208050273358822,"y":270.011474609375,"z":0.0167753677815199}},"e50ca0":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208085887134075,"y":269.999755859375,"z":0.0167709738016129}},"e87c2d":{"lock":false,"pos":{"x":7.07654714584351,"y":1.3274884223938,"z":-49.6604766845703},"rot":{"x":0.020808594301343,"y":270.00048828125,"z":0.0167711768299341}},"eaafcf":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208131372928619,"y":269.984069824219,"z":0.0167653374373913}},"ebf4c0":{"lock":false,"pos":{"x":7.07653713226318,"y":1.32344889640808,"z":-63.4604873657227},"rot":{"x":0.0208090376108885,"y":269.999877929688,"z":0.0167712233960629}},"ef2ecd":{"lock":false,"pos":{"x":10.6296834945679,"y":1.31801056861877,"z":-86.4480361938477},"rot":{"x":0.020808607339859,"y":269.999816894531,"z":0.0167710799723864}},"f22453":{"lock":false,"pos":{"x":52.9442100524902,"y":1.3069783449173,"z":-52.0203399658203},"rot":{"x":0.020808519795537,"y":269.999755859375,"z":0.0167709589004517}},"f75ae4":{"lock":false,"pos":{"x":7.07651996612549,"y":1.31940948963165,"z":-77.2600555419922},"rot":{"x":0.0208091493695974,"y":269.999969482422,"z":0.0167716313153505}},"f86ed0":{"lock":false,"pos":{"x":7.07654428482056,"y":1.32681512832642,"z":-51.9604797363281},"rot":{"x":0.020808408036828,"y":270.000427246094,"z":0.0167713183909655}},"f99e05":{"lock":false,"pos":{"x":44.2130165100098,"y":1.31039607524872,"z":-91.0974273681641},"rot":{"x":0.0208132099360228,"y":269.984924316406,"z":0.0167646240442991}},"fab3a9":{"lock":false,"pos":{"x":40.2900657653809,"y":1.30103635787964,"z":-56.6199951171875},"rot":{"x":0.0208053775131702,"y":270.01123046875,"z":0.0167752597481012}},"fbd97e":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30563187599182,"z":-56.6203460693359},"rot":{"x":0.0208078734576702,"y":270.002197265625,"z":0.0167717821896076}},"fc5406":{"lock":false,"pos":{"x":10.6137104034424,"y":1.3166606426239,"z":-91.0400085449219},"rot":{"x":0.0208087395876646,"y":269.999816894531,"z":0.0167708862572908}},"fc790a":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30883586406708,"z":-52.0709686279297},"rot":{"x":0.0208129156380892,"y":269.984436035156,"z":0.016765596345067}},"fd1c20":{"lock":false,"pos":{"x":40.6758651733398,"y":1.32132661342621,"z":-65.8127288818359},"rot":{"x":0.0208073426038027,"y":270.004455566406,"z":0.0167714562267065}},"fd3cda":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30159246921539,"z":-70.4202117919922},"rot":{"x":0.0208077505230904,"y":270.002319335938,"z":0.0167719703167677}},"ff2be9":{"lock":false,"pos":{"x":40.6758651733398,"y":1.32681381702423,"z":-63.5128746032715},"rot":{"x":0.0208086092025042,"y":269.999969482422,"z":0.0167697928845882}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Seeker -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.3 - posY: 1.67 - posZ: -69.36 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63.ttslua b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63.ttslua rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16.ttslua diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16.yaml new file mode 100644 index 000000000..60fdbbfef --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16.yaml @@ -0,0 +1,114 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker d99b16/Card Blasphemous Covenant (2) 86d109.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Stirring Up Trouble (1) e99f0d.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Higher Education (3) 0d3413.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Surprising Find (1) 0d3d1a.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Old Book of Lore (3) 0d88ac.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Disc of Itzamna (2) 117137.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Preposterous Sketches (2) 15a1bb.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Miskatonic Archaeology Funding (4) + 1a1b58.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Esoteric Atlas (2) 2172e2.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Deck Archaic Glyphs (3) 22c4b1.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Quick Study (2) 26d70e.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Pnakotic Manuscripts (5) 300569.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card I''ve got a plan! (2) 344e90.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Barricade (3) 3469e0.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Deck Forbidden Tome (3) 367e5c.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Studious (3) 384258.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Shortcut (2) 404410.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Eidetic Memory (3) 423ea2.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card In the Know (1) 488fab.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Deck Strange Solution (4) 4a29bd.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card The Eye of Truth (5) 552689.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Otherworldly Compass (2) 562c05.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Otherworld Codex (2) 5f8011.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Deck Dream Diary (3) 6465d8.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Feed the Mind (3) 659f2d.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Pathfinder (1) 683123.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Glimpse the Unthinkable (1) 6e4d54.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Logical Reasoning (4) 6f6976.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Arcane Insight (4) 6fab5a.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Cryptic Research (4) 791d5f.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Deck Ancient Stone (4) 7b5a65.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Magnifying Glass (1) 8343e5.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Whitton Greene (2) 854c79.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Cryptic Writings (2) 870bdc.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Ancient Stone (1) 8b1863.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Scientific Theory (1) 8cdfc7.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Perception (2) 96b5ed.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card The Necronomicon (5) 96ba38.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Expose Weakness (1) 97ed44.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Mind Over Matter (2) 9b1c5b.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card No Stone Unturned (5) a641de.yaml' +- !include "Custom_Model_Bag Seeker d99b16/Card Death \u2022 XIII (1) add7c9.yaml" +- !include 'Custom_Model_Bag Seeker d99b16/Card Farsight (4) b4121c.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Abigail Foreman (4) b63277.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Grisly Totem (3) b722cd.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Deciphered Reality (5) b98ff6.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Segment of Onyx (1) bc498d.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Glimpse the Unthinkable (5) bdbca5.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Seeking Answers (2) c1365d.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Scroll of Secrets (3) cffeb0.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Expose Weakness (3) d391c7.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Encyclopedia (2) d86b0d.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Deduction (2) e0721f.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Extensive Research (1) e07aab.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Hyperawareness (2) e4ceae.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Esoteric Atlas (1) e50ca0.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Forewarned (1) f22453.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Library Docent (1) fab3a9.yaml' +- !include 'Custom_Model_Bag Seeker d99b16/Card Truth from Fiction (2) fd3cda.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: '' +DragSelectable: true +GMNotes: '' +GUID: d99b16 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Seeker d99b16.ttslua' +LuaScriptState: '{"ml":{"037da2":{"lock":false,"pos":{"x":7.0765,"y":1.3194,"z":-77.26},"rot":{"x":0.0208,"y":270.0044,"z":0.0168}},"0d3413":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30038166046143,"z":-54.3084373474121},"rot":{"x":0.0208135452121496,"y":269.984130859375,"z":0.0167649015784264}},"0d3d1a":{"lock":false,"pos":{"x":58.0996589660645,"y":1.31018245220184,"z":-47.4709777832031},"rot":{"x":0.0208096764981747,"y":269.99560546875,"z":0.0167697537690401}},"0d88ac":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29970848560333,"z":-56.6084403991699},"rot":{"x":0.020813662558794,"y":269.984130859375,"z":0.0167651195079088}},"117137":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29699695110321,"z":-70.4198684692383},"rot":{"x":0.0208062455058098,"y":270.01171875,"z":0.0167758595198393}},"15a1bb":{"lock":false,"pos":{"x":52.944206237793,"y":1.30293893814087,"z":-65.8202056884766},"rot":{"x":0.0208074115216732,"y":270.002258300781,"z":0.0167705472558737}},"1a1b58":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29499566555023,"z":-72.7083969116211},"rot":{"x":0.0208062380552292,"y":270.01123046875,"z":0.0167753864079714}},"2172e2":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29565048217773,"z":-75.0199966430664},"rot":{"x":0.0208058170974255,"y":270.01123046875,"z":0.016775343567133}},"22c4b1":{"lock":false,"pos":{"x":40.2742691040039,"y":1.3133761882782,"z":-88.8093566894531},"rot":{"x":0.0208147652447224,"y":269.984893798828,"z":0.0167664028704166}},"26d70e":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208047293126583,"y":270.015655517578,"z":0.0167774185538292}},"300569":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29364931583405,"z":-77.3083267211914},"rot":{"x":0.0208061747252941,"y":270.005340576172,"z":0.0167729835957289}},"344e90":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428540706635,"z":-61.2203521728516},"rot":{"x":0.0208056177943945,"y":270.011260986328,"z":0.0167746227234602}},"3469e0":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30024600028992,"z":-75.0203399658203},"rot":{"x":0.020807784050703,"y":270.002197265625,"z":0.0167698990553617}},"367e5c":{"lock":false,"pos":{"x":36.6243362426758,"y":1.31868195533752,"z":-49.7084617614746},"rot":{"x":0.0208057407289743,"y":270.011169433594,"z":0.0167744066566229}},"384258":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29836189746857,"z":-61.2084465026855},"rot":{"x":0.0208135508000851,"y":269.983917236328,"z":0.0167649332433939}},"3c0d81":{"lock":false,"pos":{"x":10.6138734817505,"y":1.31733238697052,"z":-88.7451629638672},"rot":{"x":0.0208089593797922,"y":269.999938964844,"z":0.0167716406285763}},"404410":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30159246921539,"z":-70.4202117919922},"rot":{"x":0.0208075251430273,"y":270.002349853516,"z":0.016770638525486}},"423ea2":{"lock":false,"pos":{"x":52.944206237793,"y":1.29957270622253,"z":-77.3202438354492},"rot":{"x":0.020808532834053,"y":270,"z":0.016769191250205}},"488fab":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170965194702,"z":-54.3199996948242},"rot":{"x":0.0208086092025042,"y":269.999694824219,"z":0.0167709644883871}},"4a29bd":{"lock":false,"pos":{"x":36.6243362426758,"y":1.32090437412262,"z":-75.0084228515625},"rot":{"x":0.0208107065409422,"y":269.999481201172,"z":0.016771649941802}},"53eaa9":{"lock":false,"pos":{"x":7.07654333114624,"y":1.32277584075928,"z":-65.7601165771484},"rot":{"x":0.0208094976842403,"y":269.999755859375,"z":0.0167715046554804}},"552689":{"lock":false,"pos":{"x":58.099666595459,"y":1.30816280841827,"z":-54.3709716796875},"rot":{"x":0.0208169873803854,"y":269.970977783203,"z":0.0167606212198734}},"562c05":{"lock":false,"pos":{"x":40.2920837402344,"y":1.29363131523132,"z":-81.9201202392578},"rot":{"x":0.0208061765879393,"y":270.011352539063,"z":0.0167755149304867}},"5bdc77":{"lock":false,"pos":{"x":7.07654094696045,"y":1.32210242748261,"z":-68.0601196289063},"rot":{"x":0.020809318870306,"y":269.999877929688,"z":0.0167716238647699}},"5d4212":{"lock":false,"pos":{"x":40.2899627685547,"y":1.29295742511749,"z":-84.2198867797852},"rot":{"x":0.0208051223307848,"y":270.011291503906,"z":0.0167752541601658}},"5f8011":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29430389404297,"z":-79.6199035644531},"rot":{"x":0.0208057668060064,"y":270.011474609375,"z":0.0167762991040945}},"6465d8":{"lock":false,"pos":{"x":40.2741088867188,"y":1.31270098686218,"z":-91.1157989501953},"rot":{"x":0.0208196602761745,"y":269.968811035156,"z":0.0167605970054865}},"659f2d":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30240142345428,"z":-47.4084358215332},"rot":{"x":0.020813575014472,"y":269.984313964844,"z":0.016765259206295}},"683123":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208087358623743,"y":269.99951171875,"z":0.0167709458619356}},"6e4d54":{"lock":false,"pos":{"x":52.9442253112793,"y":1.3063051700592,"z":-54.3203315734863},"rot":{"x":0.0208052564412355,"y":270.011291503906,"z":0.0167751219123602}},"6f6976":{"lock":false,"pos":{"x":52.9441184997559,"y":1.29755294322968,"z":-84.2202377319336},"rot":{"x":0.0208085421472788,"y":270.000122070313,"z":0.016769165173173}},"6fab5a":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29701554775238,"z":-65.8083038330078},"rot":{"x":0.0208097118884325,"y":269.999664306641,"z":0.0167714897543192}},"73255e":{"lock":false,"pos":{"x":36.6243476867676,"y":1.31935524940491,"z":-47.4084320068359},"rot":{"x":0.0208136457949877,"y":269.984313964844,"z":0.0167664084583521}},"7337c1":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083145141602},"rot":{"x":0.0208085253834724,"y":269.999725341797,"z":0.0167711153626442}},"791d5f":{"lock":false,"pos":{"x":52.9462432861328,"y":1.2982269525528,"z":-81.9204635620117},"rot":{"x":0.0208083353936672,"y":270.000305175781,"z":0.0167693682014942}},"7b5a65":{"lock":false,"pos":{"x":36.6243362426758,"y":1.31811010837555,"z":-68.1082992553711},"rot":{"x":0.0208076350390911,"y":269.999572753906,"z":0.0167704727500677}},"8343e5":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036318302155,"z":-58.9200057983398},"rot":{"x":0.0208086185157299,"y":269.999542236328,"z":0.0167709663510323}},"854c79":{"lock":false,"pos":{"x":40.2900886535645,"y":1.29228413105011,"z":-86.5199127197266},"rot":{"x":0.0208059661090374,"y":270.01123046875,"z":0.0167757142335176}},"86d109":{"lock":false,"pos":{"x":40.2900543212891,"y":1.2976701259613,"z":-68.1198577880859},"rot":{"x":0.0208084471523762,"y":269.998718261719,"z":0.0167706422507763}},"870bdc":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30495870113373,"z":-58.9203491210938},"rot":{"x":0.0208055749535561,"y":270.011169433594,"z":0.0167747605592012}},"8b1863":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208084397017956,"y":269.999847412109,"z":0.016770888119936}},"8c4d07":{"lock":false,"pos":{"x":52.944206237793,"y":1.30293893814087,"z":-65.8202056884766},"rot":{"x":0.0208080857992172,"y":270.002349853516,"z":0.0167721528559923}},"8cdfc7":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901671409607,"z":-63.5200119018555},"rot":{"x":0.020808594301343,"y":269.999420166016,"z":0.0167709793895483}},"90e0af":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208087228238583,"y":269.999603271484,"z":0.016771050170064}},"96b5ed":{"lock":false,"pos":{"x":58.099666595459,"y":1.30883598327637,"z":-52.0709648132324},"rot":{"x":0.0208051018416882,"y":270.011260986328,"z":0.0167749132961035}},"96ba38":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29297602176666,"z":-79.6082916259766},"rot":{"x":0.0208080112934113,"y":270.005249023438,"z":0.0167735610157251}},"96ec75":{"lock":false,"pos":{"x":7.07653141021729,"y":1.32075607776642,"z":-72.6601257324219},"rot":{"x":0.020809406414628,"y":269.999755859375,"z":0.0167715381830931}},"97ed44":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208086092025042,"y":269.999694824219,"z":0.0167712606489658}},"9b1c5b":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30361223220825,"z":-63.5203552246094},"rot":{"x":0.020805174484849,"y":270.011199951172,"z":0.0167740415781736}},"a641de":{"lock":false,"pos":{"x":52.9282684326172,"y":1.2955287694931,"z":-91.1161422729492},"rot":{"x":0.0208085980266333,"y":270.000122070313,"z":0.0167691260576248}},"a781f4":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30495882034302,"z":-58.9203491210938},"rot":{"x":0.0208078641444445,"y":270.002197265625,"z":0.0167722031474113}},"add7c9":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208085626363754,"y":269.999786376953,"z":0.0167709924280643}},"afb8cf":{"lock":false,"pos":{"x":40.6758728027344,"y":1.32536602020264,"z":-52.0128517150879},"rot":{"x":0.0208085291087627,"y":270.000427246094,"z":0.0167702343314886}},"b4121c":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29566895961761,"z":-70.4083099365234},"rot":{"x":0.0208063498139381,"y":270.01123046875,"z":0.0167755018919706}},"b63277":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29768872261047,"z":-63.5084495544434},"rot":{"x":0.0208085030317307,"y":269.999694824219,"z":0.0167699977755547}},"b722cd":{"lock":false,"pos":{"x":36.6243362426758,"y":1.30105495452881,"z":-52.0084266662598},"rot":{"x":0.0208131112158298,"y":269.984252929688,"z":0.016765184700489}},"b92e9b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.020808594301343,"y":269.999633789063,"z":0.0167710985988379}},"b98ff6":{"lock":false,"pos":{"x":52.9442443847656,"y":1.29687976837158,"z":-86.5202560424805},"rot":{"x":0.0208053644746542,"y":270.009521484375,"z":0.0167733896523714}},"bc498d":{"lock":false,"pos":{"x":40.2900581359863,"y":1.29834342002869,"z":-65.8198547363281},"rot":{"x":0.0208087749779224,"y":269.999450683594,"z":0.0167711395770311}},"bc868c":{"lock":false,"pos":{"x":7.07651281356812,"y":1.32008278369904,"z":-74.9601593017578},"rot":{"x":0.0208091288805008,"y":269.999481201172,"z":0.0167714580893517}},"bdbca5":{"lock":false,"pos":{"x":52.9284248352051,"y":1.29620397090912,"z":-88.809700012207},"rot":{"x":0.0208044350147247,"y":270.013305664063,"z":0.0167760346084833}},"be04d4":{"lock":false,"pos":{"x":40.2900390625,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208050403743982,"y":270.011474609375,"z":0.0167753025889397}},"c1365d":{"lock":false,"pos":{"x":52.944206237793,"y":1.30226576328278,"z":-68.1202087402344},"rot":{"x":0.0208051148802042,"y":270.01123046875,"z":0.0167738441377878}},"c4e958":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30428540706635,"z":-61.2203521728516},"rot":{"x":0.0208078399300575,"y":270.002197265625,"z":0.0167719554156065}},"c8716d":{"lock":false,"pos":{"x":7.07653570175171,"y":1.3214293718338,"z":-70.3601226806641},"rot":{"x":0.0208090115338564,"y":269.999664306641,"z":0.0167711675167084}},"cffeb0":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29903519153595,"z":-58.9084434509277},"rot":{"x":0.0208135731518269,"y":269.984008789063,"z":0.0167648307979107}},"d391c7":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208081752061844,"y":270.000061035156,"z":0.0167700406163931}},"d5605f":{"lock":false,"pos":{"x":40.6758728027344,"y":1.32603931427002,"z":-49.7128486633301},"rot":{"x":0.0208086594939232,"y":269.999816894531,"z":0.0167700685560703}},"d86b0d":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29632353782654,"z":-72.7199859619141},"rot":{"x":0.0208059288561344,"y":270.011627197266,"z":0.0167759340256453}},"dadcc3":{"lock":false,"pos":{"x":52.9442138671875,"y":1.3063051700592,"z":-54.3203430175781},"rot":{"x":0.0208133850246668,"y":269.984008789063,"z":0.0167653672397137}},"ddaded":{"lock":false,"pos":{"x":19.3437099456787,"y":1.29451763629913,"z":-56.5678901672363},"rot":{"x":0.0208087582141161,"y":269.999481201172,"z":0.016770189628005}},"dde850":{"lock":false,"pos":{"x":7.07655096054077,"y":1.32816159725189,"z":-47.3604888916016},"rot":{"x":0.0208085924386978,"y":270.000396728516,"z":0.0167710743844509}},"e0721f":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30950927734375,"z":-49.7709655761719},"rot":{"x":0.0208086743950844,"y":269.999755859375,"z":0.0167709551751614}},"e07aab":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208041667938232,"y":270.014984130859,"z":0.0167763959616423}},"e4ceae":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29497718811035,"z":-77.3199005126953},"rot":{"x":0.0208061467856169,"y":270.011444091797,"z":0.0167754273861647}},"e50ca0":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208086743950844,"y":269.999755859375,"z":0.0167708694934845}},"e87c2d":{"lock":false,"pos":{"x":7.07654714584351,"y":1.3274884223938,"z":-49.6604766845703},"rot":{"x":0.020808594301343,"y":270.00048828125,"z":0.0167711768299341}},"e99f0d":{"lock":false,"pos":{"x":52.9442176818848,"y":1.30563187599182,"z":-56.6203422546387},"rot":{"x":0.0208089593797922,"y":269.998962402344,"z":0.0167701579630375}},"eaafcf":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208131372928619,"y":269.984069824219,"z":0.0167653374373913}},"ebf4c0":{"lock":false,"pos":{"x":7.07653713226318,"y":1.32344889640808,"z":-63.4604873657227},"rot":{"x":0.0208090376108885,"y":269.999877929688,"z":0.0167712233960629}},"ef2ecd":{"lock":false,"pos":{"x":10.6296834945679,"y":1.31801056861877,"z":-86.4480361938477},"rot":{"x":0.020808607339859,"y":269.999816894531,"z":0.0167710799723864}},"f22453":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30697846412659,"z":-52.0203399658203},"rot":{"x":0.0208084303885698,"y":269.999755859375,"z":0.0167709495872259}},"f75ae4":{"lock":false,"pos":{"x":7.07651996612549,"y":1.31940948963165,"z":-77.2600555419922},"rot":{"x":0.0208091493695974,"y":269.999969482422,"z":0.0167716313153505}},"f86ed0":{"lock":false,"pos":{"x":7.07654428482056,"y":1.32681512832642,"z":-51.9604797363281},"rot":{"x":0.020808408036828,"y":270.000427246094,"z":0.0167713183909655}},"f99e05":{"lock":false,"pos":{"x":44.2130165100098,"y":1.31039607524872,"z":-91.0974273681641},"rot":{"x":0.0208132099360228,"y":269.984924316406,"z":0.0167646240442991}},"fab3a9":{"lock":false,"pos":{"x":40.2900657653809,"y":1.30103635787964,"z":-56.6199951171875},"rot":{"x":0.0208053700625896,"y":270.01123046875,"z":0.0167752765119076}},"fbd97e":{"lock":false,"pos":{"x":52.9442138671875,"y":1.30563187599182,"z":-56.6203460693359},"rot":{"x":0.0208078734576702,"y":270.002197265625,"z":0.0167717821896076}},"fc5406":{"lock":false,"pos":{"x":10.6137104034424,"y":1.3166606426239,"z":-91.0400085449219},"rot":{"x":0.0208087395876646,"y":269.999816894531,"z":0.0167708862572908}},"fc790a":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30883586406708,"z":-52.0709686279297},"rot":{"x":0.0208129156380892,"y":269.984436035156,"z":0.016765596345067}},"fd1c20":{"lock":false,"pos":{"x":40.6758651733398,"y":1.32132661342621,"z":-65.8127288818359},"rot":{"x":0.0208073426038027,"y":270.004455566406,"z":0.0167714562267065}},"fd3cda":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30091917514801,"z":-72.720329284668},"rot":{"x":0.0208078119903803,"y":270.002380371094,"z":0.01677006483078}},"ff2be9":{"lock":false,"pos":{"x":40.6758651733398,"y":1.32681381702423,"z":-63.5128746032715},"rot":{"x":0.0208086092025042,"y":269.999969482422,"z":0.0167697928845882}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.3 + posY: 1.66 + posZ: -69.36 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Abigail Foreman (4) b63277.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Abigail Foreman (4) b63277.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Abigail Foreman (4) b63277.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Abigail Foreman (4) b63277.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Ancient Stone (1) 8b1863.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Ancient Stone (1) 8b1863.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Ancient Stone (1) 8b1863.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Ancient Stone (1) 8b1863.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Arcane Insight (4) 6fab5a.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Arcane Insight (4) 6fab5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Arcane Insight (4) 6fab5a.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Arcane Insight (4) 6fab5a.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Barricade (3) 3469e0.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Barricade (3) 3469e0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Barricade (3) 3469e0.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Barricade (3) 3469e0.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Blasphemous Covenant (2) 86d109.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Blasphemous Covenant (2) 86d109.yaml new file mode 100644 index 000000000..ca993eccf --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Blasphemous Covenant (2) 86d109.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553105 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 86d109 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Blasphemous Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.3 + posY: 1.41 + posZ: -69.36 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Cryptic Research (4) 791d5f.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Cryptic Research (4) 791d5f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Cryptic Research (4) 791d5f.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Cryptic Research (4) 791d5f.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Cryptic Writings (2) 870bdc.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Cryptic Writings (2) 870bdc.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Cryptic Writings (2) 870bdc.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Cryptic Writings (2) 870bdc.yaml index 1b1afe551..9679ce42e 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Cryptic Writings (2) 870bdc.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Cryptic Writings (2) 870bdc.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266222 +CardID: 554522 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Death • XIII (1) add7c9.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Death • XIII (1) add7c9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Death • XIII (1) add7c9.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Death • XIII (1) add7c9.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Deciphered Reality (5) b98ff6.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Deciphered Reality (5) b98ff6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Deciphered Reality (5) b98ff6.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Deciphered Reality (5) b98ff6.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Deduction (2) e0721f.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Deduction (2) e0721f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Deduction (2) e0721f.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Deduction (2) e0721f.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Disc of Itzamna (2) 117137.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Disc of Itzamna (2) 117137.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Disc of Itzamna (2) 117137.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Disc of Itzamna (2) 117137.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Eidetic Memory (3) 423ea2.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Eidetic Memory (3) 423ea2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Eidetic Memory (3) 423ea2.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Eidetic Memory (3) 423ea2.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Encyclopedia (2) d86b0d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Encyclopedia (2) d86b0d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Encyclopedia (2) d86b0d.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Encyclopedia (2) d86b0d.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Esoteric Atlas (1) e50ca0.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Esoteric Atlas (1) e50ca0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Esoteric Atlas (1) e50ca0.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Esoteric Atlas (1) e50ca0.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Esoteric Atlas (2) 2172e2.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Esoteric Atlas (2) 2172e2.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Esoteric Atlas (2) 2172e2.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Esoteric Atlas (2) 2172e2.yaml index 64b61a8fa..6ccd03672 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Esoteric Atlas (2) 2172e2.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Esoteric Atlas (2) 2172e2.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266220 +CardID: 554020 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Expose Weakness (1) 97ed44.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Expose Weakness (1) 97ed44.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Expose Weakness (1) 97ed44.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Expose Weakness (1) 97ed44.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Expose Weakness (3) d391c7.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Expose Weakness (3) d391c7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Expose Weakness (3) d391c7.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Expose Weakness (3) d391c7.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Extensive Research (1) e07aab.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Extensive Research (1) e07aab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Extensive Research (1) e07aab.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Extensive Research (1) e07aab.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Farsight (4) b4121c.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Farsight (4) b4121c.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Farsight (4) b4121c.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Farsight (4) b4121c.yaml index 6181d4579..73284362a 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Farsight (4) b4121c.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Farsight (4) b4121c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266229 +CardID: 554929 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Feed the Mind (3) 659f2d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Feed the Mind (3) 659f2d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Feed the Mind (3) 659f2d.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Feed the Mind (3) 659f2d.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Forewarned (1) f22453.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Forewarned (1) f22453.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Forewarned (1) f22453.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Forewarned (1) f22453.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Glimpse the Unthinkable (1) 6e4d54.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Glimpse the Unthinkable (1) 6e4d54.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Glimpse the Unthinkable (1) 6e4d54.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Glimpse the Unthinkable (1) 6e4d54.yaml index 1ab5d2504..788aef355 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Glimpse the Unthinkable (1) 6e4d54.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Glimpse the Unthinkable (1) 6e4d54.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266219 +CardID: 554319 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Glimpse the Unthinkable (5) bdbca5.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Glimpse the Unthinkable (5) bdbca5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Glimpse the Unthinkable (5) bdbca5.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Glimpse the Unthinkable (5) bdbca5.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Grisly Totem (3) b722cd.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Grisly Totem (3) b722cd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Grisly Totem (3) b722cd.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Grisly Totem (3) b722cd.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Higher Education (3) 0d3413.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Higher Education (3) 0d3413.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Higher Education (3) 0d3413.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Higher Education (3) 0d3413.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Hyperawareness (2) e4ceae.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Hyperawareness (2) e4ceae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Hyperawareness (2) e4ceae.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Hyperawareness (2) e4ceae.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card I've got a plan! (2) 344e90.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card I've got a plan! (2) 344e90.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card I've got a plan! (2) 344e90.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card I've got a plan! (2) 344e90.yaml index e9608a975..3a10041ea 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card I've got a plan! (2) 344e90.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card I've got a plan! (2) 344e90.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266223 +CardID: 554123 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card In the Know (1) 488fab.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card In the Know (1) 488fab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card In the Know (1) 488fab.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card In the Know (1) 488fab.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Library Docent (1) fab3a9.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Library Docent (1) fab3a9.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Library Docent (1) fab3a9.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Library Docent (1) fab3a9.yaml index 7943baf9b..9ff2039b3 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Library Docent (1) fab3a9.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Library Docent (1) fab3a9.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266218 +CardID: 555118 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5551': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Logical Reasoning (4) 6f6976.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Logical Reasoning (4) 6f6976.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Logical Reasoning (4) 6f6976.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Logical Reasoning (4) 6f6976.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Magnifying Glass (1) 8343e5.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Magnifying Glass (1) 8343e5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Magnifying Glass (1) 8343e5.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Magnifying Glass (1) 8343e5.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Mind Over Matter (2) 9b1c5b.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Mind Over Matter (2) 9b1c5b.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Mind Over Matter (2) 9b1c5b.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Mind Over Matter (2) 9b1c5b.yaml index f450a600c..ee82ff372 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Mind Over Matter (2) 9b1c5b.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Mind Over Matter (2) 9b1c5b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266224 +CardID: 554824 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml index 68ea4cb19..e69faaf34 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266230 +CardID: 553930 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card No Stone Unturned (5) a641de.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card No Stone Unturned (5) a641de.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card No Stone Unturned (5) a641de.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card No Stone Unturned (5) a641de.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Old Book of Lore (3) 0d88ac.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Old Book of Lore (3) 0d88ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Old Book of Lore (3) 0d88ac.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Old Book of Lore (3) 0d88ac.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Otherworld Codex (2) 5f8011.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Otherworld Codex (2) 5f8011.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Otherworld Codex (2) 5f8011.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Otherworld Codex (2) 5f8011.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Otherworldly Compass (2) 562c05.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Otherworldly Compass (2) 562c05.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Otherworldly Compass (2) 562c05.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Otherworldly Compass (2) 562c05.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Pathfinder (1) 683123.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Pathfinder (1) 683123.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Pathfinder (1) 683123.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Pathfinder (1) 683123.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Perception (2) 96b5ed.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Perception (2) 96b5ed.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Perception (2) 96b5ed.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Perception (2) 96b5ed.yaml index c1356cda5..65a5a3a46 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Perception (2) 96b5ed.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Perception (2) 96b5ed.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266226 +CardID: 554626 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Pnakotic Manuscripts (5) 300569.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Pnakotic Manuscripts (5) 300569.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Pnakotic Manuscripts (5) 300569.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Pnakotic Manuscripts (5) 300569.yaml index b70be4315..7d7d439d0 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Pnakotic Manuscripts (5) 300569.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Pnakotic Manuscripts (5) 300569.yaml @@ -37,7 +37,7 @@ Transform: posY: 1.41 posZ: -69.36 rotX: 0.02 - rotY: 270.0 + rotY: 270.01 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Preposterous Sketches (2) 15a1bb.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Preposterous Sketches (2) 15a1bb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Preposterous Sketches (2) 15a1bb.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Preposterous Sketches (2) 15a1bb.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Quick Study (2) 26d70e.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Quick Study (2) 26d70e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Quick Study (2) 26d70e.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Quick Study (2) 26d70e.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Scientific Theory (1) 8cdfc7.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Scientific Theory (1) 8cdfc7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Scientific Theory (1) 8cdfc7.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Scientific Theory (1) 8cdfc7.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Scroll of Secrets (3) cffeb0.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Scroll of Secrets (3) cffeb0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Scroll of Secrets (3) cffeb0.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Scroll of Secrets (3) cffeb0.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Seeking Answers (2) c1365d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Seeking Answers (2) c1365d.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Seeking Answers (2) c1365d.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Seeking Answers (2) c1365d.yaml index 499abcf85..48ae6f1cd 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Seeking Answers (2) c1365d.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Seeking Answers (2) c1365d.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266225 +CardID: 555025 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Segment of Onyx (1) bc498d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Segment of Onyx (1) bc498d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Segment of Onyx (1) bc498d.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Segment of Onyx (1) bc498d.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Shortcut (2) 404410.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Shortcut (2) 404410.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Shortcut (2) 404410.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Shortcut (2) 404410.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Stirring Up Trouble (1) e99f0d.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Stirring Up Trouble (1) e99f0d.yaml new file mode 100644 index 000000000..3e7bd381b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Stirring Up Trouble (1) e99f0d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e99f0d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Stirring Up Trouble (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.3 + posY: 1.41 + posZ: -69.36 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Studious (3) 384258.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Studious (3) 384258.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Studious (3) 384258.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Studious (3) 384258.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Surprising Find (1) 0d3d1a.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Surprising Find (1) 0d3d1a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Surprising Find (1) 0d3d1a.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Surprising Find (1) 0d3d1a.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card The Eye of Truth (5) 552689.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card The Eye of Truth (5) 552689.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card The Eye of Truth (5) 552689.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card The Eye of Truth (5) 552689.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card The Necronomicon (5) 96ba38.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card The Necronomicon (5) 96ba38.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card The Necronomicon (5) 96ba38.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card The Necronomicon (5) 96ba38.yaml index d952f6734..25b0b137d 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card The Necronomicon (5) 96ba38.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card The Necronomicon (5) 96ba38.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266231 +CardID: 554731 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Truth from Fiction (2) fd3cda.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Truth from Fiction (2) fd3cda.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Truth from Fiction (2) fd3cda.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Truth from Fiction (2) fd3cda.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Whitton Greene (2) 854c79.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Whitton Greene (2) 854c79.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Whitton Greene (2) 854c79.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Whitton Greene (2) 854c79.yaml index 592198ebf..38bd0f2d1 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Card Whitton Greene (2) 854c79.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Card Whitton Greene (2) 854c79.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266221 +CardID: 554421 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Ancient Stone (4) 7b5a65.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Ancient Stone (4) 7b5a65.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Ancient Stone (4) 7b5a65.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Ancient Stone (4) 7b5a65.yaml index 19bf85323..afe0661f1 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Ancient Stone (4) 7b5a65.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Ancient Stone (4) 7b5a65.yaml @@ -5,24 +5,24 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 545203 + CardID: 262202 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5452': + '2622': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Transient Thoughts + Description: Knowledge of the Elders DragSelectable: true GMNotes: '' - GUID: 037da2 + GUID: bc868c Grid: true GridProjection: false Hands: true @@ -39,12 +39,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 36.6243324 - posY: 1.29576993 - posZ: -70.40832 - rotX: 0.0200902671 - rotY: 269.999817 - rotZ: 0.023067018 + posX: 36.6243439 + posY: 1.360565 + posZ: -70.4083 + rotX: 0.0259069912 + rotY: 269.999634 + rotZ: 0.0144826891 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -95,24 +95,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 262202 + CardID: 545203 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2622': + '5452': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Knowledge of the Elders + Description: Transient Thoughts DragSelectable: true GMNotes: '' - GUID: bc868c + GUID: 037da2 Grid: true GridProjection: false Hands: true @@ -129,12 +129,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 36.6243439 - posY: 1.360565 - posZ: -70.4083 - rotX: 0.0259069912 - rotY: 269.999634 - rotZ: 0.0144826891 + posX: 36.6243324 + posY: 1.29576993 + posZ: -70.40832 + rotX: 0.0200902671 + rotY: 269.999817 + rotZ: 0.023067018 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -157,9 +157,9 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 545203 -- 262201 - 262202 +- 262201 +- 545203 Description: '' DragSelectable: true GMNotes: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Archaic Glyphs (3) 22c4b1.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Archaic Glyphs (3) 22c4b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Archaic Glyphs (3) 22c4b1.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Archaic Glyphs (3) 22c4b1.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Dream Diary (3) 6465d8.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Dream Diary (3) 6465d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Dream Diary (3) 6465d8.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Dream Diary (3) 6465d8.yaml diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Forbidden Tome (3) 367e5c.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Forbidden Tome (3) 367e5c.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Forbidden Tome (3) 367e5c.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Forbidden Tome (3) 367e5c.yaml index 0a291cb65..7f336735d 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Forbidden Tome (3) 367e5c.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Forbidden Tome (3) 367e5c.yaml @@ -5,7 +5,7 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266228 + CardID: 554228 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -50,7 +50,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266227 + CardID: 554227 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -95,7 +95,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' CustomDeck: - '2662': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -104,8 +104,8 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 266228 -- 266227 +- 554228 +- 554227 Description: '' DragSelectable: true GMNotes: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Strange Solution (4) 4a29bd.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Strange Solution (4) 4a29bd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Strange Solution (4) 4a29bd.yaml rename to unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Strange Solution (4) 4a29bd.yaml index 31dd2787c..cf89e9aac 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker 42bb63/Deck Strange Solution (4) 4a29bd.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Custom_Model_Bag Seeker d99b16/Deck Strange Solution (4) 4a29bd.yaml @@ -5,7 +5,7 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 291556 + CardID: 291555 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -19,10 +19,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Restorative Concoction + Description: Acidic Ichor DragSelectable: true GMNotes: '' - GUID: 5bdc77 + GUID: 53eaa9 Grid: true GridProjection: false Hands: true @@ -39,57 +39,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 32.98531 - posY: 1.29569387 - posZ: -65.80828 - rotX: 0.0208085626 - rotY: 269.9996 - rotZ: 0.0167709719 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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 - Type: 0 - UniqueBack: false - Description: Freezing Variant - DragSelectable: true - GMNotes: '' - GUID: ebf4c0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.9852753 - posY: 1.33458686 + posX: 32.9852829 + posY: 1.38252842 posZ: -65.80827 - rotX: 0.0208086241 - rotY: 269.9996 - rotZ: 0.016770687 + rotX: 0.0208094213 + rotY: 269.999664 + rotZ: 0.0167717487 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -140,7 +95,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 291555 + CardID: 291554 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -154,10 +109,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Acidic Ichor + Description: Freezing Variant DragSelectable: true GMNotes: '' - GUID: 53eaa9 + GUID: ebf4c0 Grid: true GridProjection: false Hands: true @@ -174,12 +129,57 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 32.9852829 - posY: 1.38252842 + posX: 32.9852753 + posY: 1.33458686 posZ: -65.80827 - rotX: 0.0208094213 - rotY: 269.999664 - rotZ: 0.0167717487 + rotX: 0.0208086241 + rotY: 269.9996 + rotZ: 0.016770687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- 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 + Type: 0 + UniqueBack: false + Description: Restorative Concoction + DragSelectable: true + GMNotes: '' + GUID: 5bdc77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.98531 + posY: 1.29569387 + posZ: -65.80828 + rotX: 0.0208085626 + rotY: 269.9996 + rotZ: 0.0167709719 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -202,10 +202,10 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 291556 -- 291554 -- 436905 - 291555 +- 436905 +- 291554 +- 291556 Description: '' DragSelectable: true GMNotes: '' diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Ancient Stone (4) 7b5a65.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Ancient Stone (4) 7b5a65.yaml index aa457ef53..62b0a05b4 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Ancient Stone (4) 7b5a65.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Ancient Stone (4) 7b5a65.yaml @@ -5,24 +5,24 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 545203 + CardID: 262202 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5452': + '2622': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Transient Thoughts + Description: Knowledge of the Elders DragSelectable: true GMNotes: '' - GUID: 037da2 + GUID: bc868c Grid: true GridProjection: false Hands: true @@ -39,12 +39,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 36.6243324 - posY: 1.29576993 - posZ: -70.40832 - rotX: 0.0200902671 - rotY: 269.999817 - rotZ: 0.023067018 + posX: 36.6243439 + posY: 1.360565 + posZ: -70.4083 + rotX: 0.0259069912 + rotY: 269.999634 + rotZ: 0.0144826891 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -95,24 +95,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 262202 + CardID: 545203 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2622': + '5452': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Knowledge of the Elders + Description: Transient Thoughts DragSelectable: true GMNotes: '' - GUID: bc868c + GUID: 037da2 Grid: true GridProjection: false Hands: true @@ -129,12 +129,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 36.6243439 - posY: 1.360565 - posZ: -70.4083 - rotX: 0.0259069912 - rotY: 269.999634 - rotZ: 0.0144826891 + posX: 36.6243324 + posY: 1.29576993 + posZ: -70.40832 + rotX: 0.0200902671 + rotY: 269.999817 + rotZ: 0.023067018 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -157,9 +157,9 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 545203 -- 262201 - 262202 +- 262201 +- 545203 Description: '' DragSelectable: true GMNotes: '' @@ -182,7 +182,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.32 - posZ: -65.81 + posZ: -68.11 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Archaic Glyphs (3) 22c4b1.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Archaic Glyphs (3) 22c4b1.yaml index 869507caf..05b451753 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Archaic Glyphs (3) 22c4b1.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Archaic Glyphs (3) 22c4b1.yaml @@ -180,9 +180,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.29 + posX: 40.27 posY: 1.31 - posZ: -86.52 + posZ: -88.81 rotX: 0.02 rotY: 269.98 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Dream Diary (3) 6465d8.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Dream Diary (3) 6465d8.yaml index 966df9aea..10eb248d1 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Dream Diary (3) 6465d8.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Dream Diary (3) 6465d8.yaml @@ -174,7 +174,7 @@ Tooltip: true Transform: posX: 40.27 posY: 1.31 - posZ: -88.81 + posZ: -91.12 rotX: 0.02 rotY: 269.97 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Forbidden Tome (3) 367e5c.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Forbidden Tome (3) 367e5c.yaml index 5d9054062..1b85ef494 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Forbidden Tome (3) 367e5c.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Forbidden Tome (3) 367e5c.yaml @@ -5,7 +5,7 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266228 + CardID: 554228 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -50,7 +50,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266227 + CardID: 554227 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -95,7 +95,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' CustomDeck: - '2662': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/ @@ -104,8 +104,8 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 266228 -- 266227 +- 554228 +- 554227 Description: '' DragSelectable: true GMNotes: '' @@ -128,7 +128,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.32 - posZ: -47.41 + posZ: -49.71 rotX: 0.02 rotY: 270.01 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Strange Solution (4) 4a29bd.yaml b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Strange Solution (4) 4a29bd.yaml index 168498077..a5a99196e 100644 --- a/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Strange Solution (4) 4a29bd.yaml +++ b/unpacked/Custom_Model_Bag Seeker 5ec2fb/Deck Strange Solution (4) 4a29bd.yaml @@ -5,7 +5,7 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 291556 + CardID: 291555 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -19,10 +19,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Restorative Concoction + Description: Acidic Ichor DragSelectable: true GMNotes: '' - GUID: 5bdc77 + GUID: 53eaa9 Grid: true GridProjection: false Hands: true @@ -39,57 +39,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 32.98531 - posY: 1.29569387 - posZ: -65.80828 - rotX: 0.0208085626 - rotY: 269.9996 - rotZ: 0.0167709719 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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 - Type: 0 - UniqueBack: false - Description: Freezing Variant - DragSelectable: true - GMNotes: '' - GUID: ebf4c0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.9852753 - posY: 1.33458686 + posX: 32.9852829 + posY: 1.38252842 posZ: -65.80827 - rotX: 0.0208086241 - rotY: 269.9996 - rotZ: 0.016770687 + rotX: 0.0208094213 + rotY: 269.999664 + rotZ: 0.0167717487 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -140,7 +95,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 291555 + CardID: 291554 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -154,10 +109,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Acidic Ichor + Description: Freezing Variant DragSelectable: true GMNotes: '' - GUID: 53eaa9 + GUID: ebf4c0 Grid: true GridProjection: false Hands: true @@ -174,12 +129,57 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 32.9852829 - posY: 1.38252842 + posX: 32.9852753 + posY: 1.33458686 posZ: -65.80827 - rotX: 0.0208094213 - rotY: 269.999664 - rotZ: 0.0167717487 + rotX: 0.0208086241 + rotY: 269.9996 + rotZ: 0.016770687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- 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 + Type: 0 + UniqueBack: false + Description: Restorative Concoction + DragSelectable: true + GMNotes: '' + GUID: 5bdc77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.98531 + posY: 1.29569387 + posZ: -65.80828 + rotX: 0.0208085626 + rotY: 269.9996 + rotZ: 0.0167709719 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -202,10 +202,10 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 291556 -- 291554 -- 436905 - 291555 +- 436905 +- 291554 +- 291556 Description: '' DragSelectable: true GMNotes: '' @@ -228,7 +228,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.32 - posZ: -72.71 + posZ: -75.01 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b.yaml index c75a0d4df..7a67ac6db 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b.yaml @@ -4,7 +4,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Mariner''s Compass 4e2d75.yaml' - !include 'Custom_Model_Bag Survivor 9c814b/Card Oops! 059ccf.yaml' - !include 'Custom_Model_Bag Survivor 9c814b/Card Not without a fight! 06ea61.yaml' - !include 'Custom_Model_Bag Survivor 9c814b/Card Fight or Flight 0d33ae.yaml' @@ -95,7 +96,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Survivor 9c814b.ttslua' -LuaScriptState: '{"ml":{"059ccf":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.020808182656765,"y":270.002014160156,"z":0.016771974042058}},"06ea61":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208031963557005,"y":270.018615722656,"z":0.0167778488248587}},"0d33ae":{"lock":false,"pos":{"x":53.2285537719727,"y":1.302858710289,"z":74.0412139892578},"rot":{"x":0.0208081677556038,"y":270.002014160156,"z":0.0167718846350908}},"101a41":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379128456116,"z":92.4486846923828},"rot":{"x":0.0208100769668818,"y":269.994873046875,"z":0.0167691577225924}},"121a7c":{"lock":false,"pos":{"x":40.9603233337402,"y":1.29436600208282,"z":60.2487907409668},"rot":{"x":0.0208078734576702,"y":270.0029296875,"z":0.0167721938341856}},"13dd9b":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208076369017363,"y":270.002868652344,"z":0.0167721677571535}},"167af1":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30875563621521,"z":87.7903671264648},"rot":{"x":0.0208029896020889,"y":270.018737792969,"z":0.0167781244963408}},"177855":{"lock":false,"pos":{"x":58.3838310241699,"y":1.3094288110733,"z":90.0903701782227},"rot":{"x":0.0208086613565683,"y":269.999877929688,"z":0.0167710240930319}},"1cccfe":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486709594727},"rot":{"x":0.0208101533353329,"y":269.994842529297,"z":0.0167694315314293}},"1d35ce":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208080690354109,"y":270.002075195313,"z":0.0167720690369606}},"1d75d0":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486724853516},"rot":{"x":0.0208102501928806,"y":269.994842529297,"z":0.0167693626135588}},"1f5400":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29881930351257,"z":60.2411804199219},"rot":{"x":0.0208085644990206,"y":269.999847412109,"z":0.0167709551751614}},"280592":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208079554140568,"y":270.001953125,"z":0.016771798953414}},"2f0a13":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.020808381959796,"y":270.002990722656,"z":0.0167728792876005}},"311dd8":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30740904808044,"z":83.1903610229492},"rot":{"x":0.0208094492554665,"y":270.000183105469,"z":0.0167715847492218}},"391449":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29882001876831,"z":60.243766784668},"rot":{"x":0.0208163801580668,"y":269.973571777344,"z":0.0167616792023182}},"3cfda1":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379128456116,"z":92.4486923217773},"rot":{"x":0.0208001658320427,"y":270.031127929688,"z":0.0167828984558582}},"462616":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30538928508759,"z":76.2903518676758},"rot":{"x":0.0208031293004751,"y":270.018463134766,"z":0.0167778003960848}},"478876":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30555176734924,"z":83.2412185668945},"rot":{"x":0.0208079013973475,"y":270.002014160156,"z":0.0167719945311546}},"4826e4":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208033453673124,"y":270.0185546875,"z":0.0167777985334396}},"48e516":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208101850003004,"y":269.994873046875,"z":0.0167693123221397}},"494ff4":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208076611161232,"y":270.002990722656,"z":0.0167723055928946}},"4aa750":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208077095448971,"y":270.002990722656,"z":0.0167721435427666}},"506474":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30083894729614,"z":67.1411056518555},"rot":{"x":0.0208080969750881,"y":270.002014160156,"z":0.0167719442397356}},"5888da":{"lock":false,"pos":{"x":40.9634170532227,"y":1.2916773557663,"z":51.059757232666},"rot":{"x":0.0208100751042366,"y":269.994873046875,"z":0.0167692899703979}},"59e40d":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208102501928806,"y":269.994873046875,"z":0.0167693477123976}},"59fbb3":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208078846335411,"y":270.002075195313,"z":0.0167718250304461}},"5a3ae9":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29840540885925,"z":74.0486831665039},"rot":{"x":0.0208076313138008,"y":270.002838134766,"z":0.0167722254991531}},"5b4be9":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208081174641848,"y":270.001831054688,"z":0.0167717337608337}},"5c25fa":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486801147461},"rot":{"x":0.0208085626363754,"y":270.002899169922,"z":0.016772672533989}},"5e5a25":{"lock":false,"pos":{"x":40.9634284973145,"y":1.29234755039215,"z":53.3492202758789},"rot":{"x":0.0208077263087034,"y":270.0029296875,"z":0.0167723391205072}},"6002e2":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.8607177734375},"rot":{"x":0.0208082310855389,"y":270.002868652344,"z":0.0167727395892143}},"652ea3":{"lock":false,"pos":{"x":37.4159927368164,"y":1.29981470108032,"z":83.2607345581055},"rot":{"x":0.0208078436553478,"y":270.002685546875,"z":0.0167721323668957}},"65ae2b":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208077821880579,"y":270.002899169922,"z":0.0167719461023808}},"682e84":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0597648620605},"rot":{"x":0.0208077076822519,"y":270.0029296875,"z":0.0167729947715998}},"6d6fc2":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29949247837067,"z":62.5411796569824},"rot":{"x":0.0208078771829605,"y":270.002075195313,"z":0.0167719181627035}},"6dca74":{"lock":false,"pos":{"x":37.4159965515137,"y":1.29914140701294,"z":80.9607315063477},"rot":{"x":0.0208085644990206,"y":269.99853515625,"z":0.0167704485356808}},"7602b0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607147216797},"rot":{"x":0.0208077821880579,"y":270.002807617188,"z":0.0167724005877972}},"7ba744":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208078976720572,"y":270.0029296875,"z":0.0167722404003143}},"7bf464":{"lock":false,"pos":{"x":40.9601707458496,"y":1.29571235179901,"z":64.8486404418945},"rot":{"x":0.0208077225834131,"y":270.002960205078,"z":0.0167723204940557}},"7f09f4":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30353200435638,"z":76.3412246704102},"rot":{"x":0.0208080541342497,"y":270.002014160156,"z":0.0167719051241875}},"819e30":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244481563568,"z":87.8487014770508},"rot":{"x":0.020807608962059,"y":270.002990722656,"z":0.0167721640318632}},"8b361c":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29679954051971,"z":53.3411674499512},"rot":{"x":0.0208078883588314,"y":270.002075195313,"z":0.0167721156030893}},"970a14":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.020534697920084,"y":270.926391601563,"z":0.0171054173260927}},"976f22":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30487847328186,"z":80.9412155151367},"rot":{"x":0.0208080299198627,"y":270.002044677734,"z":0.0167719405144453}},"9b9856":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208080634474754,"y":270.001861572266,"z":0.0167718548327684}},"9eb1c4":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638564586639,"z":67.1486663818359},"rot":{"x":0.0208078622817993,"y":270.002960205078,"z":0.0167722553014755}},"9ede82":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.0208077654242516,"y":270.0029296875,"z":0.0167723800987005}},"a17fe6":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208078008145094,"y":270.002990722656,"z":0.0167722776532173}},"a48ea8":{"lock":false,"pos":{"x":49.5628509521484,"y":1.30557024478912,"z":87.8528060913086},"rot":{"x":0.0208074003458023,"y":270.002044677734,"z":0.01677156239748}},"a5e7d0":{"lock":false,"pos":{"x":49.5628547668457,"y":1.30691683292389,"z":92.4527969360352},"rot":{"x":0.0208081547170877,"y":270.002014160156,"z":0.0167718753218651}},"a92a90":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151224136353,"z":69.4412002563477},"rot":{"x":0.0208103116601706,"y":269.994812011719,"z":0.0167692415416241}},"b1aa47":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30016577243805,"z":64.8410720825195},"rot":{"x":0.0208079945296049,"y":270.002014160156,"z":0.0167721062898636}},"b79b02":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208080019801855,"y":270.002014160156,"z":0.0167719125747681}},"b9c097":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30606257915497,"z":78.5903549194336},"rot":{"x":0.0208032019436359,"y":270.018463134766,"z":0.016777977347374}},"bc7341":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30404281616211,"z":71.6903533935547},"rot":{"x":0.0208030920475721,"y":270.018432617188,"z":0.0167780630290508}},"bce072":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903503417969},"rot":{"x":0.0208031143993139,"y":270.018707275391,"z":0.0167780071496964}},"c5450e":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.0208077393472195,"y":270.002838134766,"z":0.0167723689228296}},"c8505c":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.8607177734375},"rot":{"x":0.0208101198077202,"y":269.994812011719,"z":0.0167692974209785}},"ced615":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208080355077982,"y":270.002014160156,"z":0.0167718399316072}},"d0f713":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903610229492},"rot":{"x":0.0208085626363754,"y":269.999877929688,"z":0.0167713016271591}},"d8aee7":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208078324794769,"y":270.0029296875,"z":0.0167721770703793}},"dbe602":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183446407318,"z":90.1607208251953},"rot":{"x":0.0208076983690262,"y":270.002868652344,"z":0.016772173345089}},"dc4a2c":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.020810067653656,"y":269.994812011719,"z":0.0167693514376879}},"deb334":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208077859133482,"y":270.002990722656,"z":0.0167722441256046}},"df66c1":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30471611022949,"z":73.9903564453125},"rot":{"x":0.0208032019436359,"y":270.018341064453,"z":0.0167777370661497}},"e173d0":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151224136353,"z":69.4412078857422},"rot":{"x":0.0208087377250195,"y":270.001953125,"z":0.016772298142314}},"e5c4f1":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30757141113281,"z":90.141227722168},"rot":{"x":0.020807946100831,"y":270.001922607422,"z":0.0167717933654785}},"ec7a58":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30218553543091,"z":71.7412261962891},"rot":{"x":0.0208080373704433,"y":270.002014160156,"z":0.0167718771845102}},"ee6cf0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208103097975254,"y":269.997192382813,"z":0.0167705938220024}},"f39096":{"lock":false,"pos":{"x":37.4159889221191,"y":1.29846823215485,"z":78.6607284545898},"rot":{"x":0.0208079256117344,"y":270.002655029297,"z":0.0167720727622509}},"f550ac":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30420517921448,"z":78.6412124633789},"rot":{"x":0.0208078548312187,"y":270.002105712891,"z":0.0167719479650259}},"f9eac7":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208074301481247,"y":270.002075195313,"z":0.0167716257274151}},"fe7433":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042517185211,"z":80.9486846923828},"rot":{"x":0.0208077281713486,"y":270.002899169922,"z":0.0167719721794128}},"feab4a":{"lock":false,"pos":{"x":58.3838424682617,"y":1.3094288110733,"z":90.0903854370117},"rot":{"x":0.0208112616091967,"y":269.9892578125,"z":0.0167670007795095}}}}' +LuaScriptState: '{"ml":{"059ccf":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612374305725,"z":51.0517272949219},"rot":{"x":0.0208078492432833,"y":270.002014160156,"z":0.0167720373719931}},"06ea61":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208029393106699,"y":270.018615722656,"z":0.0167780220508575}},"0d33ae":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30285882949829,"z":74.0412139892578},"rot":{"x":0.0208079982548952,"y":270.002014160156,"z":0.0167718920856714}},"101a41":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379140377045,"z":92.4486846923828},"rot":{"x":0.0208100453019142,"y":269.994873046875,"z":0.0167693365365267}},"121a7c":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208079647272825,"y":270.002899169922,"z":0.0167717952281237}},"13dd9b":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183434486389,"z":90.1607284545898},"rot":{"x":0.0208084918558598,"y":270.002807617188,"z":0.0167724788188934}},"167af1":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30875563621521,"z":87.7903671264648},"rot":{"x":0.0208030790090561,"y":270.018737792969,"z":0.0167777072638273}},"177855":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30942893028259,"z":90.0903701782227},"rot":{"x":0.0208084993064404,"y":269.999877929688,"z":0.0167709961533546}},"1cccfe":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907870292664,"z":76.3486709594727},"rot":{"x":0.0208100583404303,"y":269.994842529297,"z":0.0167692583054304}},"1d35ce":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208079963922501,"y":270.002075195313,"z":0.0167718473821878}},"1d75d0":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773223400116,"z":71.7486724853516},"rot":{"x":0.0208100508898497,"y":269.994842529297,"z":0.0167692452669144}},"1f5400":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29881930351257,"z":60.2411804199219},"rot":{"x":0.0208084136247635,"y":269.999847412109,"z":0.0167711414396763}},"280592":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422389507294,"z":83.2527770996094},"rot":{"x":0.0208081025630236,"y":270.001953125,"z":0.0167717281728983}},"2f0a13":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.020808381959796,"y":270.002990722656,"z":0.0167728792876005}},"311dd8":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30740904808044,"z":83.1903610229492},"rot":{"x":0.0208094492554665,"y":270.000183105469,"z":0.0167715847492218}},"391449":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29882001876831,"z":60.243766784668},"rot":{"x":0.0208163801580668,"y":269.973571777344,"z":0.0167616792023182}},"3cfda1":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379128456116,"z":92.4486923217773},"rot":{"x":0.0208001658320427,"y":270.031127929688,"z":0.0167828984558582}},"462616":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208031609654427,"y":270.018463134766,"z":0.0167779792100191}},"478876":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30555176734924,"z":83.2412185668945},"rot":{"x":0.0208081174641848,"y":270.002014160156,"z":0.0167718287557364}},"4826e4":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208029597997665,"y":270.0185546875,"z":0.0167780909687281}},"48e516":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208101198077202,"y":269.994873046875,"z":0.0167692042887211}},"494ff4":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208075847476721,"y":270.002990722656,"z":0.0167722310870886}},"4aa750":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208075679838657,"y":270.002990722656,"z":0.0167723949998617}},"4e2d75":{"lock":false,"pos":{"x":40.960319519043,"y":1.29436600208282,"z":60.2487907409668},"rot":{"x":0.0208087135106325,"y":269.998962402344,"z":0.0167701318860054}},"506474":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30083906650543,"z":67.1411056518555},"rot":{"x":0.0208080057054758,"y":270.002014160156,"z":0.0167718604207039}},"5888da":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29100203514099,"z":48.7527351379395},"rot":{"x":0.0208102837204933,"y":269.994842529297,"z":0.0167689323425293}},"59e40d":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29234755039215,"z":53.3492126464844},"rot":{"x":0.020810317248106,"y":269.994842529297,"z":0.016768978908658}},"59fbb3":{"lock":false,"pos":{"x":53.2284660339355,"y":1.2974728345871,"z":55.641185760498},"rot":{"x":0.0208079516887665,"y":270.002075195313,"z":0.0167719405144453}},"5a3ae9":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29840540885925,"z":74.0486831665039},"rot":{"x":0.0208075977861881,"y":270.002838134766,"z":0.016772260889411}},"5b4be9":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208080057054758,"y":270.001831054688,"z":0.0167720895260572}},"5c25fa":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486801147461},"rot":{"x":0.0208085626363754,"y":270.002899169922,"z":0.016772672533989}},"5e5a25":{"lock":false,"pos":{"x":40.9634170532227,"y":1.2916773557663,"z":51.059757232666},"rot":{"x":0.0208077747374773,"y":270.002899169922,"z":0.0167719703167677}},"6002e2":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.8607177734375},"rot":{"x":0.0208082310855389,"y":270.002868652344,"z":0.0167727395892143}},"652ea3":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208086017519236,"y":270.002624511719,"z":0.0167724527418613}},"65ae2b":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208077821880579,"y":270.002899169922,"z":0.0167719461023808}},"682e84":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0597648620605},"rot":{"x":0.0208077076822519,"y":270.0029296875,"z":0.0167729947715998}},"6d6fc2":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29949271678925,"z":62.5411796569824},"rot":{"x":0.0208080410957336,"y":270.002075195313,"z":0.0167721975594759}},"6dca74":{"lock":false,"pos":{"x":37.4159965515137,"y":1.29914140701294,"z":80.9607315063477},"rot":{"x":0.0208085644990206,"y":269.99853515625,"z":0.0167704485356808}},"7602b0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208083726465702,"y":270.002838134766,"z":0.0167726743966341}},"7ba744":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607162475586},"rot":{"x":0.0208084937185049,"y":270.002868652344,"z":0.0167729295790195}},"7bf464":{"lock":false,"pos":{"x":40.9601707458496,"y":1.2957124710083,"z":64.8486404418945},"rot":{"x":0.0208075437694788,"y":270.002960205078,"z":0.0167721398174763}},"7f09f4":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30353200435638,"z":76.3412246704102},"rot":{"x":0.0208079218864441,"y":270.002014160156,"z":0.0167720187455416}},"819e30":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244493484497,"z":87.8487014770508},"rot":{"x":0.0208077244460583,"y":270.002990722656,"z":0.016772298142314}},"8b361c":{"lock":false,"pos":{"x":53.2285957336426,"y":1.296799659729,"z":53.3411674499512},"rot":{"x":0.0208079516887665,"y":270.002075195313,"z":0.0167719274759293}},"970a14":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.0205346811562777,"y":270.926391601563,"z":0.0171054694801569}},"976f22":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30487847328186,"z":80.9412155151367},"rot":{"x":0.0208079423755407,"y":270.002044677734,"z":0.0167719628661871}},"9b9856":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.020808020606637,"y":270.001861572266,"z":0.0167717039585114}},"9eb1c4":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638576507568,"z":67.1486663818359},"rot":{"x":0.0208075642585754,"y":270.002960205078,"z":0.0167720858007669}},"9ede82":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.0208077058196068,"y":270.0029296875,"z":0.0167723558843136}},"a17fe6":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208076406270266,"y":270.002990722656,"z":0.0167721323668957}},"a48ea8":{"lock":false,"pos":{"x":49.5628509521484,"y":1.30557024478912,"z":87.8528060913086},"rot":{"x":0.0208074003458023,"y":270.002044677734,"z":0.01677156239748}},"a5e7d0":{"lock":false,"pos":{"x":49.5628547668457,"y":1.30691683292389,"z":92.4527969360352},"rot":{"x":0.0208079237490892,"y":270.002014160156,"z":0.0167718026787043}},"a92a90":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151236057281,"z":69.4412002563477},"rot":{"x":0.0208100266754627,"y":269.994812011719,"z":0.0167692415416241}},"b1aa47":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30016577243805,"z":64.8410720825195},"rot":{"x":0.0208080019801855,"y":270.002014160156,"z":0.01677181199193}},"b79b02":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557036399841,"z":87.8527908325195},"rot":{"x":0.0208079982548952,"y":270.002014160156,"z":0.016771761700511}},"b9c097":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30606257915497,"z":78.5903549194336},"rot":{"x":0.0208031125366688,"y":270.018463134766,"z":0.0167778171598911}},"bc7341":{"lock":false,"pos":{"x":58.3838272094727,"y":1.3040429353714,"z":71.6903533935547},"rot":{"x":0.0208031367510557,"y":270.018432617188,"z":0.0167776327580214}},"bce072":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903503417969},"rot":{"x":0.0208031050860882,"y":270.018707275391,"z":0.0167778432369232}},"c5450e":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.0208075791597366,"y":270.002838134766,"z":0.0167723894119263}},"c8505c":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.020810853689909,"y":269.994842529297,"z":0.016769926995039}},"ced615":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7452774047852},"rot":{"x":0.0208079069852829,"y":270.002014160156,"z":0.0167717859148979}},"d0f713":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740916728973,"z":83.1903610229492},"rot":{"x":0.0208086390048265,"y":269.999877929688,"z":0.0167710799723864}},"d8aee7":{"lock":false,"pos":{"x":40.9634284973145,"y":1.29302072525024,"z":55.6492233276367},"rot":{"x":0.020807845517993,"y":270.002899169922,"z":0.0167730674147606}},"dbe602":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208084248006344,"y":270.002777099609,"z":0.0167727656662464}},"dc4a2c":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208100900053978,"y":269.994812011719,"z":0.016769228503108}},"deb334":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208077244460583,"y":270.002990722656,"z":0.0167721975594759}},"df66c1":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30471622943878,"z":73.9903564453125},"rot":{"x":0.0208032820373774,"y":270.018341064453,"z":0.0167777445167303}},"e173d0":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151224136353,"z":69.4412078857422},"rot":{"x":0.0208087377250195,"y":270.001953125,"z":0.016772298142314}},"e5c4f1":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3075715303421,"z":90.141227722168},"rot":{"x":0.0208079107105732,"y":270.001922607422,"z":0.01677181199193}},"ec7a58":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30218553543091,"z":71.7412261962891},"rot":{"x":0.0208078846335411,"y":270.002014160156,"z":0.0167718585580587}},"ee6cf0":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29846823215485,"z":78.6607131958008},"rot":{"x":0.0208101347088814,"y":269.997100830078,"z":0.0167706031352282}},"f39096":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208086166530848,"y":270.002563476563,"z":0.0167725291103125}},"f550ac":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30420541763306,"z":78.6412124633789},"rot":{"x":0.0208080150187016,"y":270.002105712891,"z":0.0167716946452856}},"f9eac7":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208074301481247,"y":270.002075195313,"z":0.0167716257274151}},"fe7433":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042517185211,"z":80.9486846923828},"rot":{"x":0.0208075866103172,"y":270.002899169922,"z":0.0167720280587673}},"feab4a":{"lock":false,"pos":{"x":58.3838424682617,"y":1.3094288110733,"z":90.0903854370117},"rot":{"x":0.0208112616091967,"y":269.9892578125,"z":0.0167670007795095}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Beloved 177855.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Beloved 177855.yaml index 1f7756a8b..e4e1cdcad 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Beloved 177855.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Beloved 177855.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266330 +CardID: 553930 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Grit Your Teeth a92a90.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Grit Your Teeth a92a90.yaml index c914a990f..e8a31554b 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Grit Your Teeth a92a90.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Grit Your Teeth a92a90.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553313 +CardID: 554313 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5533': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Keep Faith 1f5400.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Keep Faith 1f5400.yaml index a9c0a0310..3e4b29645 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Keep Faith 1f5400.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Keep Faith 1f5400.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266328 +CardID: 554028 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Mariner's Compass 4e2d75.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Mariner's Compass 4e2d75.yaml new file mode 100644 index 000000000..ea12277b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Mariner's Compass 4e2d75.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553113 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4e2d75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mariner's Compass +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96 + posY: 1.29 + posZ: 60.25 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + 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 index a09c2e25f..8f80c6db5 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Meat Cleaver 121a7c.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Meat Cleaver 121a7c.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 60.25 + posZ: 57.95 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Moonstone d8aee7.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Moonstone d8aee7.yaml index 43313c22f..494d40eb6 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Moonstone d8aee7.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Moonstone d8aee7.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 57.95 + posZ: 55.65 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Mysterious Raven 59e40d.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Mysterious Raven 59e40d.yaml index 98d783b43..3c84aad1f 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Mysterious Raven 59e40d.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Mysterious Raven 59e40d.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553207 +CardID: 554207 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5532': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 55.65 + posZ: 53.35 rotX: 0.02 rotY: 269.99 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Newspaper 5e5a25.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Newspaper 5e5a25.yaml index 850d19fb9..36eebe6dc 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Newspaper 5e5a25.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Newspaper 5e5a25.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 53.35 + posZ: 51.06 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Old Keyring 5888da.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Old Keyring 5888da.yaml index 3957a5e9f..474c0b4b8 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Old Keyring 5888da.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Old Keyring 5888da.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553105 +CardID: 554105 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5531': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.96 posY: 1.29 - posZ: 51.06 + posZ: 48.75 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index 97832939d..814b15295 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Peter Sylvestre 7ba744.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Peter Sylvestre 7ba744.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.96 - posY: 1.29 - posZ: 48.75 + posX: 37.42 + posY: 1.3 + posZ: 92.46 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Predestined d0f713.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Predestined d0f713.yaml index c9abce24f..8016ff691 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Predestined d0f713.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Predestined d0f713.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266329 +CardID: 554529 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ 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 index 7493346ce..ee89a433a 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 92.46 + posZ: 90.16 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scavenging dbe602.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scavenging dbe602.yaml index e42f66663..562f274b0 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scavenging dbe602.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scavenging dbe602.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 90.16 + posZ: 87.86 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scrapper c8505c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scrapper c8505c.yaml index f5abc11ed..7574e479b 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scrapper c8505c.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scrapper c8505c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553409 +CardID: 554409 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5534': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 87.86 + posZ: 85.56 rotX: 0.02 rotY: 269.99 rotZ: 0.02 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 index 12907842d..487b88ee4 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Stray Cat 7602b0.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Stray Cat 7602b0.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 85.56 + posZ: 83.26 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index b064f2d37..972298806 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 83.26 + posZ: 80.96 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Token of Faith ee6cf0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Token of Faith ee6cf0.yaml index cac749d07..3874539f9 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Token of Faith ee6cf0.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Token of Faith ee6cf0.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266327 +CardID: 554727 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 80.96 + posZ: 78.66 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 0534ef383..48a55f59a 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Track Shoes f39096.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Track Shoes f39096.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 37.42 posY: 1.3 - posZ: 78.66 + posZ: 76.36 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Will to Survive dc4a2c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Will to Survive dc4a2c.yaml index 170f70834..57644dbea 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Will to Survive dc4a2c.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Will to Survive dc4a2c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553510 +CardID: 554610 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5535': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0.ttslua b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0.ttslua rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9.ttslua diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9.yaml new file mode 100644 index 000000000..5e949ec0c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9.yaml @@ -0,0 +1,117 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Mariner''s Compass 4e2d75.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Oops! 059ccf.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Not without a fight! 06ea61.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Fight or Flight 0d33ae.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card .18 Derringer 101a41.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Meat Cleaver 121a7c.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Rabbit''s Foot 13dd9b.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Last Chance 167af1.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Beloved 177855.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Granny Orne 1cccfe.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Live and Learn 1d35ce.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Grimm''s Fairy Tales 1d75d0.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Keep Faith 1f5400.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Winging It 280592.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Stunning Blow 462616.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Bait and Switch 478876.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Resourceful 4826e4.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card A Test of Will 48e516.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Dig Deep 494ff4.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Fire Axe 4aa750.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Hiding Spot 506474.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Old Keyring 5888da.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Mysterious Raven 59e40d.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Look what I found! 59fbb3.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Gravedigger''s Shovel 5a3ae9.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card A Chance Encounter 5b4be9.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Newspaper 5e5a25.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Tennessee Sour Mash 652ea3.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Improvised Weapon 6d6fc2.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Stray Cat 7602b0.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Peter Sylvestre 7ba744.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Leather Coat 7bf464.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Dumb Luck 7f09f4.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Cherished Keepsake 819e30.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Lucky! 8b361c.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Act of Desperation 970a14.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Belly of the Beast 976f22.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Trial by Fire 9b9856.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Lantern 9eb1c4.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Madame Labranche 9ede82.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Dark Horse a17fe6.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Scrounge for Supplies a5e7d0.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Grit Your Teeth a92a90.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Impromptu Barrier b1aa47.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Waylay b79b02.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Rise to the Occasion b9c097.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Take Heart bc7341.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Able Bodied bce072.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Baseball Bat c5450e.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Scrapper c8505c.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Perseverance ced615.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Predestined d0f713.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Moonstone d8aee7.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Scavenging dbe602.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Will to Survive dc4a2c.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Grisly Totem deb334.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Survival Instinct df66c1.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card A Glimmer of Hope e5c4f1.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Fortuitous Discovery ec7a58.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Token of Faith ee6cf0.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Track Shoes f39096.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Cunning Distraction f550ac.yaml' +- !include 'Custom_Model_Bag Survivor 3c40d9/Card Drawing Thin fe7433.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: '' +DragSelectable: true +GMNotes: '' +GUID: 3c40d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Survivor 3c40d9.ttslua' +LuaScriptState: '{"ml":{"059ccf":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612374305725,"z":51.0517272949219},"rot":{"x":0.0208078492432833,"y":270.002014160156,"z":0.0167720373719931}},"06ea61":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208029393106699,"y":270.018615722656,"z":0.0167780220508575}},"0d33ae":{"lock":false,"pos":{"x":53.2285537719727,"y":1.30285882949829,"z":74.0412139892578},"rot":{"x":0.0208079982548952,"y":270.002014160156,"z":0.0167718920856714}},"101a41":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379140377045,"z":92.4486846923828},"rot":{"x":0.0208100453019142,"y":269.994873046875,"z":0.0167693365365267}},"121a7c":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208079647272825,"y":270.002899169922,"z":0.0167717952281237}},"13dd9b":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183434486389,"z":90.1607284545898},"rot":{"x":0.0208084918558598,"y":270.002807617188,"z":0.0167724788188934}},"167af1":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30875563621521,"z":87.7903671264648},"rot":{"x":0.0208030790090561,"y":270.018737792969,"z":0.0167777072638273}},"177855":{"lock":false,"pos":{"x":58.3838310241699,"y":1.30942893028259,"z":90.0903701782227},"rot":{"x":0.0208084993064404,"y":269.999877929688,"z":0.0167709961533546}},"1cccfe":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907870292664,"z":76.3486709594727},"rot":{"x":0.0208100583404303,"y":269.994842529297,"z":0.0167692583054304}},"1d35ce":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208079963922501,"y":270.002075195313,"z":0.0167718473821878}},"1d75d0":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773223400116,"z":71.7486724853516},"rot":{"x":0.0208100508898497,"y":269.994842529297,"z":0.0167692452669144}},"1f5400":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29881930351257,"z":60.2411804199219},"rot":{"x":0.0208084136247635,"y":269.999847412109,"z":0.0167711414396763}},"280592":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422389507294,"z":83.2527770996094},"rot":{"x":0.0208081025630236,"y":270.001953125,"z":0.0167717281728983}},"2f0a13":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.020808381959796,"y":270.002990722656,"z":0.0167728792876005}},"311dd8":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30740904808044,"z":83.1903610229492},"rot":{"x":0.0208094492554665,"y":270.000183105469,"z":0.0167715847492218}},"391449":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29882001876831,"z":60.243766784668},"rot":{"x":0.0208163801580668,"y":269.973571777344,"z":0.0167616792023182}},"3cfda1":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379128456116,"z":92.4486923217773},"rot":{"x":0.0208001658320427,"y":270.031127929688,"z":0.0167828984558582}},"462616":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30538940429688,"z":76.2903518676758},"rot":{"x":0.0208031609654427,"y":270.018463134766,"z":0.0167779792100191}},"478876":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30555176734924,"z":83.2412185668945},"rot":{"x":0.0208081174641848,"y":270.002014160156,"z":0.0167718287557364}},"4826e4":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208029597997665,"y":270.0185546875,"z":0.0167780909687281}},"48e516":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208101198077202,"y":269.994873046875,"z":0.0167692042887211}},"494ff4":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208075847476721,"y":270.002990722656,"z":0.0167722310870886}},"4aa750":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208075679838657,"y":270.002990722656,"z":0.0167723949998617}},"4e2d75":{"lock":false,"pos":{"x":40.960319519043,"y":1.29436600208282,"z":60.2487907409668},"rot":{"x":0.0208087135106325,"y":269.998962402344,"z":0.0167701318860054}},"506474":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30083906650543,"z":67.1411056518555},"rot":{"x":0.0208080057054758,"y":270.002014160156,"z":0.0167718604207039}},"5888da":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29100203514099,"z":48.7527351379395},"rot":{"x":0.0208102837204933,"y":269.994842529297,"z":0.0167689323425293}},"59e40d":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29234755039215,"z":53.3492126464844},"rot":{"x":0.020810317248106,"y":269.994842529297,"z":0.016768978908658}},"59fbb3":{"lock":false,"pos":{"x":53.2284660339355,"y":1.2974728345871,"z":55.641185760498},"rot":{"x":0.0208079516887665,"y":270.002075195313,"z":0.0167719405144453}},"5a3ae9":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29840540885925,"z":74.0486831665039},"rot":{"x":0.0208075977861881,"y":270.002838134766,"z":0.016772260889411}},"5b4be9":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208080057054758,"y":270.001831054688,"z":0.0167720895260572}},"5c25fa":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486801147461},"rot":{"x":0.0208085626363754,"y":270.002899169922,"z":0.016772672533989}},"5e5a25":{"lock":false,"pos":{"x":40.9634170532227,"y":1.2916773557663,"z":51.059757232666},"rot":{"x":0.0208077747374773,"y":270.002899169922,"z":0.0167719703167677}},"6002e2":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.8607177734375},"rot":{"x":0.0208082310855389,"y":270.002868652344,"z":0.0167727395892143}},"652ea3":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208086017519236,"y":270.002624511719,"z":0.0167724527418613}},"65ae2b":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208077821880579,"y":270.002899169922,"z":0.0167719461023808}},"682e84":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0597648620605},"rot":{"x":0.0208077076822519,"y":270.0029296875,"z":0.0167729947715998}},"6d6fc2":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29949271678925,"z":62.5411796569824},"rot":{"x":0.0208080410957336,"y":270.002075195313,"z":0.0167721975594759}},"6dca74":{"lock":false,"pos":{"x":37.4159965515137,"y":1.29914140701294,"z":80.9607315063477},"rot":{"x":0.0208085644990206,"y":269.99853515625,"z":0.0167704485356808}},"7602b0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29981470108032,"z":83.2607192993164},"rot":{"x":0.0208083726465702,"y":270.002838134766,"z":0.0167726743966341}},"7ba744":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607162475586},"rot":{"x":0.0208084937185049,"y":270.002868652344,"z":0.0167729295790195}},"7bf464":{"lock":false,"pos":{"x":40.9601707458496,"y":1.2957124710083,"z":64.8486404418945},"rot":{"x":0.0208075437694788,"y":270.002960205078,"z":0.0167721398174763}},"7f09f4":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30353200435638,"z":76.3412246704102},"rot":{"x":0.0208079218864441,"y":270.002014160156,"z":0.0167720187455416}},"819e30":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244493484497,"z":87.8487014770508},"rot":{"x":0.0208077244460583,"y":270.002990722656,"z":0.016772298142314}},"8b361c":{"lock":false,"pos":{"x":53.2285957336426,"y":1.296799659729,"z":53.3411674499512},"rot":{"x":0.0208079516887665,"y":270.002075195313,"z":0.0167719274759293}},"970a14":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.0205346811562777,"y":270.926391601563,"z":0.0171054694801569}},"976f22":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30487847328186,"z":80.9412155151367},"rot":{"x":0.0208079423755407,"y":270.002044677734,"z":0.0167719628661871}},"9b9856":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.020808020606637,"y":270.001861572266,"z":0.0167717039585114}},"9eb1c4":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638576507568,"z":67.1486663818359},"rot":{"x":0.0208075642585754,"y":270.002960205078,"z":0.0167720858007669}},"9ede82":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.0208077058196068,"y":270.0029296875,"z":0.0167723558843136}},"a17fe6":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208076406270266,"y":270.002990722656,"z":0.0167721323668957}},"a48ea8":{"lock":false,"pos":{"x":49.5628509521484,"y":1.30557024478912,"z":87.8528060913086},"rot":{"x":0.0208074003458023,"y":270.002044677734,"z":0.01677156239748}},"a5e7d0":{"lock":false,"pos":{"x":49.5628547668457,"y":1.30691683292389,"z":92.4527969360352},"rot":{"x":0.0208079237490892,"y":270.002014160156,"z":0.0167718026787043}},"a92a90":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151236057281,"z":69.4412002563477},"rot":{"x":0.0208100266754627,"y":269.994812011719,"z":0.0167692415416241}},"b1aa47":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30016577243805,"z":64.8410720825195},"rot":{"x":0.0208080019801855,"y":270.002014160156,"z":0.01677181199193}},"b79b02":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557036399841,"z":87.8527908325195},"rot":{"x":0.0208079982548952,"y":270.002014160156,"z":0.016771761700511}},"b9c097":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30606257915497,"z":78.5903549194336},"rot":{"x":0.0208031125366688,"y":270.018463134766,"z":0.0167778171598911}},"bc7341":{"lock":false,"pos":{"x":58.3838272094727,"y":1.3040429353714,"z":71.6903533935547},"rot":{"x":0.0208031367510557,"y":270.018432617188,"z":0.0167776327580214}},"bce072":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903503417969},"rot":{"x":0.0208031050860882,"y":270.018707275391,"z":0.0167778432369232}},"c5450e":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.0208075791597366,"y":270.002838134766,"z":0.0167723894119263}},"c8505c":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607223510742},"rot":{"x":0.020810853689909,"y":269.994842529297,"z":0.016769926995039}},"ced615":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544854164124,"z":48.7452774047852},"rot":{"x":0.0208079069852829,"y":270.002014160156,"z":0.0167717859148979}},"d0f713":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740916728973,"z":83.1903610229492},"rot":{"x":0.0208086390048265,"y":269.999877929688,"z":0.0167710799723864}},"d8aee7":{"lock":false,"pos":{"x":40.9634284973145,"y":1.29302072525024,"z":55.6492233276367},"rot":{"x":0.020807845517993,"y":270.002899169922,"z":0.0167730674147606}},"dbe602":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.860725402832},"rot":{"x":0.0208084248006344,"y":270.002777099609,"z":0.0167727656662464}},"dc4a2c":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.0208100900053978,"y":269.994812011719,"z":0.016769228503108}},"deb334":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208077244460583,"y":270.002990722656,"z":0.0167721975594759}},"df66c1":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30471622943878,"z":73.9903564453125},"rot":{"x":0.0208032820373774,"y":270.018341064453,"z":0.0167777445167303}},"e173d0":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151224136353,"z":69.4412078857422},"rot":{"x":0.0208087377250195,"y":270.001953125,"z":0.016772298142314}},"e5c4f1":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3075715303421,"z":90.141227722168},"rot":{"x":0.0208079107105732,"y":270.001922607422,"z":0.01677181199193}},"ec7a58":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30218553543091,"z":71.7412261962891},"rot":{"x":0.0208078846335411,"y":270.002014160156,"z":0.0167718585580587}},"ee6cf0":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29846823215485,"z":78.6607131958008},"rot":{"x":0.0208101347088814,"y":269.997100830078,"z":0.0167706031352282}},"f39096":{"lock":false,"pos":{"x":37.4159736633301,"y":1.29779493808746,"z":76.360710144043},"rot":{"x":0.0208086166530848,"y":270.002563476563,"z":0.0167725291103125}},"f550ac":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30420541763306,"z":78.6412124633789},"rot":{"x":0.0208080150187016,"y":270.002105712891,"z":0.0167716946452856}},"f9eac7":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208074301481247,"y":270.002075195313,"z":0.0167716257274151}},"fe7433":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042517185211,"z":80.9486846923828},"rot":{"x":0.0208075866103172,"y":270.002899169922,"z":0.0167720280587673}},"feab4a":{"lock":false,"pos":{"x":58.3838424682617,"y":1.3094288110733,"z":90.0903854370117},"rot":{"x":0.0208112616091967,"y":269.9892578125,"z":0.0167670007795095}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.58 + posY: 1.66 + posZ: 54.35 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card .18 Derringer 101a41.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card .18 Derringer 101a41.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card .18 Derringer 101a41.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card .18 Derringer 101a41.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card A Chance Encounter 5b4be9.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card A Chance Encounter 5b4be9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card A Chance Encounter 5b4be9.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card A Chance Encounter 5b4be9.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card A Glimmer of Hope e5c4f1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card A Glimmer of Hope e5c4f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card A Glimmer of Hope e5c4f1.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card A Glimmer of Hope e5c4f1.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card A Test of Will 48e516.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card A Test of Will 48e516.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card A Test of Will 48e516.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card A Test of Will 48e516.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Able Bodied bce072.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Able Bodied bce072.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Able Bodied bce072.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Able Bodied bce072.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Act of Desperation 970a14.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Act of Desperation 970a14.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Act of Desperation 970a14.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Act of Desperation 970a14.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Bait and Switch 478876.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Bait and Switch 478876.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Bait and Switch 478876.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Bait and Switch 478876.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Baseball Bat c5450e.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Baseball Bat c5450e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Baseball Bat c5450e.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Baseball Bat c5450e.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Belly of the Beast 976f22.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Belly of the Beast 976f22.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Belly of the Beast 976f22.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Belly of the Beast 976f22.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Beloved 177855.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Beloved 177855.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Beloved 177855.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Beloved 177855.yaml index 9a0a8dabb..2c5cd2d0f 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Beloved 177855.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Beloved 177855.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266330 +CardID: 553930 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Cherished Keepsake 819e30.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Cherished Keepsake 819e30.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Cherished Keepsake 819e30.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Cherished Keepsake 819e30.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Cunning Distraction f550ac.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Cunning Distraction f550ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Cunning Distraction f550ac.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Cunning Distraction f550ac.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Dark Horse a17fe6.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Dark Horse a17fe6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Dark Horse a17fe6.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Dark Horse a17fe6.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Dig Deep 494ff4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Dig Deep 494ff4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Dig Deep 494ff4.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Dig Deep 494ff4.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Drawing Thin fe7433.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Drawing Thin fe7433.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Drawing Thin fe7433.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Drawing Thin fe7433.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Dumb Luck 7f09f4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Dumb Luck 7f09f4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Dumb Luck 7f09f4.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Dumb Luck 7f09f4.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Fight or Flight 0d33ae.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Fight or Flight 0d33ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Fight or Flight 0d33ae.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Fight or Flight 0d33ae.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Fire Axe 4aa750.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Fire Axe 4aa750.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Fire Axe 4aa750.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Fire Axe 4aa750.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Fortuitous Discovery ec7a58.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Fortuitous Discovery ec7a58.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Fortuitous Discovery ec7a58.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Fortuitous Discovery ec7a58.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Granny Orne 1cccfe.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Granny Orne 1cccfe.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Granny Orne 1cccfe.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Granny Orne 1cccfe.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Gravedigger's Shovel 5a3ae9.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Gravedigger's Shovel 5a3ae9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Gravedigger's Shovel 5a3ae9.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Gravedigger's Shovel 5a3ae9.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Grimm's Fairy Tales 1d75d0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Grimm's Fairy Tales 1d75d0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Grimm's Fairy Tales 1d75d0.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Grimm's Fairy Tales 1d75d0.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Grisly Totem deb334.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Grisly Totem deb334.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Grisly Totem deb334.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Grisly Totem deb334.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Grit Your Teeth a92a90.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Grit Your Teeth a92a90.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Grit Your Teeth a92a90.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Grit Your Teeth a92a90.yaml index 106d4b7dc..6e62984e7 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Grit Your Teeth a92a90.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Grit Your Teeth a92a90.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553313 +CardID: 554313 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5533': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Hiding Spot 506474.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Hiding Spot 506474.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Hiding Spot 506474.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Hiding Spot 506474.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Impromptu Barrier b1aa47.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Impromptu Barrier b1aa47.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Impromptu Barrier b1aa47.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Impromptu Barrier b1aa47.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Improvised Weapon 6d6fc2.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Improvised Weapon 6d6fc2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Improvised Weapon 6d6fc2.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Improvised Weapon 6d6fc2.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Keep Faith 1f5400.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Keep Faith 1f5400.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Keep Faith 1f5400.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Keep Faith 1f5400.yaml index 01197f61e..1d7121dbe 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Keep Faith 1f5400.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Keep Faith 1f5400.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266328 +CardID: 554028 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Lantern 9eb1c4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Lantern 9eb1c4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Lantern 9eb1c4.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Lantern 9eb1c4.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Last Chance 167af1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Last Chance 167af1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Last Chance 167af1.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Last Chance 167af1.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Leather Coat 7bf464.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Leather Coat 7bf464.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Leather Coat 7bf464.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Leather Coat 7bf464.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Live and Learn 1d35ce.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Live and Learn 1d35ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Live and Learn 1d35ce.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Live and Learn 1d35ce.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Look what I found! 59fbb3.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Look what I found! 59fbb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Look what I found! 59fbb3.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Look what I found! 59fbb3.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Lucky! 8b361c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Lucky! 8b361c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Lucky! 8b361c.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Lucky! 8b361c.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Madame Labranche 9ede82.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Madame Labranche 9ede82.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Madame Labranche 9ede82.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Madame Labranche 9ede82.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Mariner's Compass 4e2d75.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Mariner's Compass 4e2d75.yaml new file mode 100644 index 000000000..c7e0b6eb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Mariner's Compass 4e2d75.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553113 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4e2d75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mariner's Compass +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.58 + posY: 1.41 + posZ: 54.35 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Meat Cleaver 121a7c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Meat Cleaver 121a7c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Meat Cleaver 121a7c.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Meat Cleaver 121a7c.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Moonstone d8aee7.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Moonstone d8aee7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Moonstone d8aee7.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Moonstone d8aee7.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Mysterious Raven 59e40d.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Mysterious Raven 59e40d.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Mysterious Raven 59e40d.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Mysterious Raven 59e40d.yaml index 5049c4046..e462ca0c0 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Mysterious Raven 59e40d.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Mysterious Raven 59e40d.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553207 +CardID: 554207 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5532': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Newspaper 5e5a25.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Newspaper 5e5a25.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Newspaper 5e5a25.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Newspaper 5e5a25.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Not without a fight! 06ea61.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Not without a fight! 06ea61.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Not without a fight! 06ea61.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Not without a fight! 06ea61.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Old Keyring 5888da.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Old Keyring 5888da.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Old Keyring 5888da.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Old Keyring 5888da.yaml index 4f7c89aff..a20cd7ea2 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Old Keyring 5888da.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Old Keyring 5888da.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553105 +CardID: 554105 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5531': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Oops! 059ccf.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Oops! 059ccf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Oops! 059ccf.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Oops! 059ccf.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Perseverance ced615.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Perseverance ced615.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Perseverance ced615.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Perseverance ced615.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Peter Sylvestre 7ba744.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Peter Sylvestre 7ba744.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Peter Sylvestre 7ba744.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Peter Sylvestre 7ba744.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Predestined d0f713.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Predestined d0f713.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Predestined d0f713.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Predestined d0f713.yaml index 70af0323f..54c433d8f 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Predestined d0f713.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Predestined d0f713.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266329 +CardID: 554529 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Rabbit's Foot 13dd9b.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Rabbit's Foot 13dd9b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Rabbit's Foot 13dd9b.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Rabbit's Foot 13dd9b.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Resourceful 4826e4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Resourceful 4826e4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Resourceful 4826e4.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Resourceful 4826e4.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Rise to the Occasion b9c097.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Rise to the Occasion b9c097.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Rise to the Occasion b9c097.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Rise to the Occasion b9c097.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Scavenging dbe602.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Scavenging dbe602.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Scavenging dbe602.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Scavenging dbe602.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Scrapper c8505c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Scrapper c8505c.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Scrapper c8505c.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Scrapper c8505c.yaml index 55e3343ef..1725ba952 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Scrapper c8505c.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Scrapper c8505c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553409 +CardID: 554409 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5534': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Scrounge for Supplies a5e7d0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Scrounge for Supplies a5e7d0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Scrounge for Supplies a5e7d0.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Scrounge for Supplies a5e7d0.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Stray Cat 7602b0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Stray Cat 7602b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Stray Cat 7602b0.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Stray Cat 7602b0.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Stunning Blow 462616.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Stunning Blow 462616.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Stunning Blow 462616.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Stunning Blow 462616.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Survival Instinct df66c1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Survival Instinct df66c1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Survival Instinct df66c1.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Survival Instinct df66c1.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Take Heart bc7341.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Take Heart bc7341.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Take Heart bc7341.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Take Heart bc7341.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Tennessee Sour Mash 652ea3.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Tennessee Sour Mash 652ea3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Tennessee Sour Mash 652ea3.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Tennessee Sour Mash 652ea3.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Token of Faith ee6cf0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Token of Faith ee6cf0.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Token of Faith ee6cf0.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Token of Faith ee6cf0.yaml index 75b13ceca..34c5129a6 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Token of Faith ee6cf0.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Token of Faith ee6cf0.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 266327 +CardID: 554727 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Track Shoes f39096.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Track Shoes f39096.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Track Shoes f39096.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Track Shoes f39096.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Trial by Fire 9b9856.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Trial by Fire 9b9856.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Trial by Fire 9b9856.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Trial by Fire 9b9856.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Waylay b79b02.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Waylay b79b02.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Waylay b79b02.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Waylay b79b02.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Will to Survive dc4a2c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Will to Survive dc4a2c.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Will to Survive dc4a2c.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Will to Survive dc4a2c.yaml index 90262e8ec..470682b9b 100644 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Will to Survive dc4a2c.yaml +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Will to Survive dc4a2c.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 553510 +CardID: 554610 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5535': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Winging It 280592.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Winging It 280592.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0/Card Winging It 280592.yaml rename to unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 3c40d9/Card Winging It 280592.yaml diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0.yaml deleted file mode 100644 index 22b3e607a..000000000 --- a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 6d8cb0.yaml +++ /dev/null @@ -1,116 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Beloved 177855.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Predestined d0f713.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Keep Faith 1f5400.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Token of Faith ee6cf0.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Oops! 059ccf.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Not without a fight! 06ea61.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Fight or Flight 0d33ae.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card .18 Derringer 101a41.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Meat Cleaver 121a7c.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Rabbit''s Foot 13dd9b.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Last Chance 167af1.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Granny Orne 1cccfe.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Live and Learn 1d35ce.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Grimm''s Fairy Tales 1d75d0.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Winging It 280592.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Stunning Blow 462616.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Bait and Switch 478876.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Resourceful 4826e4.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card A Test of Will 48e516.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Dig Deep 494ff4.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Fire Axe 4aa750.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Hiding Spot 506474.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Old Keyring 5888da.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Mysterious Raven 59e40d.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Look what I found! 59fbb3.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Gravedigger''s Shovel 5a3ae9.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card A Chance Encounter 5b4be9.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Newspaper 5e5a25.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Tennessee Sour Mash 652ea3.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Improvised Weapon 6d6fc2.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Stray Cat 7602b0.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Peter Sylvestre 7ba744.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Leather Coat 7bf464.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Dumb Luck 7f09f4.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Cherished Keepsake 819e30.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Lucky! 8b361c.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Act of Desperation 970a14.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Belly of the Beast 976f22.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Trial by Fire 9b9856.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Lantern 9eb1c4.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Madame Labranche 9ede82.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Dark Horse a17fe6.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Scrounge for Supplies a5e7d0.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Grit Your Teeth a92a90.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Impromptu Barrier b1aa47.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Waylay b79b02.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Rise to the Occasion b9c097.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Take Heart bc7341.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Able Bodied bce072.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Baseball Bat c5450e.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Scrapper c8505c.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Perseverance ced615.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Moonstone d8aee7.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Scavenging dbe602.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Will to Survive dc4a2c.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Grisly Totem deb334.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Survival Instinct df66c1.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card A Glimmer of Hope e5c4f1.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Fortuitous Discovery ec7a58.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Track Shoes f39096.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Cunning Distraction f550ac.yaml' -- !include 'Custom_Model_Bag Survivor 6d8cb0/Card Drawing Thin fe7433.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: '' -DragSelectable: true -GMNotes: '' -GUID: 6d8cb0 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Survivor 6d8cb0.ttslua' -LuaScriptState: '{"ml":{"059ccf":{"lock":false,"pos":{"x":53.212776184082,"y":1.29612362384796,"z":51.0517272949219},"rot":{"x":0.020808182656765,"y":270.002014160156,"z":0.016771974042058}},"06ea61":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30808234214783,"z":85.490364074707},"rot":{"x":0.0208031963557005,"y":270.018615722656,"z":0.0167778488248587}},"0d33ae":{"lock":false,"pos":{"x":53.2285537719727,"y":1.302858710289,"z":74.0412139892578},"rot":{"x":0.0208081677556038,"y":270.002014160156,"z":0.0167718846350908}},"101a41":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379128456116,"z":92.4486846923828},"rot":{"x":0.0208100769668818,"y":269.994873046875,"z":0.0167691577225924}},"121a7c":{"lock":false,"pos":{"x":40.9603233337402,"y":1.29436600208282,"z":60.2487907409668},"rot":{"x":0.0208078734576702,"y":270.0029296875,"z":0.0167721938341856}},"13dd9b":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30250763893127,"z":92.4607086181641},"rot":{"x":0.0208076369017363,"y":270.002868652344,"z":0.0167721677571535}},"167af1":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30875563621521,"z":87.7903671264648},"rot":{"x":0.0208029896020889,"y":270.018737792969,"z":0.0167781244963408}},"177855":{"lock":false,"pos":{"x":58.3838310241699,"y":1.3094288110733,"z":90.0903701782227},"rot":{"x":0.0208086613565683,"y":269.999877929688,"z":0.0167710240930319}},"1cccfe":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486709594727},"rot":{"x":0.0208101533353329,"y":269.994842529297,"z":0.0167694315314293}},"1d35ce":{"lock":false,"pos":{"x":53.2305908203125,"y":1.29814672470093,"z":57.9409637451172},"rot":{"x":0.0208080690354109,"y":270.002075195313,"z":0.0167720690369606}},"1d75d0":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486724853516},"rot":{"x":0.0208102501928806,"y":269.994842529297,"z":0.0167693626135588}},"1f5400":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29881930351257,"z":60.2411804199219},"rot":{"x":0.0208085644990206,"y":269.999847412109,"z":0.0167709551751614}},"280592":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30422377586365,"z":83.2527770996094},"rot":{"x":0.0208079554140568,"y":270.001953125,"z":0.016771798953414}},"2f0a13":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29907858371735,"z":76.3486785888672},"rot":{"x":0.020808381959796,"y":270.002990722656,"z":0.0167728792876005}},"311dd8":{"lock":false,"pos":{"x":58.3838424682617,"y":1.30740904808044,"z":83.1903610229492},"rot":{"x":0.0208094492554665,"y":270.000183105469,"z":0.0167715847492218}},"391449":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29882001876831,"z":60.243766784668},"rot":{"x":0.0208163801580668,"y":269.973571777344,"z":0.0167616792023182}},"3cfda1":{"lock":false,"pos":{"x":40.960205078125,"y":1.30379128456116,"z":92.4486923217773},"rot":{"x":0.0208001658320427,"y":270.031127929688,"z":0.0167828984558582}},"462616":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30538928508759,"z":76.2903518676758},"rot":{"x":0.0208031293004751,"y":270.018463134766,"z":0.0167778003960848}},"478876":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30555176734924,"z":83.2412185668945},"rot":{"x":0.0208079013973475,"y":270.002014160156,"z":0.0167719945311546}},"4826e4":{"lock":false,"pos":{"x":58.3838348388672,"y":1.30673587322235,"z":80.8903579711914},"rot":{"x":0.0208033453673124,"y":270.0185546875,"z":0.0167777985334396}},"48e516":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208101850003004,"y":269.994873046875,"z":0.0167693123221397}},"494ff4":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30109834671021,"z":83.2486877441406},"rot":{"x":0.0208076611161232,"y":270.002990722656,"z":0.0167723055928946}},"4aa750":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29975187778473,"z":78.648681640625},"rot":{"x":0.0208077095448971,"y":270.002990722656,"z":0.0167721435427666}},"506474":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30083894729614,"z":67.1411056518555},"rot":{"x":0.0208080969750881,"y":270.002014160156,"z":0.0167719442397356}},"5888da":{"lock":false,"pos":{"x":40.9634170532227,"y":1.2916773557663,"z":51.059757232666},"rot":{"x":0.0208100751042366,"y":269.994873046875,"z":0.0167692899703979}},"59e40d":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208102501928806,"y":269.994873046875,"z":0.0167693477123976}},"59fbb3":{"lock":false,"pos":{"x":53.2284660339355,"y":1.29747271537781,"z":55.641185760498},"rot":{"x":0.0208078846335411,"y":270.002075195313,"z":0.0167718250304461}},"5a3ae9":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29840540885925,"z":74.0486831665039},"rot":{"x":0.0208076313138008,"y":270.002838134766,"z":0.0167722254991531}},"5b4be9":{"lock":false,"pos":{"x":53.2285575866699,"y":1.3082447052002,"z":92.4412155151367},"rot":{"x":0.0208081174641848,"y":270.001831054688,"z":0.0167717337608337}},"5c25fa":{"lock":false,"pos":{"x":40.9602012634277,"y":1.29773211479187,"z":71.7486801147461},"rot":{"x":0.0208085626363754,"y":270.002899169922,"z":0.016772672533989}},"5e5a25":{"lock":false,"pos":{"x":40.9634284973145,"y":1.29234755039215,"z":53.3492202758789},"rot":{"x":0.0208077263087034,"y":270.0029296875,"z":0.0167723391205072}},"6002e2":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.8607177734375},"rot":{"x":0.0208082310855389,"y":270.002868652344,"z":0.0167727395892143}},"652ea3":{"lock":false,"pos":{"x":37.4159927368164,"y":1.29981470108032,"z":83.2607345581055},"rot":{"x":0.0208078436553478,"y":270.002685546875,"z":0.0167721323668957}},"65ae2b":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29302072525024,"z":55.6492156982422},"rot":{"x":0.0208077821880579,"y":270.002899169922,"z":0.0167719461023808}},"682e84":{"lock":false,"pos":{"x":40.9634284973145,"y":1.2916773557663,"z":51.0597648620605},"rot":{"x":0.0208077076822519,"y":270.0029296875,"z":0.0167729947715998}},"6d6fc2":{"lock":false,"pos":{"x":53.2285499572754,"y":1.29949247837067,"z":62.5411796569824},"rot":{"x":0.0208078771829605,"y":270.002075195313,"z":0.0167719181627035}},"6dca74":{"lock":false,"pos":{"x":37.4159965515137,"y":1.29914140701294,"z":80.9607315063477},"rot":{"x":0.0208085644990206,"y":269.99853515625,"z":0.0167704485356808}},"7602b0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.30048787593842,"z":85.5607147216797},"rot":{"x":0.0208077821880579,"y":270.002807617188,"z":0.0167724005877972}},"7ba744":{"lock":false,"pos":{"x":40.9634208679199,"y":1.29100203514099,"z":48.7527389526367},"rot":{"x":0.0208078976720572,"y":270.0029296875,"z":0.0167722404003143}},"7bf464":{"lock":false,"pos":{"x":40.9601707458496,"y":1.29571235179901,"z":64.8486404418945},"rot":{"x":0.0208077225834131,"y":270.002960205078,"z":0.0167723204940557}},"7f09f4":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30353200435638,"z":76.3412246704102},"rot":{"x":0.0208080541342497,"y":270.002014160156,"z":0.0167719051241875}},"819e30":{"lock":false,"pos":{"x":40.960205078125,"y":1.30244481563568,"z":87.8487014770508},"rot":{"x":0.020807608962059,"y":270.002990722656,"z":0.0167721640318632}},"8b361c":{"lock":false,"pos":{"x":53.2285957336426,"y":1.29679954051971,"z":53.3411674499512},"rot":{"x":0.0208078883588314,"y":270.002075195313,"z":0.0167721156030893}},"970a14":{"lock":false,"pos":{"x":53.2285614013672,"y":1.30622494220734,"z":85.5412216186523},"rot":{"x":0.020534697920084,"y":270.926391601563,"z":0.0171054173260927}},"976f22":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30487847328186,"z":80.9412155151367},"rot":{"x":0.0208080299198627,"y":270.002044677734,"z":0.0167719405144453}},"9b9856":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30624353885651,"z":90.1527557373047},"rot":{"x":0.0208080634474754,"y":270.001861572266,"z":0.0167718548327684}},"9eb1c4":{"lock":false,"pos":{"x":40.9601936340332,"y":1.29638564586639,"z":67.1486663818359},"rot":{"x":0.0208078622817993,"y":270.002960205078,"z":0.0167722553014755}},"9ede82":{"lock":false,"pos":{"x":40.9601745605469,"y":1.29503917694092,"z":62.5487442016602},"rot":{"x":0.0208077654242516,"y":270.0029296875,"z":0.0167723800987005}},"a17fe6":{"lock":false,"pos":{"x":40.9602088928223,"y":1.30177164077759,"z":85.5486907958984},"rot":{"x":0.0208078008145094,"y":270.002990722656,"z":0.0167722776532173}},"a48ea8":{"lock":false,"pos":{"x":49.5628509521484,"y":1.30557024478912,"z":87.8528060913086},"rot":{"x":0.0208074003458023,"y":270.002044677734,"z":0.01677156239748}},"a5e7d0":{"lock":false,"pos":{"x":49.5628547668457,"y":1.30691683292389,"z":92.4527969360352},"rot":{"x":0.0208081547170877,"y":270.002014160156,"z":0.0167718753218651}},"a92a90":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151224136353,"z":69.4412002563477},"rot":{"x":0.0208103116601706,"y":269.994812011719,"z":0.0167692415416241}},"b1aa47":{"lock":false,"pos":{"x":53.2285461425781,"y":1.30016577243805,"z":64.8410720825195},"rot":{"x":0.0208079945296049,"y":270.002014160156,"z":0.0167721062898636}},"b79b02":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30557024478912,"z":87.8527908325195},"rot":{"x":0.0208080019801855,"y":270.002014160156,"z":0.0167719125747681}},"b9c097":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30606257915497,"z":78.5903549194336},"rot":{"x":0.0208032019436359,"y":270.018463134766,"z":0.016777977347374}},"bc7341":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30404281616211,"z":71.6903533935547},"rot":{"x":0.0208030920475721,"y":270.018432617188,"z":0.0167780630290508}},"bce072":{"lock":false,"pos":{"x":58.3838310241699,"y":1.31010210514069,"z":92.3903503417969},"rot":{"x":0.0208031143993139,"y":270.018707275391,"z":0.0167780071496964}},"c5450e":{"lock":false,"pos":{"x":40.960205078125,"y":1.30311810970306,"z":90.1487045288086},"rot":{"x":0.0208077393472195,"y":270.002838134766,"z":0.0167723689228296}},"c8505c":{"lock":false,"pos":{"x":37.4159812927246,"y":1.3011611700058,"z":87.8607177734375},"rot":{"x":0.0208101198077202,"y":269.994812011719,"z":0.0167692974209785}},"ced615":{"lock":false,"pos":{"x":53.2126159667969,"y":1.29544842243195,"z":48.7452774047852},"rot":{"x":0.0208080355077982,"y":270.002014160156,"z":0.0167718399316072}},"d0f713":{"lock":false,"pos":{"x":58.3838386535645,"y":1.30740904808044,"z":83.1903610229492},"rot":{"x":0.0208085626363754,"y":269.999877929688,"z":0.0167713016271591}},"d8aee7":{"lock":false,"pos":{"x":40.9634170532227,"y":1.29369378089905,"z":57.948558807373},"rot":{"x":0.0208078324794769,"y":270.0029296875,"z":0.0167721770703793}},"dbe602":{"lock":false,"pos":{"x":37.4159736633301,"y":1.30183446407318,"z":90.1607208251953},"rot":{"x":0.0208076983690262,"y":270.002868652344,"z":0.016772173345089}},"dc4a2c":{"lock":false,"pos":{"x":49.5628433227539,"y":1.30489706993103,"z":85.5527801513672},"rot":{"x":0.020810067653656,"y":269.994812011719,"z":0.0167693514376879}},"deb334":{"lock":false,"pos":{"x":40.9601974487305,"y":1.29705893993378,"z":69.4486846923828},"rot":{"x":0.0208077859133482,"y":270.002990722656,"z":0.0167722441256046}},"df66c1":{"lock":false,"pos":{"x":58.3838272094727,"y":1.30471611022949,"z":73.9903564453125},"rot":{"x":0.0208032019436359,"y":270.018341064453,"z":0.0167777370661497}},"e173d0":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30151224136353,"z":69.4412078857422},"rot":{"x":0.0208087377250195,"y":270.001953125,"z":0.016772298142314}},"e5c4f1":{"lock":false,"pos":{"x":53.2285575866699,"y":1.30757141113281,"z":90.141227722168},"rot":{"x":0.020807946100831,"y":270.001922607422,"z":0.0167717933654785}},"ec7a58":{"lock":false,"pos":{"x":53.2285652160645,"y":1.30218553543091,"z":71.7412261962891},"rot":{"x":0.0208080373704433,"y":270.002014160156,"z":0.0167718771845102}},"ee6cf0":{"lock":false,"pos":{"x":37.4159812927246,"y":1.29914140701294,"z":80.9607162475586},"rot":{"x":0.0208103097975254,"y":269.997192382813,"z":0.0167705938220024}},"f39096":{"lock":false,"pos":{"x":37.4159889221191,"y":1.29846823215485,"z":78.6607284545898},"rot":{"x":0.0208079256117344,"y":270.002655029297,"z":0.0167720727622509}},"f550ac":{"lock":false,"pos":{"x":53.2285499572754,"y":1.30420517921448,"z":78.6412124633789},"rot":{"x":0.0208078548312187,"y":270.002105712891,"z":0.0167719479650259}},"f9eac7":{"lock":false,"pos":{"x":53.2285690307617,"y":1.30689823627472,"z":87.8412399291992},"rot":{"x":0.0208074301481247,"y":270.002075195313,"z":0.0167716257274151}},"fe7433":{"lock":false,"pos":{"x":40.960205078125,"y":1.30042517185211,"z":80.9486846923828},"rot":{"x":0.0208077281713486,"y":270.002899169922,"z":0.0167719721794128}},"feab4a":{"lock":false,"pos":{"x":58.3838424682617,"y":1.3094288110733,"z":90.0903854370117},"rot":{"x":0.0208112616091967,"y":269.9892578125,"z":0.0167670007795095}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Survivor -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.58 - posY: 1.66 - posZ: 54.35 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830.yaml b/unpacked/Custom_Model_Bag Survivor c02830.yaml index 621c4e32f..74a1b77a0 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830.yaml @@ -4,22 +4,13 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card Unexpected Courage (2) 53d6d9.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card Quick Learner (4) 3bbc0b.yaml' -- !include "Custom_Model_Bag Survivor c02830/Card D\xE9j\xE0 Vu (5) 719a45.yaml" -- !include 'Custom_Model_Bag Survivor c02830/Card Chainsaw (4) 382580.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card Granny Orne (3) d88560.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card .18 Derringer (2) f8a977.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card Leather Coat (1) 5b1550.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card Cherished Keepsake (1) 5a2b49.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card Lucky! (3) 04d33d.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card A Test of Will (2) 71a760.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card Dumb Luck (2) 0c433b.yaml' -- !include 'Custom_Model_Bag Survivor c02830/Card Look what I found! (2) fd393b.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Ancient Covenant (2) 840ba5.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Lucky! (2) 002455.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Rabbit''s Foot (3) 00c4cc.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Lucky! (3) 04d33d.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Rise to the Occasion (3) 0b9f53.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Dumb Luck (2) 0c433b.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Guiding Spirit (1) 13ae70.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Survival Instinct (2) 1c3b8f.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Nightmare Bauble (3) 1c8915.yaml' @@ -29,17 +20,24 @@ ContainedObjects: - !include 'Custom_Model_Bag Survivor c02830/Card On Your Own (3) 2ebdf1.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Try and Try Again (1) 35bbe8.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Infighting (3) 36bc5b.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Chainsaw (4) 382580.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Quick Learner (4) 3bbc0b.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Grisly Totem (3) 4a5655.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Sharp Vision (1) 4d9a97.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Fortune or Fate (2) 5010c5.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Bait and Switch (3) 50acc5.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Unexpected Courage (2) 53d6d9.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Peter Sylvestre (2) 584914.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Alter Fate (3) 5a1991.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Cherished Keepsake (1) 5a2b49.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Leather Coat (1) 5b1550.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Close Call (2) 61d1e5.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Aquinnah (1) 630d65.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card A Chance Encounter (2) 6842aa.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card True Survivor (3) 6a04c3.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Nothing Left to Lose (3) 6a8a9f.yaml' +- !include "Custom_Model_Bag Survivor c02830/Card D\xE9j\xE0 Vu (5) 719a45.yaml" +- !include 'Custom_Model_Bag Survivor c02830/Card A Test of Will (2) 71a760.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Lure (1) 76b07c.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Brute Force (1) 7fe153.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Tennessee Sour Mash (3) 8cdf20.yaml' @@ -64,11 +62,14 @@ ContainedObjects: - !include 'Custom_Model_Bag Survivor c02830/Card Scrapper (3) c6c157.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Scavenging (2) cda2e6.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card On Your Own (3) ce1a7d.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Granny Orne (3) d88560.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Fire Extinguisher (1) dd0b79.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Gravedigger''s Shovel (2) e64769.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Newspaper (2) ea2337.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Expeditious Retreat (1) ea8324.yaml' - !include 'Custom_Model_Bag Survivor c02830/Card Old Hunting Rifle (3) f69d7d.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card .18 Derringer (2) f8a977.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Look what I found! (2) fd393b.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -97,7 +98,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Model_Bag Survivor c02830.ttslua' -LuaScriptState: '{"ml":{"002455":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30024600028992,"z":-75.0203552246094},"rot":{"x":0.0208088811486959,"y":269.998962402344,"z":0.0167707093060017}},"00c4cc":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208093803375959,"y":269.997497558594,"z":0.0167702715843916}},"04d33d":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30699694156647,"z":-47.4087867736816},"rot":{"x":0.0208086632192135,"y":270.000030517578,"z":0.0167711246758699}},"08b398":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208114981651306,"y":269.98974609375,"z":0.0167670976370573}},"0b9f53":{"lock":false,"pos":{"x":58.0996475219727,"y":1.30614292621613,"z":-61.2709846496582},"rot":{"x":0.0208085775375366,"y":269.999694824219,"z":0.016771087422967}},"0c433b":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208086390048265,"y":270.000030517578,"z":0.0167713221162558}},"13ae70":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208114553242922,"y":269.989868164063,"z":0.0167674031108618}},"16fea1":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208087936043739,"y":269.999603271484,"z":0.0167708788067102}},"1c3b8f":{"lock":false,"pos":{"x":58.0996627807617,"y":1.3074893951416,"z":-56.6709785461426},"rot":{"x":0.0208072308450937,"y":270.004180908203,"z":0.016772685572505}},"1c8915":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.008430480957},"rot":{"x":0.0208093486726284,"y":269.99755859375,"z":0.0167704038321972}},"234fae":{"lock":false,"pos":{"x":52.9462356567383,"y":1.2982269525528,"z":-81.9204711914063},"rot":{"x":0.0208087842911482,"y":269.998840332031,"z":0.0167707055807114}},"2a37f3":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208115689456463,"y":269.989624023438,"z":0.0167673863470554}},"2d9585":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208087731152773,"y":269.999206542969,"z":0.0167709179222584}},"2ebdf1":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084442138672},"rot":{"x":0.0208093728870153,"y":269.99755859375,"z":0.0167700722813606}},"35bbe8":{"lock":false,"pos":{"x":40.2900466918945,"y":1.2976701259613,"z":-68.1198654174805},"rot":{"x":0.0208117719739676,"y":269.989562988281,"z":0.0167672466486692}},"36bc5b":{"lock":false,"pos":{"x":52.9282608032227,"y":1.2955287694931,"z":-91.1161575317383},"rot":{"x":0.0208086222410202,"y":269.999633789063,"z":0.0167709812521935}},"382580":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.0208088904619217,"y":270.000061035156,"z":0.0167716648429632}},"38374c":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.0208087284117937,"y":269.999542236328,"z":0.0167710017412901}},"3ab577":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208093635737896,"y":269.999176025391,"z":0.016770888119936}},"3bbc0b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7084045410156},"rot":{"x":0.0208090525120497,"y":270.000030517578,"z":0.0167715959250927}},"48db58":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30603182315826,"z":-58.9203453063965},"rot":{"x":0.0208088085055351,"y":269.999847412109,"z":0.016771923750639}},"4a5655":{"lock":false,"pos":{"x":36.6243324279785,"y":1.3017281293869,"z":-49.7084655761719},"rot":{"x":0.020809231325984,"y":269.997589111328,"z":0.0167702864855528}},"4d9a97":{"lock":false,"pos":{"x":58.0999031066895,"y":1.30883598327637,"z":-52.0709953308105},"rot":{"x":0.0208063889294863,"y":270.007598876953,"z":0.0167739652097225}},"5010c5":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30159246921539,"z":-70.4202270507813},"rot":{"x":0.0208089966326952,"y":269.999145507813,"z":0.01677081361413}},"50acc5":{"lock":false,"pos":{"x":52.9442405700684,"y":1.29687976837158,"z":-86.5202713012695},"rot":{"x":0.020808782428503,"y":269.999603271484,"z":0.0167708937078714}},"53d6d9":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30681622028351,"z":-58.9709815979004},"rot":{"x":0.0208083521574736,"y":270.000030517578,"z":0.016770850867033}},"584914":{"lock":false,"pos":{"x":40.2900848388672,"y":1.2922842502594,"z":-86.5199127197266},"rot":{"x":0.0208076443523169,"y":270.002563476563,"z":0.0167721826583147}},"59f3e4":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208088699728251,"y":269.99951171875,"z":0.0167704820632935}},"5a1991":{"lock":false,"pos":{"x":52.9441108703613,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.0208084620535374,"y":269.999542236328,"z":0.0167711246758699}},"5a2b49":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208083689212799,"y":270.000030517578,"z":0.0167709812521935}},"5b1550":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208085905760527,"y":270.000030517578,"z":0.01677081361413}},"5d45c1":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208091028034687,"y":269.999084472656,"z":0.0167713742703199}},"61d1e5":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208089202642441,"y":269.999328613281,"z":0.0167708918452263}},"630d65":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208114627748728,"y":269.990051269531,"z":0.0167675577104092}},"673d14":{"lock":false,"pos":{"x":36.624340057373,"y":1.2956690788269,"z":-70.4083023071289},"rot":{"x":0.0208085179328918,"y":269.999603271484,"z":0.0167693328112364}},"6842aa":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208087619394064,"y":269.999450683594,"z":0.016770800575614}},"6a04c3":{"lock":false,"pos":{"x":49.2784957885742,"y":1.30565047264099,"z":-52.0087699890137},"rot":{"x":0.0208086185157299,"y":269.999603271484,"z":0.0167712103575468}},"6a8a9f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30632376670837,"z":-49.708812713623},"rot":{"x":0.0208086185157299,"y":269.999603271484,"z":0.0167710483074188}},"719a45":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29432249069214,"z":-75.008430480957},"rot":{"x":0.0208091922104359,"y":270.000030517578,"z":0.0167716238647699}},"71a760":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208085924386978,"y":270.000030517578,"z":0.016771337017417}},"76b07c":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563187599182,"z":-56.6203422546387},"rot":{"x":0.0208087153732777,"y":269.999206542969,"z":0.0167710334062576}},"7fe153":{"lock":false,"pos":{"x":58.0992050170898,"y":1.31019079685211,"z":-47.4415969848633},"rot":{"x":0.0208059567958117,"y":270.0087890625,"z":0.0167742446064949}},"812c4f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30699694156647,"z":-47.4087867736816},"rot":{"x":0.0208085775375366,"y":269.999603271484,"z":0.0167708434164524}},"8cdf20":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29701554775238,"z":-65.8082885742188},"rot":{"x":0.0208093505352736,"y":269.997497558594,"z":0.0167701076716185}},"910b12":{"lock":false,"pos":{"x":52.9442367553711,"y":1.3063051700592,"z":-54.3201904296875},"rot":{"x":0.0208088289946318,"y":269.998748779297,"z":0.0167707297950983}},"9869ee":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208087209612131,"y":269.998901367188,"z":0.0167707242071629}},"9d09f0":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170953273773,"z":-54.3199996948242},"rot":{"x":0.0208114720880985,"y":269.989898681641,"z":0.016767518594861}},"9dcdd3":{"lock":false,"pos":{"x":52.9284210205078,"y":1.29620385169983,"z":-88.8097152709961},"rot":{"x":0.0208088606595993,"y":269.999633789063,"z":0.0167709086090326}},"9e4e11":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208087712526321,"y":269.999176025391,"z":0.0167710371315479}},"9f9e58":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29699695110321,"z":-70.4198837280273},"rot":{"x":0.0208116453140974,"y":269.989562988281,"z":0.016767306253314}},"a06013":{"lock":false,"pos":{"x":40.2893486022949,"y":1.29497182369232,"z":-77.3372268676758},"rot":{"x":0.0208078660070896,"y":270.002807617188,"z":0.016772186383605}},"a177db":{"lock":false,"pos":{"x":36.6243476867676,"y":1.29499578475952,"z":-72.708381652832},"rot":{"x":0.0208084397017956,"y":269.999450683594,"z":0.0167704783380032}},"a1c47b":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036306381226,"z":-58.9200057983398},"rot":{"x":0.0208114851266146,"y":269.989807128906,"z":0.0167675018310547}},"a4e44a":{"lock":false,"pos":{"x":40.2900352478027,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208078436553478,"y":270.0029296875,"z":0.0167722515761852}},"a5fc16":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.0208076853305101,"y":270.002868652344,"z":0.0167722962796688}},"ac7db0":{"lock":false,"pos":{"x":49.278678894043,"y":1.30497074127197,"z":-54.3310775756836},"rot":{"x":0.0208086855709553,"y":269.999603271484,"z":0.0167709607630968}},"ad0934":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29957270622253,"z":-77.3202590942383},"rot":{"x":0.0208087936043739,"y":269.998901367188,"z":0.0167707484215498}},"ad6d9d":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208088848739862,"y":269.999206542969,"z":0.0167709551751614}},"b09d6f":{"lock":false,"pos":{"x":40.2920799255371,"y":1.29363143444061,"z":-81.9201278686523},"rot":{"x":0.0208077449351549,"y":270.002716064453,"z":0.0167723651975393}},"b337ac":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208115074783564,"y":269.989685058594,"z":0.0167674254626036}},"b633d0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208086837083101,"y":269.999328613281,"z":0.0167709663510323}},"b8f774":{"lock":false,"pos":{"x":36.6243438720703,"y":1.296342253685,"z":-68.1082916259766},"rot":{"x":0.0208092667162418,"y":269.997497558594,"z":0.0167702343314886}},"bce471":{"lock":false,"pos":{"x":58.0996742248535,"y":1.30816268920898,"z":-54.3709678649902},"rot":{"x":0.0208086129277945,"y":269.999694824219,"z":0.0167710967361927}},"bf6a7b":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1158065795898},"rot":{"x":0.0208093225955963,"y":269.99755859375,"z":0.0167705360800028}},"c490a4":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208091475069523,"y":269.99755859375,"z":0.0167699493467808}},"c6c157":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.0208094641566277,"y":269.99755859375,"z":0.0167702585458755}},"cda2e6":{"lock":false,"pos":{"x":40.2742652893066,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.0208077430725098,"y":270.00244140625,"z":0.0167720932513475}},"ce1a7d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208091735839844,"y":269.99755859375,"z":0.016770351678133}},"d88560":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208084546029568,"y":270.000030517578,"z":0.0167709738016129}},"dd0b79":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208115391433239,"y":269.989929199219,"z":0.0167674757540226}},"e64769":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430389404297,"z":-79.6199111938477},"rot":{"x":0.0208078715950251,"y":270.002807617188,"z":0.0167722851037979}},"ea2337":{"lock":false,"pos":{"x":40.2899703979492,"y":1.29295742511749,"z":-84.2199630737305},"rot":{"x":0.0208083223551512,"y":270.000732421875,"z":0.0167713835835457}},"ea8324":{"lock":false,"pos":{"x":58.0999031066895,"y":1.30950927734375,"z":-49.77099609375},"rot":{"x":0.0208031665533781,"y":270.018493652344,"z":0.0167778674513102}},"ecc3b9":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208113957196474,"y":269.989990234375,"z":0.0167671646922827}},"f69d7d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084411621094},"rot":{"x":0.0208092406392097,"y":269.99755859375,"z":0.0167702715843916}},"f8a977":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632365703583,"z":-72.719970703125},"rot":{"x":0.0208078641444445,"y":270.000061035156,"z":0.0167710185050964}},"f8e50b":{"lock":false,"pos":{"x":44.2288818359375,"y":1.29546678066254,"z":-84.2006301879883},"rot":{"x":0.0208089891821146,"y":269.999816894531,"z":0.0167717114090919}},"fd393b":{"lock":false,"pos":{"x":52.9441909790039,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208084397017956,"y":270.000030517578,"z":0.0167712587863207}}}}' +LuaScriptState: '{"ml":{"002455":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30024600028992,"z":-75.0203552246094},"rot":{"x":0.0208087377250195,"y":269.998962402344,"z":0.0167707335203886}},"00c4cc":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.0208098404109478,"y":269.997497558594,"z":0.016770463436842}},"04d33d":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30699706077576,"z":-47.4087867736816},"rot":{"x":0.0208086892962456,"y":270.000030517578,"z":0.0167711563408375}},"08b398":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208114981651306,"y":269.98974609375,"z":0.0167670976370573}},"0b9f53":{"lock":false,"pos":{"x":58.0996475219727,"y":1.30614304542542,"z":-61.2709846496582},"rot":{"x":0.0208085458725691,"y":269.999694824219,"z":0.0167710296809673}},"0c433b":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208086371421814,"y":270.000030517578,"z":0.016771262511611}},"13ae70":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208115708082914,"y":269.989868164063,"z":0.0167673621326685}},"16fea1":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208087936043739,"y":269.999603271484,"z":0.0167708788067102}},"1c3b8f":{"lock":false,"pos":{"x":58.0996627807617,"y":1.30748951435089,"z":-56.6709785461426},"rot":{"x":0.020807359367609,"y":270.004180908203,"z":0.0167726185172796}},"1c8915":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084411621094},"rot":{"x":0.0208095237612724,"y":269.99755859375,"z":0.0167698338627815}},"234fae":{"lock":false,"pos":{"x":52.9462356567383,"y":1.2982269525528,"z":-81.9204711914063},"rot":{"x":0.0208088215440512,"y":269.998840332031,"z":0.0167707167565823}},"2a37f3":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208114571869373,"y":269.989624023438,"z":0.0167673993855715}},"2d9585":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208088401705027,"y":269.999206542969,"z":0.0167708750814199}},"2ebdf1":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208094660192728,"y":269.99755859375,"z":0.0167699158191681}},"35bbe8":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29767024517059,"z":-68.1198654174805},"rot":{"x":0.0208115205168724,"y":269.989562988281,"z":0.0167673267424107}},"36bc5b":{"lock":false,"pos":{"x":52.9282608032227,"y":1.2955287694931,"z":-91.1161575317383},"rot":{"x":0.0208084732294083,"y":269.999633789063,"z":0.0167712103575468}},"382580":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7083969116211},"rot":{"x":0.0208095014095306,"y":269.999969482422,"z":0.0167717542499304}},"38374c":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.0208087284117937,"y":269.999542236328,"z":0.0167710017412901}},"3ab577":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208093635737896,"y":269.999176025391,"z":0.016770888119936}},"3bbc0b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29432249069214,"z":-75.0084228515625},"rot":{"x":0.0208091791719198,"y":269.999938964844,"z":0.0167716573923826}},"48db58":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30603182315826,"z":-58.9203453063965},"rot":{"x":0.0208088085055351,"y":269.999847412109,"z":0.016771923750639}},"4a5655":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.008430480957},"rot":{"x":0.0208092387765646,"y":269.997589111328,"z":0.0167698096483946}},"4d9a97":{"lock":false,"pos":{"x":58.0999031066895,"y":1.30883610248566,"z":-52.0709953308105},"rot":{"x":0.0208061747252941,"y":270.007598876953,"z":0.016773933544755}},"5010c5":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30159258842468,"z":-70.4202270507813},"rot":{"x":0.0208089761435986,"y":269.999145507813,"z":0.0167708490043879}},"50acc5":{"lock":false,"pos":{"x":52.9442405700684,"y":1.29687988758087,"z":-86.5202713012695},"rot":{"x":0.02080855704844,"y":269.999603271484,"z":0.0167709235101938}},"53d6d9":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30681622028351,"z":-58.9709815979004},"rot":{"x":0.0208087116479874,"y":270.000030517578,"z":0.0167711973190308}},"584914":{"lock":false,"pos":{"x":40.2742691040039,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.020808594301343,"y":270.002471923828,"z":0.016772435978055}},"59f3e4":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208088699728251,"y":269.99951171875,"z":0.0167704820632935}},"5a1991":{"lock":false,"pos":{"x":52.9441108703613,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.0208085756748915,"y":269.999542236328,"z":0.0167709924280643}},"5a2b49":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208086054772139,"y":270.000030517578,"z":0.0167711935937405}},"5b1550":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208084508776665,"y":270.000030517578,"z":0.0167710985988379}},"5d45c1":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208091028034687,"y":269.999084472656,"z":0.0167713742703199}},"61d1e5":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208087377250195,"y":269.999328613281,"z":0.0167709514498711}},"630d65":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208113826811314,"y":269.990051269531,"z":0.0167675483971834}},"673d14":{"lock":false,"pos":{"x":36.624340057373,"y":1.2956690788269,"z":-70.4083023071289},"rot":{"x":0.0208085179328918,"y":269.999603271484,"z":0.0167693328112364}},"6842aa":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208088755607605,"y":269.999450683594,"z":0.0167711451649666}},"6a04c3":{"lock":false,"pos":{"x":49.2784957885742,"y":1.30565059185028,"z":-52.0087699890137},"rot":{"x":0.0208085309714079,"y":269.999603271484,"z":0.0167712643742561}},"6a8a9f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30632376670837,"z":-49.708812713623},"rot":{"x":0.0208087284117937,"y":269.999603271484,"z":0.0167709682136774}},"719a45":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208092629909515,"y":269.999938964844,"z":0.0167714338749647}},"71a760":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428552627563,"z":-61.2203559875488},"rot":{"x":0.0208085887134075,"y":270.000030517578,"z":0.0167711041867733}},"76b07c":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563199520111,"z":-56.6203422546387},"rot":{"x":0.0208089537918568,"y":269.999206542969,"z":0.016771087422967}},"7fe153":{"lock":false,"pos":{"x":58.0992050170898,"y":1.3101909160614,"z":-47.4415969848633},"rot":{"x":0.0208058785647154,"y":270.0087890625,"z":0.0167742799967527}},"812c4f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30699694156647,"z":-47.4087867736816},"rot":{"x":0.0208085775375366,"y":269.999603271484,"z":0.0167708434164524}},"840ba5":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29565036296844,"z":-75.0199813842773},"rot":{"x":0.0208075344562531,"y":270.002410888672,"z":0.0167711600661278}},"8cdf20":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083068847656},"rot":{"x":0.0208101067692041,"y":269.997406005859,"z":0.0167707335203886}},"910b12":{"lock":false,"pos":{"x":52.9442367553711,"y":1.30630528926849,"z":-54.3201904296875},"rot":{"x":0.0208089295774698,"y":269.998748779297,"z":0.0167708694934845}},"9869ee":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208089202642441,"y":269.998901367188,"z":0.0167705956846476}},"9d09f0":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170965194702,"z":-54.3199996948242},"rot":{"x":0.0208116974681616,"y":269.989898681641,"z":0.0167674422264099}},"9dcdd3":{"lock":false,"pos":{"x":52.9284210205078,"y":1.29620397090912,"z":-88.8097152709961},"rot":{"x":0.0208088122308254,"y":269.999633789063,"z":0.0167708937078714}},"9e4e11":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765175819397,"z":-49.7203407287598},"rot":{"x":0.0208089649677277,"y":269.999176025391,"z":0.0167708229273558}},"9f9e58":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29699695110321,"z":-70.4198837280273},"rot":{"x":0.0208116229623556,"y":269.989562988281,"z":0.0167674217373133}},"a06013":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29430401325226,"z":-79.6199035644531},"rot":{"x":0.0208080913871527,"y":270.002746582031,"z":0.0167726464569569}},"a177db":{"lock":false,"pos":{"x":36.6243476867676,"y":1.29499578475952,"z":-72.708381652832},"rot":{"x":0.0208084397017956,"y":269.999450683594,"z":0.0167704783380032}},"a1c47b":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036318302155,"z":-58.9200057983398},"rot":{"x":0.0208115000277758,"y":269.989807128906,"z":0.0167676471173763}},"a4e44a":{"lock":false,"pos":{"x":40.2900352478027,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208078436553478,"y":270.0029296875,"z":0.0167722515761852}},"a5fc16":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29497718811035,"z":-77.3199005126953},"rot":{"x":0.0208084397017956,"y":270.002807617188,"z":0.0167725309729576}},"ac7db0":{"lock":false,"pos":{"x":49.278678894043,"y":1.30497074127197,"z":-54.3310775756836},"rot":{"x":0.0208088811486959,"y":269.999603271484,"z":0.0167709235101938}},"ad0934":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29957282543182,"z":-77.3202590942383},"rot":{"x":0.0208087749779224,"y":269.998901367188,"z":0.0167706478387117}},"ad6d9d":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208086390048265,"y":269.999206542969,"z":0.0167708676308393}},"b09d6f":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208085756748915,"y":270.002624511719,"z":0.0167724676430225}},"b337ac":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208115763962269,"y":269.989685058594,"z":0.016767306253314}},"b633d0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208089519292116,"y":269.999328613281,"z":0.0167708806693554}},"b8f774":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.4083099365234},"rot":{"x":0.0208102352917194,"y":269.997406005859,"z":0.0167706869542599}},"bce471":{"lock":false,"pos":{"x":58.0996742248535,"y":1.30816268920898,"z":-54.3709678649902},"rot":{"x":0.020808732137084,"y":269.999694824219,"z":0.0167711079120636}},"bf6a7b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208091959357262,"y":269.99755859375,"z":0.0167701914906502}},"c490a4":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208091475069523,"y":269.99755859375,"z":0.0167699493467808}},"c6c157":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083038330078},"rot":{"x":0.0208098944276571,"y":269.997497558594,"z":0.0167707651853561}},"cda2e6":{"lock":false,"pos":{"x":40.2741088867188,"y":1.29093313217163,"z":-91.1157989501953},"rot":{"x":0.0208086892962456,"y":270.002349853516,"z":0.0167723298072815}},"ce1a7d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208095051348209,"y":269.99755859375,"z":0.016769902780652}},"d88560":{"lock":false,"pos":{"x":36.6243324279785,"y":1.3017281293869,"z":-49.7084655761719},"rot":{"x":0.0208086892962456,"y":270,"z":0.0167710967361927}},"dd0b79":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3023829460144,"z":-52.0199966430664},"rot":{"x":0.020811403170228,"y":269.989929199219,"z":0.0167674422264099}},"e64769":{"lock":false,"pos":{"x":40.2920837402344,"y":1.29363143444061,"z":-81.9201202392578},"rot":{"x":0.020808570086956,"y":270.002807617188,"z":0.0167725831270218}},"ea2337":{"lock":false,"pos":{"x":40.2900886535645,"y":1.2922842502594,"z":-86.5199127197266},"rot":{"x":0.0208093393594027,"y":270.000732421875,"z":0.0167717821896076}},"ea8324":{"lock":false,"pos":{"x":58.0999031066895,"y":1.30950927734375,"z":-49.77099609375},"rot":{"x":0.0208029132336378,"y":270.018493652344,"z":0.0167780052870512}},"ecc3b9":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208113957196474,"y":269.989990234375,"z":0.0167671646922827}},"f69d7d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084442138672},"rot":{"x":0.0208094641566277,"y":269.99755859375,"z":0.0167699847370386}},"f8a977":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632377624512,"z":-72.719970703125},"rot":{"x":0.0208085272461176,"y":270.000061035156,"z":0.0167713537812233}},"f8e50b":{"lock":false,"pos":{"x":44.2288818359375,"y":1.29546678066254,"z":-84.2006301879883},"rot":{"x":0.0208089891821146,"y":269.999816894531,"z":0.0167717114090919}},"fd393b":{"lock":false,"pos":{"x":52.9441909790039,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208085179328918,"y":270.000030517578,"z":0.0167713351547718}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card .18 Derringer (2) f8a977.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card .18 Derringer (2) f8a977.yaml index ff130296d..9540a72ae 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card .18 Derringer (2) f8a977.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card .18 Derringer (2) f8a977.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538820 +CardID: 554920 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card A Test of Will (2) 71a760.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card A Test of Will (2) 71a760.yaml index c526504df..d71b580b6 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card A Test of Will (2) 71a760.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card A Test of Will (2) 71a760.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538821 +CardID: 554721 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Ancient Covenant (2) 840ba5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Ancient Covenant (2) 840ba5.yaml new file mode 100644 index 000000000..5c832b054 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Ancient Covenant (2) 840ba5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553114 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 840ba5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ancient Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.29 + posY: 1.3 + posZ: -75.02 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + 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 index a538a1a33..73b0ef073 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Aquinnah (3) bf6a7b.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Aquinnah (3) bf6a7b.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.27 - posY: 1.29 - posZ: -91.12 + posX: 36.62 + posY: 1.3 + posZ: -47.41 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Chainsaw (4) 382580.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Chainsaw (4) 382580.yaml index ea4501974..311bad48b 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Chainsaw (4) 382580.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Chainsaw (4) 382580.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538827 +CardID: 554127 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 36.62 - posY: 1.3 - posZ: -70.41 + posY: 1.29 + posZ: -72.71 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Cherished Keepsake (1) 5a2b49.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Cherished Keepsake (1) 5a2b49.yaml index ff79ddbd0..0b5a9b420 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Cherished Keepsake (1) 5a2b49.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Cherished Keepsake (1) 5a2b49.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538818 +CardID: 554418 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ 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 index d57d5d535..839319a01 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Cornered (2) a5fc16.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Cornered (2) a5fc16.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: 40.29 - posY: 1.3 - posZ: -75.02 + posY: 1.29 + posZ: -77.32 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 9771571f7..7ba9984ab 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -77.34 + posZ: -79.62 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Dumb Luck (2) 0c433b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Dumb Luck (2) 0c433b.yaml index 5283caff1..356d25878 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Dumb Luck (2) 0c433b.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Dumb Luck (2) 0c433b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538823 +CardID: 554023 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Déjà Vu (5) 719a45.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Déjà Vu (5) 719a45.yaml index a50f19b66..5fcdb531d 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Déjà Vu (5) 719a45.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Déjà Vu (5) 719a45.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538829 +CardID: 554629 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -75.01 + posZ: -77.31 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Granny Orne (3) d88560.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Granny Orne (3) d88560.yaml index cab431ab0..645651c8d 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Granny Orne (3) d88560.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Granny Orne (3) d88560.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538825 +CardID: 554825 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -47.41 + posZ: -49.71 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 0fea9acde..e55cb2202 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -79.62 + posZ: -81.92 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index d8f629402..ece5ae385 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -49.71 + posZ: -52.01 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 8c9a79e88..9ecb60783 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Lantern (2) b09d6f.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Lantern (2) b09d6f.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -81.92 + posZ: -84.22 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Leather Coat (1) 5b1550.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Leather Coat (1) 5b1550.yaml index 25d84a43a..abae5316d 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Leather Coat (1) 5b1550.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Leather Coat (1) 5b1550.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538819 +CardID: 554519 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Look what I found! (2) fd393b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Look what I found! (2) fd393b.yaml index abd95e909..599b07cbe 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Look what I found! (2) fd393b.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Look what I found! (2) fd393b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538822 +CardID: 555022 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Lucky! (3) 04d33d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Lucky! (3) 04d33d.yaml index 15fe6d1a8..1e27df07c 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Lucky! (3) 04d33d.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Lucky! (3) 04d33d.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538826 +CardID: 553926 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ 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 index b49f16fcc..043e622b6 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Newspaper (2) ea2337.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Newspaper (2) ea2337.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.29 posY: 1.29 - posZ: -84.22 + posZ: -86.52 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 89fa68dfa..12cfa8b61 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -52.01 + posZ: -54.31 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index a6ae56d6e..ac0336f79 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -54.31 + posZ: -56.61 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card On Your Own (3) 2ebdf1.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card On Your Own (3) 2ebdf1.yaml index ac0588e54..0fdeeb92e 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card On Your Own (3) 2ebdf1.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card On Your Own (3) 2ebdf1.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -56.61 + posZ: -58.91 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 60323d743..ffbe03ab1 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -58.91 + posZ: -61.21 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 739856937..e0f41febf 100644 --- 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 @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.29 + posX: 40.27 posY: 1.29 - posZ: -86.52 + posZ: -88.81 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Quick Learner (4) 3bbc0b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Quick Learner (4) 3bbc0b.yaml index 2c552c499..2df8f2077 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Quick Learner (4) 3bbc0b.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Quick Learner (4) 3bbc0b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538828 +CardID: 554228 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.29 - posZ: -72.71 + posZ: -75.01 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 4faf645d4..08f38c861 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -61.21 + posZ: -63.51 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index 05ab8afed..3bf136723 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Scavenging (2) cda2e6.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Scavenging (2) cda2e6.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 40.27 posY: 1.29 - posZ: -88.81 + posZ: -91.12 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index f5d980fee..d1e25b94b 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Scrapper (3) c6c157.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Scrapper (3) c6c157.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -63.51 + posZ: -65.81 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index a97053207..6d40d8938 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -65.81 + posZ: -68.11 rotX: 0.02 rotY: 270.0 rotZ: 0.02 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 index bf4de8175..d414ad576 100644 --- 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 @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: 36.62 posY: 1.3 - posZ: -68.11 + posZ: -70.41 rotX: 0.02 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Unexpected Courage (2) 53d6d9.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Unexpected Courage (2) 53d6d9.yaml index 15d60e37d..6c7dd3630 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Card Unexpected Courage (2) 53d6d9.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Unexpected Courage (2) 53d6d9.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538824 +CardID: 554324 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589.ttslua b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589.ttslua rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1.ttslua diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1.yaml new file mode 100644 index 000000000..752268c4e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1.yaml @@ -0,0 +1,119 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor f15fc1/Card Ancient Covenant (2) 840ba5.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Lucky! (2) 002455.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Rabbit''s Foot (3) 00c4cc.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Lucky! (3) 04d33d.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Rise to the Occasion (3) 0b9f53.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Dumb Luck (2) 0c433b.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Guiding Spirit (1) 13ae70.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Survival Instinct (2) 1c3b8f.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Nightmare Bauble (3) 1c8915.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Snare Trap (2) 234fae.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Plucky (1) 2a37f3.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card A Test of Will (1) 2d9585.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card On Your Own (3) 2ebdf1.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Try and Try Again (1) 35bbe8.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Infighting (3) 36bc5b.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Chainsaw (4) 382580.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Quick Learner (4) 3bbc0b.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Grisly Totem (3) 4a5655.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Sharp Vision (1) 4d9a97.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Fortune or Fate (2) 5010c5.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Bait and Switch (3) 50acc5.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Unexpected Courage (2) 53d6d9.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Peter Sylvestre (2) 584914.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Alter Fate (3) 5a1991.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Cherished Keepsake (1) 5a2b49.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Leather Coat (1) 5b1550.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Close Call (2) 61d1e5.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Aquinnah (1) 630d65.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card A Chance Encounter (2) 6842aa.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card True Survivor (3) 6a04c3.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Nothing Left to Lose (3) 6a8a9f.yaml' +- !include "Custom_Model_Bag Survivor f15fc1/Card D\xE9j\xE0 Vu (5) 719a45.yaml" +- !include 'Custom_Model_Bag Survivor f15fc1/Card A Test of Will (2) 71a760.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Lure (1) 76b07c.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Brute Force (1) 7fe153.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Tennessee Sour Mash (3) 8cdf20.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Flare (1) 910b12.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Oops! (2) 9869ee.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Five of Pentacles (1) 9d09f0.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Eucatastrophe (3) 9dcdd3.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Alter Fate (1) 9e4e11.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Yaotl (1) 9f9e58.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Dig Deep (2) a06013.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Jessica Hyde (1) a1c47b.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Cornered (2) a5fc16.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Will to Survive (3) ac7db0.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Lure (2) ad0934.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Devil''s Luck (1) ad6d9d.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Lantern (2) b09d6f.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Miss Doyle (1) b337ac.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Against All Odds (2) b633d0.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Try and Try Again (3) b8f774.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Stroke of Luck (2) bce471.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Aquinnah (3) bf6a7b.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Scrapper (3) c6c157.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Scavenging (2) cda2e6.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card On Your Own (3) ce1a7d.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Granny Orne (3) d88560.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Fire Extinguisher (1) dd0b79.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Gravedigger''s Shovel (2) e64769.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Newspaper (2) ea2337.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Expeditious Retreat (1) ea8324.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Old Hunting Rifle (3) f69d7d.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card .18 Derringer (2) f8a977.yaml' +- !include 'Custom_Model_Bag Survivor f15fc1/Card Look what I found! (2) fd393b.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: '' +DragSelectable: true +GMNotes: '' +GUID: f15fc1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Survivor f15fc1.ttslua' +LuaScriptState: '{"ml":{"002455":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30024600028992,"z":-75.0203552246094},"rot":{"x":0.0208087377250195,"y":269.998962402344,"z":0.0167707335203886}},"00c4cc":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.0208098404109478,"y":269.997497558594,"z":0.016770463436842}},"04d33d":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30699706077576,"z":-47.4087867736816},"rot":{"x":0.0208086892962456,"y":270.000030517578,"z":0.0167711563408375}},"08b398":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208114981651306,"y":269.98974609375,"z":0.0167670976370573}},"0b9f53":{"lock":false,"pos":{"x":58.0996475219727,"y":1.30614304542542,"z":-61.2709846496582},"rot":{"x":0.0208085458725691,"y":269.999694824219,"z":0.0167710296809673}},"0c433b":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208086371421814,"y":270.000030517578,"z":0.016771262511611}},"13ae70":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208115708082914,"y":269.989868164063,"z":0.0167673621326685}},"16fea1":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208087936043739,"y":269.999603271484,"z":0.0167708788067102}},"1c3b8f":{"lock":false,"pos":{"x":58.0996627807617,"y":1.30748951435089,"z":-56.6709785461426},"rot":{"x":0.020807359367609,"y":270.004180908203,"z":0.0167726185172796}},"1c8915":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084411621094},"rot":{"x":0.0208095237612724,"y":269.99755859375,"z":0.0167698338627815}},"234fae":{"lock":false,"pos":{"x":52.9462356567383,"y":1.2982269525528,"z":-81.9204711914063},"rot":{"x":0.0208088215440512,"y":269.998840332031,"z":0.0167707167565823}},"2a37f3":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208114571869373,"y":269.989624023438,"z":0.0167673993855715}},"2d9585":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208088401705027,"y":269.999206542969,"z":0.0167708750814199}},"2ebdf1":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208094660192728,"y":269.99755859375,"z":0.0167699158191681}},"35bbe8":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29767024517059,"z":-68.1198654174805},"rot":{"x":0.0208115205168724,"y":269.989562988281,"z":0.0167673267424107}},"36bc5b":{"lock":false,"pos":{"x":52.9282608032227,"y":1.2955287694931,"z":-91.1161575317383},"rot":{"x":0.0208084732294083,"y":269.999633789063,"z":0.0167712103575468}},"382580":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7083969116211},"rot":{"x":0.0208095014095306,"y":269.999969482422,"z":0.0167717542499304}},"38374c":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.0208087284117937,"y":269.999542236328,"z":0.0167710017412901}},"3ab577":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208093635737896,"y":269.999176025391,"z":0.016770888119936}},"3bbc0b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29432249069214,"z":-75.0084228515625},"rot":{"x":0.0208091791719198,"y":269.999938964844,"z":0.0167716573923826}},"48db58":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30603182315826,"z":-58.9203453063965},"rot":{"x":0.0208088085055351,"y":269.999847412109,"z":0.016771923750639}},"4a5655":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.008430480957},"rot":{"x":0.0208092387765646,"y":269.997589111328,"z":0.0167698096483946}},"4d9a97":{"lock":false,"pos":{"x":58.0999031066895,"y":1.30883610248566,"z":-52.0709953308105},"rot":{"x":0.0208061747252941,"y":270.007598876953,"z":0.016773933544755}},"5010c5":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30159258842468,"z":-70.4202270507813},"rot":{"x":0.0208089761435986,"y":269.999145507813,"z":0.0167708490043879}},"50acc5":{"lock":false,"pos":{"x":52.9442405700684,"y":1.29687988758087,"z":-86.5202713012695},"rot":{"x":0.02080855704844,"y":269.999603271484,"z":0.0167709235101938}},"53d6d9":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30681622028351,"z":-58.9709815979004},"rot":{"x":0.0208087116479874,"y":270.000030517578,"z":0.0167711973190308}},"584914":{"lock":false,"pos":{"x":40.2742691040039,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.020808594301343,"y":270.002471923828,"z":0.016772435978055}},"59f3e4":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208088699728251,"y":269.99951171875,"z":0.0167704820632935}},"5a1991":{"lock":false,"pos":{"x":52.9441108703613,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.0208085756748915,"y":269.999542236328,"z":0.0167709924280643}},"5a2b49":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208086054772139,"y":270.000030517578,"z":0.0167711935937405}},"5b1550":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208084508776665,"y":270.000030517578,"z":0.0167710985988379}},"5d45c1":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208091028034687,"y":269.999084472656,"z":0.0167713742703199}},"61d1e5":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208087377250195,"y":269.999328613281,"z":0.0167709514498711}},"630d65":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372941493988,"z":-47.4200057983398},"rot":{"x":0.0208113826811314,"y":269.990051269531,"z":0.0167675483971834}},"673d14":{"lock":false,"pos":{"x":36.624340057373,"y":1.2956690788269,"z":-70.4083023071289},"rot":{"x":0.0208085179328918,"y":269.999603271484,"z":0.0167693328112364}},"6842aa":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208088755607605,"y":269.999450683594,"z":0.0167711451649666}},"6a04c3":{"lock":false,"pos":{"x":49.2784957885742,"y":1.30565059185028,"z":-52.0087699890137},"rot":{"x":0.0208085309714079,"y":269.999603271484,"z":0.0167712643742561}},"6a8a9f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30632376670837,"z":-49.708812713623},"rot":{"x":0.0208087284117937,"y":269.999603271484,"z":0.0167709682136774}},"719a45":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29364931583405,"z":-77.3083343505859},"rot":{"x":0.0208092629909515,"y":269.999938964844,"z":0.0167714338749647}},"71a760":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428552627563,"z":-61.2203559875488},"rot":{"x":0.0208085887134075,"y":270.000030517578,"z":0.0167711041867733}},"76b07c":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563199520111,"z":-56.6203422546387},"rot":{"x":0.0208089537918568,"y":269.999206542969,"z":0.016771087422967}},"7fe153":{"lock":false,"pos":{"x":58.0992050170898,"y":1.3101909160614,"z":-47.4415969848633},"rot":{"x":0.0208058785647154,"y":270.0087890625,"z":0.0167742799967527}},"812c4f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30699694156647,"z":-47.4087867736816},"rot":{"x":0.0208085775375366,"y":269.999603271484,"z":0.0167708434164524}},"840ba5":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29565036296844,"z":-75.0199813842773},"rot":{"x":0.0208075344562531,"y":270.002410888672,"z":0.0167711600661278}},"8cdf20":{"lock":false,"pos":{"x":36.6243324279785,"y":1.296342253685,"z":-68.1083068847656},"rot":{"x":0.0208101067692041,"y":269.997406005859,"z":0.0167707335203886}},"910b12":{"lock":false,"pos":{"x":52.9442367553711,"y":1.30630528926849,"z":-54.3201904296875},"rot":{"x":0.0208089295774698,"y":269.998748779297,"z":0.0167708694934845}},"9869ee":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208089202642441,"y":269.998901367188,"z":0.0167705956846476}},"9d09f0":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170965194702,"z":-54.3199996948242},"rot":{"x":0.0208116974681616,"y":269.989898681641,"z":0.0167674422264099}},"9dcdd3":{"lock":false,"pos":{"x":52.9284210205078,"y":1.29620397090912,"z":-88.8097152709961},"rot":{"x":0.0208088122308254,"y":269.999633789063,"z":0.0167708937078714}},"9e4e11":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765175819397,"z":-49.7203407287598},"rot":{"x":0.0208089649677277,"y":269.999176025391,"z":0.0167708229273558}},"9f9e58":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29699695110321,"z":-70.4198837280273},"rot":{"x":0.0208116229623556,"y":269.989562988281,"z":0.0167674217373133}},"a06013":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29430401325226,"z":-79.6199035644531},"rot":{"x":0.0208080913871527,"y":270.002746582031,"z":0.0167726464569569}},"a177db":{"lock":false,"pos":{"x":36.6243476867676,"y":1.29499578475952,"z":-72.708381652832},"rot":{"x":0.0208084397017956,"y":269.999450683594,"z":0.0167704783380032}},"a1c47b":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036318302155,"z":-58.9200057983398},"rot":{"x":0.0208115000277758,"y":269.989807128906,"z":0.0167676471173763}},"a4e44a":{"lock":false,"pos":{"x":40.2900352478027,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208078436553478,"y":270.0029296875,"z":0.0167722515761852}},"a5fc16":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29497718811035,"z":-77.3199005126953},"rot":{"x":0.0208084397017956,"y":270.002807617188,"z":0.0167725309729576}},"ac7db0":{"lock":false,"pos":{"x":49.278678894043,"y":1.30497074127197,"z":-54.3310775756836},"rot":{"x":0.0208088811486959,"y":269.999603271484,"z":0.0167709235101938}},"ad0934":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29957282543182,"z":-77.3202590942383},"rot":{"x":0.0208087749779224,"y":269.998901367188,"z":0.0167706478387117}},"ad6d9d":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208086390048265,"y":269.999206542969,"z":0.0167708676308393}},"b09d6f":{"lock":false,"pos":{"x":40.2899589538574,"y":1.29295742511749,"z":-84.2198944091797},"rot":{"x":0.0208085756748915,"y":270.002624511719,"z":0.0167724676430225}},"b337ac":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208115763962269,"y":269.989685058594,"z":0.016767306253314}},"b633d0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208089519292116,"y":269.999328613281,"z":0.0167708806693554}},"b8f774":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.4083099365234},"rot":{"x":0.0208102352917194,"y":269.997406005859,"z":0.0167706869542599}},"bce471":{"lock":false,"pos":{"x":58.0996742248535,"y":1.30816268920898,"z":-54.3709678649902},"rot":{"x":0.020808732137084,"y":269.999694824219,"z":0.0167711079120636}},"bf6a7b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208091959357262,"y":269.99755859375,"z":0.0167701914906502}},"c490a4":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208091475069523,"y":269.99755859375,"z":0.0167699493467808}},"c6c157":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29701554775238,"z":-65.8083038330078},"rot":{"x":0.0208098944276571,"y":269.997497558594,"z":0.0167707651853561}},"cda2e6":{"lock":false,"pos":{"x":40.2741088867188,"y":1.29093313217163,"z":-91.1157989501953},"rot":{"x":0.0208086892962456,"y":270.002349853516,"z":0.0167723298072815}},"ce1a7d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208095051348209,"y":269.99755859375,"z":0.016769902780652}},"d88560":{"lock":false,"pos":{"x":36.6243324279785,"y":1.3017281293869,"z":-49.7084655761719},"rot":{"x":0.0208086892962456,"y":270,"z":0.0167710967361927}},"dd0b79":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3023829460144,"z":-52.0199966430664},"rot":{"x":0.020811403170228,"y":269.989929199219,"z":0.0167674422264099}},"e64769":{"lock":false,"pos":{"x":40.2920837402344,"y":1.29363143444061,"z":-81.9201202392578},"rot":{"x":0.020808570086956,"y":270.002807617188,"z":0.0167725831270218}},"ea2337":{"lock":false,"pos":{"x":40.2900886535645,"y":1.2922842502594,"z":-86.5199127197266},"rot":{"x":0.0208093393594027,"y":270.000732421875,"z":0.0167717821896076}},"ea8324":{"lock":false,"pos":{"x":58.0999031066895,"y":1.30950927734375,"z":-49.77099609375},"rot":{"x":0.0208029132336378,"y":270.018493652344,"z":0.0167780052870512}},"ecc3b9":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208113957196474,"y":269.989990234375,"z":0.0167671646922827}},"f69d7d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084442138672},"rot":{"x":0.0208094641566277,"y":269.99755859375,"z":0.0167699847370386}},"f8a977":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632377624512,"z":-72.719970703125},"rot":{"x":0.0208085272461176,"y":270.000061035156,"z":0.0167713537812233}},"f8e50b":{"lock":false,"pos":{"x":44.2288818359375,"y":1.29546678066254,"z":-84.2006301879883},"rot":{"x":0.0208089891821146,"y":269.999816894531,"z":0.0167717114090919}},"fd393b":{"lock":false,"pos":{"x":52.9441909790039,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208085179328918,"y":270.000030517578,"z":0.0167713351547718}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.3 + posY: 1.66 + posZ: -85.51 + rotX: 0.02 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card .18 Derringer (2) f8a977.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card .18 Derringer (2) f8a977.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card .18 Derringer (2) f8a977.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card .18 Derringer (2) f8a977.yaml index 541988876..89ba671b6 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card .18 Derringer (2) f8a977.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card .18 Derringer (2) f8a977.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538820 +CardID: 554920 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5549': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card A Chance Encounter (2) 6842aa.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card A Chance Encounter (2) 6842aa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card A Chance Encounter (2) 6842aa.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card A Chance Encounter (2) 6842aa.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card A Test of Will (1) 2d9585.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card A Test of Will (1) 2d9585.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card A Test of Will (1) 2d9585.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card A Test of Will (1) 2d9585.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card A Test of Will (2) 71a760.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card A Test of Will (2) 71a760.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card A Test of Will (2) 71a760.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card A Test of Will (2) 71a760.yaml index 4dda9e8c3..c72df6eea 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card A Test of Will (2) 71a760.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card A Test of Will (2) 71a760.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538821 +CardID: 554721 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5547': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Against All Odds (2) b633d0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Against All Odds (2) b633d0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Against All Odds (2) b633d0.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Against All Odds (2) b633d0.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Alter Fate (1) 9e4e11.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Alter Fate (1) 9e4e11.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Alter Fate (1) 9e4e11.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Alter Fate (1) 9e4e11.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Alter Fate (3) 5a1991.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Alter Fate (3) 5a1991.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Alter Fate (3) 5a1991.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Alter Fate (3) 5a1991.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Ancient Covenant (2) 840ba5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Ancient Covenant (2) 840ba5.yaml new file mode 100644 index 000000000..27391e0c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Ancient Covenant (2) 840ba5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 553114 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5531': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 840ba5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ancient Covenant (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.31 + posY: 1.41 + posZ: -85.51 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Aquinnah (1) 630d65.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Aquinnah (1) 630d65.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Aquinnah (1) 630d65.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Aquinnah (1) 630d65.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Aquinnah (3) bf6a7b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Aquinnah (3) bf6a7b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Aquinnah (3) bf6a7b.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Aquinnah (3) bf6a7b.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Bait and Switch (3) 50acc5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Bait and Switch (3) 50acc5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Bait and Switch (3) 50acc5.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Bait and Switch (3) 50acc5.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Brute Force (1) 7fe153.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Brute Force (1) 7fe153.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Brute Force (1) 7fe153.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Brute Force (1) 7fe153.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Chainsaw (4) 382580.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Chainsaw (4) 382580.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Chainsaw (4) 382580.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Chainsaw (4) 382580.yaml index 3307d5c8d..c4a937064 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Chainsaw (4) 382580.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Chainsaw (4) 382580.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538827 +CardID: 554127 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5541': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Cherished Keepsake (1) 5a2b49.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Cherished Keepsake (1) 5a2b49.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Cherished Keepsake (1) 5a2b49.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Cherished Keepsake (1) 5a2b49.yaml index a99185a61..4ed81be00 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Cherished Keepsake (1) 5a2b49.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Cherished Keepsake (1) 5a2b49.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538818 +CardID: 554418 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5544': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Close Call (2) 61d1e5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Close Call (2) 61d1e5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Close Call (2) 61d1e5.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Close Call (2) 61d1e5.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Cornered (2) a5fc16.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Cornered (2) a5fc16.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Cornered (2) a5fc16.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Cornered (2) a5fc16.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Devil's Luck (1) ad6d9d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Devil's Luck (1) ad6d9d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Devil's Luck (1) ad6d9d.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Devil's Luck (1) ad6d9d.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Dig Deep (2) a06013.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Dig Deep (2) a06013.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Dig Deep (2) a06013.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Dig Deep (2) a06013.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Dumb Luck (2) 0c433b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Dumb Luck (2) 0c433b.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Dumb Luck (2) 0c433b.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Dumb Luck (2) 0c433b.yaml index 4a4f499eb..4491daa13 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Dumb Luck (2) 0c433b.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Dumb Luck (2) 0c433b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538823 +CardID: 554023 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5540': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Déjà Vu (5) 719a45.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Déjà Vu (5) 719a45.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Déjà Vu (5) 719a45.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Déjà Vu (5) 719a45.yaml index c15dfe875..3bab43c47 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Déjà Vu (5) 719a45.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Déjà Vu (5) 719a45.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538829 +CardID: 554629 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5546': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Eucatastrophe (3) 9dcdd3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Eucatastrophe (3) 9dcdd3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Eucatastrophe (3) 9dcdd3.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Eucatastrophe (3) 9dcdd3.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Expeditious Retreat (1) ea8324.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Expeditious Retreat (1) ea8324.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Expeditious Retreat (1) ea8324.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Expeditious Retreat (1) ea8324.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Fire Extinguisher (1) dd0b79.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Fire Extinguisher (1) dd0b79.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Fire Extinguisher (1) dd0b79.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Fire Extinguisher (1) dd0b79.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Five of Pentacles (1) 9d09f0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Five of Pentacles (1) 9d09f0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Five of Pentacles (1) 9d09f0.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Five of Pentacles (1) 9d09f0.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Flare (1) 910b12.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Flare (1) 910b12.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Flare (1) 910b12.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Flare (1) 910b12.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Fortune or Fate (2) 5010c5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Fortune or Fate (2) 5010c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Fortune or Fate (2) 5010c5.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Fortune or Fate (2) 5010c5.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Granny Orne (3) d88560.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Granny Orne (3) d88560.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Granny Orne (3) d88560.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Granny Orne (3) d88560.yaml index 17fe63a64..46d136f24 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Granny Orne (3) d88560.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Granny Orne (3) d88560.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538825 +CardID: 554825 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5548': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Gravedigger's Shovel (2) e64769.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Gravedigger's Shovel (2) e64769.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Gravedigger's Shovel (2) e64769.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Gravedigger's Shovel (2) e64769.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Grisly Totem (3) 4a5655.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Grisly Totem (3) 4a5655.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Grisly Totem (3) 4a5655.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Grisly Totem (3) 4a5655.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Guiding Spirit (1) 13ae70.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Guiding Spirit (1) 13ae70.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Guiding Spirit (1) 13ae70.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Guiding Spirit (1) 13ae70.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Infighting (3) 36bc5b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Infighting (3) 36bc5b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Infighting (3) 36bc5b.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Infighting (3) 36bc5b.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Jessica Hyde (1) a1c47b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Jessica Hyde (1) a1c47b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Jessica Hyde (1) a1c47b.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Jessica Hyde (1) a1c47b.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lantern (2) b09d6f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lantern (2) b09d6f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lantern (2) b09d6f.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lantern (2) b09d6f.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Leather Coat (1) 5b1550.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Leather Coat (1) 5b1550.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Leather Coat (1) 5b1550.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Leather Coat (1) 5b1550.yaml index ecad5e3ad..0dbfcaf56 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Leather Coat (1) 5b1550.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Leather Coat (1) 5b1550.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538819 +CardID: 554519 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5545': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Look what I found! (2) fd393b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Look what I found! (2) fd393b.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Look what I found! (2) fd393b.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Look what I found! (2) fd393b.yaml index d0d3c5bac..4ac7f0306 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Look what I found! (2) fd393b.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Look what I found! (2) fd393b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538822 +CardID: 555022 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5550': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lucky! (2) 002455.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lucky! (2) 002455.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lucky! (2) 002455.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lucky! (2) 002455.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lucky! (3) 04d33d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lucky! (3) 04d33d.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lucky! (3) 04d33d.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lucky! (3) 04d33d.yaml index fb1cea727..a8d1a4bdc 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lucky! (3) 04d33d.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lucky! (3) 04d33d.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538826 +CardID: 553926 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5539': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lure (1) 76b07c.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lure (1) 76b07c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lure (1) 76b07c.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lure (1) 76b07c.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lure (2) ad0934.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lure (2) ad0934.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Lure (2) ad0934.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Lure (2) ad0934.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Miss Doyle (1) b337ac.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Miss Doyle (1) b337ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Miss Doyle (1) b337ac.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Miss Doyle (1) b337ac.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Newspaper (2) ea2337.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Newspaper (2) ea2337.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Newspaper (2) ea2337.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Newspaper (2) ea2337.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Nightmare Bauble (3) 1c8915.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Nightmare Bauble (3) 1c8915.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Nightmare Bauble (3) 1c8915.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Nightmare Bauble (3) 1c8915.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Nothing Left to Lose (3) 6a8a9f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Nothing Left to Lose (3) 6a8a9f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Nothing Left to Lose (3) 6a8a9f.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Nothing Left to Lose (3) 6a8a9f.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Old Hunting Rifle (3) f69d7d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Old Hunting Rifle (3) f69d7d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Old Hunting Rifle (3) f69d7d.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Old Hunting Rifle (3) f69d7d.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card On Your Own (3) 2ebdf1.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card On Your Own (3) 2ebdf1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card On Your Own (3) 2ebdf1.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card On Your Own (3) 2ebdf1.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card On Your Own (3) ce1a7d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card On Your Own (3) ce1a7d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card On Your Own (3) ce1a7d.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card On Your Own (3) ce1a7d.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Oops! (2) 9869ee.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Oops! (2) 9869ee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Oops! (2) 9869ee.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Oops! (2) 9869ee.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Peter Sylvestre (2) 584914.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Peter Sylvestre (2) 584914.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Peter Sylvestre (2) 584914.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Peter Sylvestre (2) 584914.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Plucky (1) 2a37f3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Plucky (1) 2a37f3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Plucky (1) 2a37f3.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Plucky (1) 2a37f3.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Quick Learner (4) 3bbc0b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Quick Learner (4) 3bbc0b.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Quick Learner (4) 3bbc0b.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Quick Learner (4) 3bbc0b.yaml index 0adb2f7c5..21bd1e9c1 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Quick Learner (4) 3bbc0b.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Quick Learner (4) 3bbc0b.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538828 +CardID: 554228 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5542': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Rabbit's Foot (3) 00c4cc.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Rabbit's Foot (3) 00c4cc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Rabbit's Foot (3) 00c4cc.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Rabbit's Foot (3) 00c4cc.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Rise to the Occasion (3) 0b9f53.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Rise to the Occasion (3) 0b9f53.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Rise to the Occasion (3) 0b9f53.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Rise to the Occasion (3) 0b9f53.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Scavenging (2) cda2e6.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Scavenging (2) cda2e6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Scavenging (2) cda2e6.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Scavenging (2) cda2e6.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Scrapper (3) c6c157.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Scrapper (3) c6c157.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Scrapper (3) c6c157.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Scrapper (3) c6c157.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Sharp Vision (1) 4d9a97.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Sharp Vision (1) 4d9a97.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Sharp Vision (1) 4d9a97.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Sharp Vision (1) 4d9a97.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Snare Trap (2) 234fae.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Snare Trap (2) 234fae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Snare Trap (2) 234fae.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Snare Trap (2) 234fae.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Stroke of Luck (2) bce471.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Stroke of Luck (2) bce471.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Stroke of Luck (2) bce471.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Stroke of Luck (2) bce471.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Survival Instinct (2) 1c3b8f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Survival Instinct (2) 1c3b8f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Survival Instinct (2) 1c3b8f.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Survival Instinct (2) 1c3b8f.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Tennessee Sour Mash (3) 8cdf20.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Tennessee Sour Mash (3) 8cdf20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Tennessee Sour Mash (3) 8cdf20.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Tennessee Sour Mash (3) 8cdf20.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card True Survivor (3) 6a04c3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card True Survivor (3) 6a04c3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card True Survivor (3) 6a04c3.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card True Survivor (3) 6a04c3.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Try and Try Again (1) 35bbe8.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Try and Try Again (1) 35bbe8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Try and Try Again (1) 35bbe8.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Try and Try Again (1) 35bbe8.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Try and Try Again (3) b8f774.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Try and Try Again (3) b8f774.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Try and Try Again (3) b8f774.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Try and Try Again (3) b8f774.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Unexpected Courage (2) 53d6d9.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Unexpected Courage (2) 53d6d9.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Unexpected Courage (2) 53d6d9.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Unexpected Courage (2) 53d6d9.yaml index dc7309b67..3eb504dfa 100644 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Unexpected Courage (2) 53d6d9.yaml +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Unexpected Courage (2) 53d6d9.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 538824 +CardID: 554324 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5388': + '5543': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/ diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Will to Survive (3) ac7db0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Will to Survive (3) ac7db0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Will to Survive (3) ac7db0.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Will to Survive (3) ac7db0.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Yaotl (1) 9f9e58.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Yaotl (1) 9f9e58.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589/Card Yaotl (1) 9f9e58.yaml rename to unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f15fc1/Card Yaotl (1) 9f9e58.yaml diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589.yaml deleted file mode 100644 index 2e1b93fe2..000000000 --- a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor f96589.yaml +++ /dev/null @@ -1,118 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Survivor f96589/Card Unexpected Courage (2) 53d6d9.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Quick Learner (4) 3bbc0b.yaml' -- !include "Custom_Model_Bag Survivor f96589/Card D\xE9j\xE0 Vu (5) 719a45.yaml" -- !include 'Custom_Model_Bag Survivor f96589/Card Chainsaw (4) 382580.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Granny Orne (3) d88560.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card .18 Derringer (2) f8a977.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Leather Coat (1) 5b1550.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Cherished Keepsake (1) 5a2b49.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Lucky! (3) 04d33d.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card A Test of Will (2) 71a760.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Dumb Luck (2) 0c433b.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Look what I found! (2) fd393b.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Lucky! (2) 002455.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Rabbit''s Foot (3) 00c4cc.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Rise to the Occasion (3) 0b9f53.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Guiding Spirit (1) 13ae70.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Survival Instinct (2) 1c3b8f.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Nightmare Bauble (3) 1c8915.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Snare Trap (2) 234fae.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Plucky (1) 2a37f3.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card A Test of Will (1) 2d9585.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card On Your Own (3) 2ebdf1.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Try and Try Again (1) 35bbe8.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Infighting (3) 36bc5b.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Grisly Totem (3) 4a5655.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Sharp Vision (1) 4d9a97.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Fortune or Fate (2) 5010c5.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Bait and Switch (3) 50acc5.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Peter Sylvestre (2) 584914.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Alter Fate (3) 5a1991.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Close Call (2) 61d1e5.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Aquinnah (1) 630d65.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card A Chance Encounter (2) 6842aa.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card True Survivor (3) 6a04c3.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Nothing Left to Lose (3) 6a8a9f.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Lure (1) 76b07c.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Brute Force (1) 7fe153.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Tennessee Sour Mash (3) 8cdf20.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Flare (1) 910b12.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Oops! (2) 9869ee.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Five of Pentacles (1) 9d09f0.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Eucatastrophe (3) 9dcdd3.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Alter Fate (1) 9e4e11.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Yaotl (1) 9f9e58.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Dig Deep (2) a06013.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Jessica Hyde (1) a1c47b.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Cornered (2) a5fc16.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Will to Survive (3) ac7db0.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Lure (2) ad0934.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Devil''s Luck (1) ad6d9d.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Lantern (2) b09d6f.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Miss Doyle (1) b337ac.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Against All Odds (2) b633d0.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Try and Try Again (3) b8f774.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Stroke of Luck (2) bce471.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Aquinnah (3) bf6a7b.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Scrapper (3) c6c157.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Scavenging (2) cda2e6.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card On Your Own (3) ce1a7d.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Fire Extinguisher (1) dd0b79.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Gravedigger''s Shovel (2) e64769.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Newspaper (2) ea2337.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Expeditious Retreat (1) ea8324.yaml' -- !include 'Custom_Model_Bag Survivor f96589/Card Old Hunting Rifle (3) f69d7d.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: '' -DragSelectable: true -GMNotes: '' -GUID: f96589 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag Survivor f96589.ttslua' -LuaScriptState: '{"ml":{"002455":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30024600028992,"z":-75.0203552246094},"rot":{"x":0.0208088811486959,"y":269.998962402344,"z":0.0167707093060017}},"00c4cc":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29836189746857,"z":-61.2084503173828},"rot":{"x":0.0208093803375959,"y":269.997497558594,"z":0.0167702715843916}},"04d33d":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30699694156647,"z":-47.4087867736816},"rot":{"x":0.0208086632192135,"y":270.000030517578,"z":0.0167711246758699}},"08b398":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208114981651306,"y":269.98974609375,"z":0.0167670976370573}},"0b9f53":{"lock":false,"pos":{"x":58.0996475219727,"y":1.30614292621613,"z":-61.2709846496582},"rot":{"x":0.0208085775375366,"y":269.999694824219,"z":0.016771087422967}},"0c433b":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208086390048265,"y":270.000030517578,"z":0.0167713221162558}},"13ae70":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30103635787964,"z":-56.620002746582},"rot":{"x":0.0208114553242922,"y":269.989868164063,"z":0.0167674031108618}},"16fea1":{"lock":false,"pos":{"x":58.0996589660645,"y":1.30681622028351,"z":-58.9709777832031},"rot":{"x":0.0208087936043739,"y":269.999603271484,"z":0.0167708788067102}},"1c3b8f":{"lock":false,"pos":{"x":58.0996627807617,"y":1.3074893951416,"z":-56.6709785461426},"rot":{"x":0.0208072308450937,"y":270.004180908203,"z":0.016772685572505}},"1c8915":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30105495452881,"z":-52.008430480957},"rot":{"x":0.0208093486726284,"y":269.99755859375,"z":0.0167704038321972}},"234fae":{"lock":false,"pos":{"x":52.9462356567383,"y":1.2982269525528,"z":-81.9204711914063},"rot":{"x":0.0208087842911482,"y":269.998840332031,"z":0.0167707055807114}},"2a37f3":{"lock":false,"pos":{"x":40.2900466918945,"y":1.29834342002869,"z":-65.8198699951172},"rot":{"x":0.0208115689456463,"y":269.989624023438,"z":0.0167673863470554}},"2d9585":{"lock":false,"pos":{"x":52.944206237793,"y":1.30832493305206,"z":-47.420352935791},"rot":{"x":0.0208087731152773,"y":269.999206542969,"z":0.0167709179222584}},"2ebdf1":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29970848560333,"z":-56.6084442138672},"rot":{"x":0.0208093728870153,"y":269.99755859375,"z":0.0167700722813606}},"35bbe8":{"lock":false,"pos":{"x":40.2900466918945,"y":1.2976701259613,"z":-68.1198654174805},"rot":{"x":0.0208117719739676,"y":269.989562988281,"z":0.0167672466486692}},"36bc5b":{"lock":false,"pos":{"x":52.9282608032227,"y":1.2955287694931,"z":-91.1161575317383},"rot":{"x":0.0208086222410202,"y":269.999633789063,"z":0.0167709812521935}},"382580":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29566895961761,"z":-70.408317565918},"rot":{"x":0.0208088904619217,"y":270.000061035156,"z":0.0167716648429632}},"38374c":{"lock":false,"pos":{"x":36.6243362426758,"y":1.29432249069214,"z":-75.008415222168},"rot":{"x":0.0208087284117937,"y":269.999542236328,"z":0.0167710017412901}},"3ab577":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30226576328278,"z":-68.1202239990234},"rot":{"x":0.0208093635737896,"y":269.999176025391,"z":0.016770888119936}},"3bbc0b":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29499578475952,"z":-72.7084045410156},"rot":{"x":0.0208090525120497,"y":270.000030517578,"z":0.0167715959250927}},"48db58":{"lock":false,"pos":{"x":52.9442100524902,"y":1.30603182315826,"z":-58.9203453063965},"rot":{"x":0.0208088085055351,"y":269.999847412109,"z":0.016771923750639}},"4a5655":{"lock":false,"pos":{"x":36.6243324279785,"y":1.3017281293869,"z":-49.7084655761719},"rot":{"x":0.020809231325984,"y":269.997589111328,"z":0.0167702864855528}},"4d9a97":{"lock":false,"pos":{"x":58.0999031066895,"y":1.30883598327637,"z":-52.0709953308105},"rot":{"x":0.0208063889294863,"y":270.007598876953,"z":0.0167739652097225}},"5010c5":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30159246921539,"z":-70.4202270507813},"rot":{"x":0.0208089966326952,"y":269.999145507813,"z":0.01677081361413}},"50acc5":{"lock":false,"pos":{"x":52.9442405700684,"y":1.29687976837158,"z":-86.5202713012695},"rot":{"x":0.020808782428503,"y":269.999603271484,"z":0.0167708937078714}},"53d6d9":{"lock":false,"pos":{"x":58.0996551513672,"y":1.30681622028351,"z":-58.9709815979004},"rot":{"x":0.0208083521574736,"y":270.000030517578,"z":0.016770850867033}},"584914":{"lock":false,"pos":{"x":40.2900848388672,"y":1.2922842502594,"z":-86.5199127197266},"rot":{"x":0.0208076443523169,"y":270.002563476563,"z":0.0167721826583147}},"59f3e4":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208088699728251,"y":269.99951171875,"z":0.0167704820632935}},"5a1991":{"lock":false,"pos":{"x":52.9441108703613,"y":1.29755306243896,"z":-84.2202453613281},"rot":{"x":0.0208084620535374,"y":269.999542236328,"z":0.0167711246758699}},"5a2b49":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208083689212799,"y":270.000030517578,"z":0.0167709812521935}},"5b1550":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29968988895416,"z":-61.2200088500977},"rot":{"x":0.0208085905760527,"y":270.000030517578,"z":0.01677081361413}},"5d45c1":{"lock":false,"pos":{"x":52.9441947937012,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208091028034687,"y":269.999084472656,"z":0.0167713742703199}},"61d1e5":{"lock":false,"pos":{"x":52.9442024230957,"y":1.30293893814087,"z":-65.8202209472656},"rot":{"x":0.0208089202642441,"y":269.999328613281,"z":0.0167708918452263}},"630d65":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30372929573059,"z":-47.4200057983398},"rot":{"x":0.0208114627748728,"y":269.990051269531,"z":0.0167675577104092}},"673d14":{"lock":false,"pos":{"x":36.624340057373,"y":1.2956690788269,"z":-70.4083023071289},"rot":{"x":0.0208085179328918,"y":269.999603271484,"z":0.0167693328112364}},"6842aa":{"lock":false,"pos":{"x":52.944206237793,"y":1.30495870113373,"z":-58.920352935791},"rot":{"x":0.0208087619394064,"y":269.999450683594,"z":0.016770800575614}},"6a04c3":{"lock":false,"pos":{"x":49.2784957885742,"y":1.30565047264099,"z":-52.0087699890137},"rot":{"x":0.0208086185157299,"y":269.999603271484,"z":0.0167712103575468}},"6a8a9f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30632376670837,"z":-49.708812713623},"rot":{"x":0.0208086185157299,"y":269.999603271484,"z":0.0167710483074188}},"719a45":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29432249069214,"z":-75.008430480957},"rot":{"x":0.0208091922104359,"y":270.000030517578,"z":0.0167716238647699}},"71a760":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30428540706635,"z":-61.2203559875488},"rot":{"x":0.0208085924386978,"y":270.000030517578,"z":0.016771337017417}},"76b07c":{"lock":false,"pos":{"x":52.944221496582,"y":1.30563187599182,"z":-56.6203422546387},"rot":{"x":0.0208087153732777,"y":269.999206542969,"z":0.0167710334062576}},"7fe153":{"lock":false,"pos":{"x":58.0992050170898,"y":1.31019079685211,"z":-47.4415969848633},"rot":{"x":0.0208059567958117,"y":270.0087890625,"z":0.0167742446064949}},"812c4f":{"lock":false,"pos":{"x":49.2784881591797,"y":1.30699694156647,"z":-47.4087867736816},"rot":{"x":0.0208085775375366,"y":269.999603271484,"z":0.0167708434164524}},"8cdf20":{"lock":false,"pos":{"x":36.6243438720703,"y":1.29701554775238,"z":-65.8082885742188},"rot":{"x":0.0208093505352736,"y":269.997497558594,"z":0.0167701076716185}},"910b12":{"lock":false,"pos":{"x":52.9442367553711,"y":1.3063051700592,"z":-54.3201904296875},"rot":{"x":0.0208088289946318,"y":269.998748779297,"z":0.0167707297950983}},"9869ee":{"lock":false,"pos":{"x":52.9442024230957,"y":1.29889953136444,"z":-79.620246887207},"rot":{"x":0.0208087209612131,"y":269.998901367188,"z":0.0167707242071629}},"9d09f0":{"lock":false,"pos":{"x":40.2900543212891,"y":1.30170953273773,"z":-54.3199996948242},"rot":{"x":0.0208114720880985,"y":269.989898681641,"z":0.016767518594861}},"9dcdd3":{"lock":false,"pos":{"x":52.9284210205078,"y":1.29620385169983,"z":-88.8097152709961},"rot":{"x":0.0208088606595993,"y":269.999633789063,"z":0.0167709086090326}},"9e4e11":{"lock":false,"pos":{"x":52.944206237793,"y":1.30765163898468,"z":-49.7203407287598},"rot":{"x":0.0208087712526321,"y":269.999176025391,"z":0.0167710371315479}},"9f9e58":{"lock":false,"pos":{"x":40.2900543212891,"y":1.29699695110321,"z":-70.4198837280273},"rot":{"x":0.0208116453140974,"y":269.989562988281,"z":0.016767306253314}},"a06013":{"lock":false,"pos":{"x":40.2893486022949,"y":1.29497182369232,"z":-77.3372268676758},"rot":{"x":0.0208078660070896,"y":270.002807617188,"z":0.016772186383605}},"a177db":{"lock":false,"pos":{"x":36.6243476867676,"y":1.29499578475952,"z":-72.708381652832},"rot":{"x":0.0208084397017956,"y":269.999450683594,"z":0.0167704783380032}},"a1c47b":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30036306381226,"z":-58.9200057983398},"rot":{"x":0.0208114851266146,"y":269.989807128906,"z":0.0167675018310547}},"a4e44a":{"lock":false,"pos":{"x":40.2900352478027,"y":1.29632365703583,"z":-72.7199935913086},"rot":{"x":0.0208078436553478,"y":270.0029296875,"z":0.0167722515761852}},"a5fc16":{"lock":false,"pos":{"x":40.2900390625,"y":1.29565036296844,"z":-75.0200042724609},"rot":{"x":0.0208076853305101,"y":270.002868652344,"z":0.0167722962796688}},"ac7db0":{"lock":false,"pos":{"x":49.278678894043,"y":1.30497074127197,"z":-54.3310775756836},"rot":{"x":0.0208086855709553,"y":269.999603271484,"z":0.0167709607630968}},"ad0934":{"lock":false,"pos":{"x":52.9441986083984,"y":1.29957270622253,"z":-77.3202590942383},"rot":{"x":0.0208087936043739,"y":269.998901367188,"z":0.0167707484215498}},"ad6d9d":{"lock":false,"pos":{"x":52.944206237793,"y":1.3069783449173,"z":-52.0203437805176},"rot":{"x":0.0208088848739862,"y":269.999206542969,"z":0.0167709551751614}},"b09d6f":{"lock":false,"pos":{"x":40.2920799255371,"y":1.29363143444061,"z":-81.9201278686523},"rot":{"x":0.0208077449351549,"y":270.002716064453,"z":0.0167723651975393}},"b337ac":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29901659488678,"z":-63.5200119018555},"rot":{"x":0.0208115074783564,"y":269.989685058594,"z":0.0167674254626036}},"b633d0":{"lock":false,"pos":{"x":52.9441986083984,"y":1.30361223220825,"z":-63.5203590393066},"rot":{"x":0.0208086837083101,"y":269.999328613281,"z":0.0167709663510323}},"b8f774":{"lock":false,"pos":{"x":36.6243438720703,"y":1.296342253685,"z":-68.1082916259766},"rot":{"x":0.0208092667162418,"y":269.997497558594,"z":0.0167702343314886}},"bce471":{"lock":false,"pos":{"x":58.0996742248535,"y":1.30816268920898,"z":-54.3709678649902},"rot":{"x":0.0208086129277945,"y":269.999694824219,"z":0.0167710967361927}},"bf6a7b":{"lock":false,"pos":{"x":40.2741050720215,"y":1.29093313217163,"z":-91.1158065795898},"rot":{"x":0.0208093225955963,"y":269.99755859375,"z":0.0167705360800028}},"c490a4":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208091475069523,"y":269.99755859375,"z":0.0167699493467808}},"c6c157":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29768872261047,"z":-63.5084533691406},"rot":{"x":0.0208094641566277,"y":269.99755859375,"z":0.0167702585458755}},"cda2e6":{"lock":false,"pos":{"x":40.2742652893066,"y":1.29160833358765,"z":-88.8093566894531},"rot":{"x":0.0208077430725098,"y":270.00244140625,"z":0.0167720932513475}},"ce1a7d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.29903519153595,"z":-58.908447265625},"rot":{"x":0.0208091735839844,"y":269.99755859375,"z":0.016770351678133}},"d88560":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30240142345428,"z":-47.4084396362305},"rot":{"x":0.0208084546029568,"y":270.000030517578,"z":0.0167709738016129}},"dd0b79":{"lock":false,"pos":{"x":40.2900505065918,"y":1.30238282680511,"z":-52.0199966430664},"rot":{"x":0.0208115391433239,"y":269.989929199219,"z":0.0167674757540226}},"e64769":{"lock":false,"pos":{"x":40.2900428771973,"y":1.29430389404297,"z":-79.6199111938477},"rot":{"x":0.0208078715950251,"y":270.002807617188,"z":0.0167722851037979}},"ea2337":{"lock":false,"pos":{"x":40.2899703979492,"y":1.29295742511749,"z":-84.2199630737305},"rot":{"x":0.0208083223551512,"y":270.000732421875,"z":0.0167713835835457}},"ea8324":{"lock":false,"pos":{"x":58.0999031066895,"y":1.30950927734375,"z":-49.77099609375},"rot":{"x":0.0208031665533781,"y":270.018493652344,"z":0.0167778674513102}},"ecc3b9":{"lock":false,"pos":{"x":40.2900505065918,"y":1.3030561208725,"z":-49.7199935913086},"rot":{"x":0.0208113957196474,"y":269.989990234375,"z":0.0167671646922827}},"f69d7d":{"lock":false,"pos":{"x":36.6243324279785,"y":1.30038166046143,"z":-54.3084411621094},"rot":{"x":0.0208092406392097,"y":269.99755859375,"z":0.0167702715843916}},"f8a977":{"lock":false,"pos":{"x":40.2900505065918,"y":1.29632365703583,"z":-72.719970703125},"rot":{"x":0.0208078641444445,"y":270.000061035156,"z":0.0167710185050964}},"f8e50b":{"lock":false,"pos":{"x":44.2288818359375,"y":1.29546678066254,"z":-84.2006301879883},"rot":{"x":0.0208089891821146,"y":269.999816894531,"z":0.0167717114090919}},"fd393b":{"lock":false,"pos":{"x":52.9441909790039,"y":1.30091917514801,"z":-72.720344543457},"rot":{"x":0.0208084397017956,"y":270.000030517578,"z":0.0167712587863207}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Survivor -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 66.3 - posY: 1.66 - posZ: -85.51 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.yaml index 8c526b90e..87d1feb99 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.yaml @@ -19,25 +19,25 @@ ColorDiffuse: 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/Card Scenario 04c6b1.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 Skai River 247820.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/Custom_Model_Bag Set-aside + 65c10b.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/Deck Agenda Deck 7c8ea4.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 Dylath-Leen 972cb1.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 Ulthar d74877.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 Virgil Gray e93f00.yaml' CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Dylath-Leen 972cb1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Dylath-Leen 972cb1.yaml index cc44ab77d..a00121ede 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Dylath-Leen 972cb1.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Dylath-Leen 972cb1.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.22 - posY: 1.69 + posY: 1.63 posZ: -7.7 rotX: 359.92 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 02da4e.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 02da4e.yaml index 35b5ea096..373798abc 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 02da4e.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 02da4e.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -30.22 - posY: 1.7 + posY: 1.64 posZ: 2.43 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 83569f.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 83569f.yaml index f8f86ed34..49ef692ed 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 83569f.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 83569f.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -12.33 - posY: 1.67 + posY: 1.62 posZ: 11.22 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Scenario 04c6b1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Scenario 04c6b1.yaml index 296fdacf1..2af41c276 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Scenario 04c6b1.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Scenario 04c6b1.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -3.96 - posY: 1.66 + posY: 1.6 posZ: -10.44 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Skai River 247820.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Skai River 247820.yaml index f1f3fced3..c95200144 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Skai River 247820.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Skai River 247820.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -30.22 - posY: 1.7 + posY: 1.64 posZ: -0.03 rotX: 359.92 rotY: 269.98 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Ulthar d74877.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Ulthar d74877.yaml index e31c12c7d..39b5d9445 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Ulthar d74877.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Ulthar d74877.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.69 + posY: 1.63 posZ: -0.03 rotX: 359.92 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Virgil Gray e93f00.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Virgil Gray e93f00.yaml index 6aca9b919..ec2f6302a 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Virgil Gray e93f00.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Virgil Gray e93f00.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -12.26 - posY: 1.67 + posY: 1.61 posZ: 8.8 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Act Deck d87cb2.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Act Deck d87cb2.yaml index 0a9174f0f..e2021201b 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Act Deck d87cb2.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Act Deck d87cb2.yaml @@ -265,7 +265,7 @@ Sticky: true Tooltip: true Transform: posX: -2.69 - posY: 1.65 + posY: 1.63 posZ: -5.05 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Agenda Deck 7c8ea4.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Agenda Deck 7c8ea4.yaml index 6187e9af9..8bcacdf3d 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Agenda Deck 7c8ea4.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Agenda Deck 7c8ea4.yaml @@ -127,7 +127,7 @@ Sticky: true Tooltip: true Transform: posX: -2.72 - posY: 1.66 + posY: 1.62 posZ: 0.37 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Encounter Deck 269d43.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Encounter Deck 269d43.yaml index 397409277..b59f963aa 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Encounter Deck 269d43.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Encounter Deck 269d43.yaml @@ -1147,7 +1147,7 @@ Sticky: true Tooltip: true Transform: posX: -3.93 - posY: 1.74 + posY: 1.73 posZ: 5.76 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 4-A Where the Gods Dwell 185096.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 4-A Where the Gods Dwell 185096.yaml index 9c1445ce8..1542e8f16 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 4-A Where the Gods Dwell 185096.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Model_Bag 4-A Where the Gods Dwell 185096.yaml @@ -77,11 +77,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 12.26 + posX: 12.25 posY: 1.46 - posZ: -20.02 + posZ: -20.01 rotX: 359.92 - rotY: 269.96 + rotY: 270.0 rotZ: 0.02 scaleX: 2.21 scaleY: 0.46 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Tile The Dream-Quest Campaign Log f40183.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Tile The Dream-Quest Campaign Log f40183.yaml index cf1ae21b4..2661478c1 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Tile The Dream-Quest Campaign Log f40183.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a/Custom_Tile The Dream-Quest Campaign Log f40183.yaml @@ -424,9 +424,9 @@ Sticky: true Tooltip: true Transform: posX: -1.22 - posY: 1.48 + posY: 1.54 posZ: -26.87 - rotX: 359.92 + rotX: 359.35 rotY: 270.07 rotZ: 0.02 scaleX: 6.5 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.ttslua index 54d591927..5aa27be92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.ttslua +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.ttslua @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Administration Building e7dfe0.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Administration Building e7dfe0.yaml index 90e89f1c5..8132e54ff 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Administration Building e7dfe0.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Administration Building e7dfe0.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.63 + posY: 1.68 posZ: -7.7 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Humanities Building c33d1f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Humanities Building c33d1f.yaml index 63168a70e..57e93244d 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Humanities Building c33d1f.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Humanities Building c33d1f.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.63 + posY: 1.69 posZ: 7.57 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Miskatonic Quad 4541f6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Miskatonic Quad 4541f6.yaml index 2aa9a122b..bfb98df80 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Miskatonic Quad 4541f6.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Miskatonic Quad 4541f6.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.62 + posY: 1.68 posZ: -0.03 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Orne Library db7433.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Orne Library db7433.yaml index 559e171a8..de1b03b0c 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Orne Library db7433.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Orne Library db7433.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.62 + posY: 1.68 posZ: 7.57 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Scenario 70df0b.yaml index 2fa1966c5..9126f2ad7 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Scenario 70df0b.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Scenario 70df0b.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -3.96 - posY: 1.6 + posY: 1.66 posZ: -10.44 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Science Building 45f91d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Science Building 45f91d.yaml index 475eb2454..74b1d2fa3 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Science Building 45f91d.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Science Building 45f91d.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -17.13 - posY: 1.62 + posY: 1.67 posZ: -7.69 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Student Union 2503af.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Student Union 2503af.yaml index 4975589fd..569cf5d9e 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Student Union 2503af.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Student Union 2503af.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.63 + posY: 1.69 posZ: -0.03 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Act Deck 72b0c4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Act Deck 72b0c4.yaml index 7a9b6ff5f..11e7838a9 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Act Deck 72b0c4.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Act Deck 72b0c4.yaml @@ -173,7 +173,7 @@ Sticky: true Tooltip: true Transform: posX: -2.69 - posY: 1.62 + posY: 1.66 posZ: -5.05 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Agenda Deck b90f89.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Agenda Deck b90f89.yaml index 3c6fb8ed1..95d54a5f5 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Agenda Deck b90f89.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Agenda Deck b90f89.yaml @@ -173,7 +173,7 @@ Sticky: true Tooltip: true Transform: posX: -2.72 - posY: 1.62 + posY: 1.66 posZ: 0.37 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Encounter Deck 1dc5c6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Encounter Deck 1dc5c6.yaml index dd2e2233a..574a31204 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Encounter Deck 1dc5c6.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Encounter Deck 1dc5c6.yaml @@ -1515,7 +1515,7 @@ Sticky: true Tooltip: true Transform: posX: -3.93 - posY: 1.76 + posY: 1.78 posZ: 5.76 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1b The House Always Wins e3aa5c.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1b The House Always Wins e3aa5c.ttslua index 54d591927..5aa27be92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1b The House Always Wins e3aa5c.ttslua +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 1b The House Always Wins e3aa5c.ttslua @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.ttslua index 54d591927..5aa27be92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.ttslua +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.ttslua @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office c3915f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office c3915f.yaml index ae4c3bfa1..c088f46a1 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office c3915f.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office c3915f.yaml @@ -34,9 +34,9 @@ Sticky: true Tooltip: true Transform: posX: -21.6 - posY: 1.8 + posY: 1.65 posZ: 7.54 - rotX: 355.88 + rotX: 359.17 rotY: 269.98 rotZ: 0.02 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office d2eb25.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office d2eb25.yaml index 5997f4d42..ca99c4e4e 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office d2eb25.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office d2eb25.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.69 + posY: 1.63 posZ: 7.57 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Exhibit Hall 0b0c58.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Exhibit Hall 0b0c58.yaml index dd0c68b9b..d03595382 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Exhibit Hall 0b0c58.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Exhibit Hall 0b0c58.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -5.78 - posY: 1.67 + posY: 1.61 posZ: 15.69 rotX: 359.92 rotY: 270.01 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Entrance cf40fc.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Entrance cf40fc.yaml index a4f7951e6..082392f0d 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Entrance cf40fc.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Entrance cf40fc.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.68 + posY: 1.62 posZ: -0.03 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Halls 633816.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Halls 633816.yaml index c7b71952d..a9bb3a401 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Halls 633816.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Halls 633816.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.69 + posY: 1.63 posZ: -0.03 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Scenario 70df0b.yaml index cba720dd0..afcdf1cdb 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Scenario 70df0b.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Scenario 70df0b.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -3.96 - posY: 1.66 + posY: 1.6 posZ: -10.44 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office 2eb7a1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office 2eb7a1.yaml index 072cf9658..2f452bdf8 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office 2eb7a1.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office 2eb7a1.yaml @@ -33,10 +33,10 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -21.49 - posY: 1.79 + posX: -21.5 + posY: 1.64 posZ: -7.74 - rotX: 356.07 + rotX: 359.21 rotY: 270.0 rotZ: 0.02 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office fcb3e4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office fcb3e4.yaml index affde7f4a..68c5e64b7 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office fcb3e4.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office fcb3e4.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.68 + posY: 1.63 posZ: -7.7 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Act Deck 6571a3.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Act Deck 6571a3.yaml index 8c48219a3..27926b63e 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Act Deck 6571a3.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Act Deck 6571a3.yaml @@ -219,7 +219,7 @@ Sticky: true Tooltip: true Transform: posX: -2.69 - posY: 1.65 + posY: 1.62 posZ: -5.05 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Agenda Deck dbdfa1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Agenda Deck dbdfa1.yaml index e0c6d99fd..2548d8d81 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Agenda Deck dbdfa1.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Agenda Deck dbdfa1.yaml @@ -173,7 +173,7 @@ Sticky: true Tooltip: true Transform: posX: -2.72 - posY: 1.66 + posY: 1.62 posZ: 0.37 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Encounter Deck 62c028.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Encounter Deck 62c028.yaml index 676edfbe4..23c3a2bb5 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Encounter Deck 62c028.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Encounter Deck 62c028.yaml @@ -1607,7 +1607,7 @@ Sticky: true Tooltip: true Transform: posX: -3.93 - posY: 1.79 + posY: 1.77 posZ: 5.76 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Non-Restricted Exhibit Halls b24a2a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Non-Restricted Exhibit Halls b24a2a.yaml index 7007e5256..3a1902111 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Non-Restricted Exhibit Halls b24a2a.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Non-Restricted Exhibit Halls b24a2a.yaml @@ -265,7 +265,7 @@ Sticky: true Tooltip: true Transform: posX: -2.5 - posY: 1.66 + posY: 1.63 posZ: 15.69 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449.ttslua index 54d591927..5aa27be92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449.ttslua +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449.ttslua @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449.yaml index 47542ceef..7fb4a3ca0 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449.yaml @@ -19,25 +19,25 @@ ColorDiffuse: 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/Deck Engine Cars 52dd93.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.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/Card Scenario 70df0b.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/Custom_Tile ae73b7.yaml' -- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.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/Deck Agenda Deck d30e98.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/Deck Encounter Deck + eb094d.yaml' +- !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/Bag New Chaos Token + ff051b.yaml' CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b.yaml index 1f54d81c1..d61b2346b 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.07843705 - g: 0.07843705 - r: 0.302167743 + b: 0.07843702 + g: 0.07843702 + r: 0.3021677 ContainedObjects: - !include 'Bag New Chaos Token ff051b/Custom_Tile a2c8c3.yaml' - !include 'Bag New Chaos Token ff051b/Custom_Tile 4fa839.yaml' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Card Scenario 70df0b.yaml index 8da79faa4..fb6d96aec 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Card Scenario 70df0b.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Card Scenario 70df0b.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -3.96 - posY: 1.66 + posY: 1.6 posZ: -10.44 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Act Deck 9f9330.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Act Deck 9f9330.yaml index 351d7a7f8..66b07b4bc 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Act Deck 9f9330.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Act Deck 9f9330.yaml @@ -127,7 +127,7 @@ Sticky: true Tooltip: true Transform: posX: -2.69 - posY: 1.66 + posY: 1.61 posZ: -5.05 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Agenda Deck d30e98.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Agenda Deck d30e98.yaml index a8ad00d49..9599dc557 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Agenda Deck d30e98.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Agenda Deck d30e98.yaml @@ -265,7 +265,7 @@ Sticky: true Tooltip: true Transform: posX: -2.72 - posY: 1.66 + posY: 1.63 posZ: 0.37 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Encounter Deck eb094d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Encounter Deck eb094d.yaml index aeb762b12..0d2eb0a92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Encounter Deck eb094d.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Encounter Deck eb094d.yaml @@ -1661,7 +1661,7 @@ Sticky: true Tooltip: true Transform: posX: -3.93 - posY: 1.8 + posY: 1.78 posZ: 5.76 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Engine Cars 52dd93.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Engine Cars 52dd93.yaml index 796f25f1a..fe90d2f8e 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Engine Cars 52dd93.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Engine Cars 52dd93.yaml @@ -173,7 +173,7 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.67 + posY: 1.64 posZ: -15.28 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.yaml index 75ab24a2b..a84c43044 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.yaml @@ -403,7 +403,7 @@ Sticky: true Tooltip: true Transform: posX: -30.22 - posY: 1.68 + posY: 1.69 posZ: 11.46 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 4 Blood on the Altar 30684d.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 4 Blood on the Altar 30684d.ttslua index 54d591927..5aa27be92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 4 Blood on the Altar 30684d.ttslua +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 4 Blood on the Altar 30684d.ttslua @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.ttslua index 54d591927..5aa27be92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.ttslua +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.ttslua @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.yaml index 16f534164..d1ef1b0d7 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.yaml @@ -19,48 +19,49 @@ ColorDiffuse: 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/Custom_Tile df8f01.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/Deck Encounter Deck + 2ee2b1.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.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 Whateley Ruins + 42e1b7.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/Deck Agenda Deck 584b1a.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/Custom_Tile 6c7a0b.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 + 7310f8.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7b8d65.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7ec61f.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 8dfbb1.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/Card Scenario aa50e4.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 Whateley Ruins + b1e332.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 Blasted Heath + cda035.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 Cold Spring Glen e58475.yaml' -- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 6c7a0b.yaml' +- !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/Card Devil''s Hop Yard + f7dd31.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -89,7 +90,7 @@ 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}}}}' +LuaScriptState: '{"ml":{"04861e":{"lock":false,"pos":{"x":-22.107400894165,"y":1.6524178981781,"z":-0.0799332037568092},"rot":{"x":358.926361083984,"y":269.995971679688,"z":0.0167512055486441}},"05b0dd":{"lock":false,"pos":{"x":-23.6763114929199,"y":1.62805259227753,"z":-0.0300009492784739},"rot":{"x":359.920288085938,"y":270.000305175781,"z":0.0158511642366648}},"2ee2b1":{"lock":false,"pos":{"x":-3.92741465568542,"y":1.76844835281372,"z":5.75720405578613},"rot":{"x":359.919738769531,"y":270,"z":180.016815185547}},"2ee4bd":{"lock":false,"pos":{"x":-2.68842387199402,"y":1.61430239677429,"z":-5.04849529266357},"rot":{"x":0.0168353617191315,"y":180.000106811523,"z":0.0802565291523933}},"393c71":{"lock":false,"pos":{"x":-3.96210050582886,"y":1.58277440071106,"z":-14.4190044403076},"rot":{"x":359.919738769531,"y":270.005798339844,"z":0.0168297085911036}},"42e1b7":{"lock":false,"pos":{"x":-23.6764812469482,"y":1.62581336498261,"z":-7.70003366470337},"rot":{"x":359.919830322266,"y":269.995483398438,"z":0.0168131962418556}},"57d9e9":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.61560487747192,"z":3.8600001335144},"rot":{"x":0.0168614741414785,"y":179.984069824219,"z":0.0799363255500793}},"584b1a":{"lock":false,"pos":{"x":-2.72460699081421,"y":1.62076032161713,"z":0.373301774263382},"rot":{"x":0.0168354585766792,"y":180.000091552734,"z":0.0802561566233635}},"6a83c1":{"lock":false,"pos":{"x":1.6961008310318,"y":1.55831742286682,"z":14.278902053833},"rot":{"x":359.955139160156,"y":224.991195678711,"z":0.0686772093176842}},"6c7a0b":{"lock":false,"pos":{"x":-26.7378005981445,"y":1.61766266822815,"z":-3.6631007194519},"rot":{"x":0.0683988556265831,"y":135.01188659668,"z":0.0445989556610584}},"7234af":{"lock":false,"pos":{"x":-17.1205978393555,"y":1.60420513153076,"z":-3.82279968261719},"rot":{"x":0.0168614238500595,"y":179.98405456543,"z":0.0799348428845406}},"7310f8":{"lock":false,"pos":{"x":-17.1200180053711,"y":1.61666798591614,"z":-7.69979810714722},"rot":{"x":359.920135498047,"y":270.002777099609,"z":0.0167048703879118}},"7b8d65":{"lock":false,"pos":{"x":-22.547700881958,"y":1.61185455322266,"z":-3.54469966888428},"rot":{"x":0.0168614946305752,"y":179.984024047852,"z":0.0799320861697197}},"7ec61f":{"lock":false,"pos":{"x":-20.3638973236084,"y":1.60756075382233,"z":-7.79507303237915},"rot":{"x":359.920715332031,"y":269.892608642578,"z":0.0185056235641241}},"8dfbb1":{"lock":false,"pos":{"x":-28.0506992340088,"y":1.62181949615479,"z":4.25140047073364},"rot":{"x":0.0445704981684685,"y":44.984790802002,"z":359.931610107422}},"995fe7":{"lock":false,"pos":{"x":-17.1199150085449,"y":1.61892199516296,"z":-0.029897041618824},"rot":{"x":359.920135498047,"y":270.003723144531,"z":0.0167006365954876}},"a706b9":{"lock":false,"pos":{"x":-18.4929981231689,"y":1.60845828056335,"z":4.13670015335083},"rot":{"x":0.0684094354510307,"y":135.000183105469,"z":0.0445852093398571}},"aa50e4":{"lock":false,"pos":{"x":-3.9560170173645,"y":1.59753942489624,"z":-10.441198348999},"rot":{"x":359.919738769531,"y":270.000061035156,"z":0.0168379917740822}},"ac4427":{"lock":false,"pos":{"x":-23.6764163970947,"y":1.63029801845551,"z":7.5701003074646},"rot":{"x":359.920135498047,"y":270.002471923828,"z":0.0166969802230597}},"b1e332":{"lock":false,"pos":{"x":-22.1462001800537,"y":1.69906532764435,"z":-7.67574024200439},"rot":{"x":1.72219955921173,"y":269.975158691406,"z":0.0176132451742888}},"c50379":{"lock":false,"pos":{"x":-30.2242736816406,"y":1.63719809055328,"z":-0.0300305373966694},"rot":{"x":359.919891357422,"y":270.004669189453,"z":0.0168875250965357}},"cda035":{"lock":false,"pos":{"x":-15.6361131668091,"y":1.66888380050659,"z":0.00990118179470301},"rot":{"x":0.0790486559271812,"y":269.997039794922,"z":359.983184814453}},"cf4a62":{"lock":false,"pos":{"x":-22.2064914703369,"y":1.6802544593811,"z":7.57819986343384},"rot":{"x":359.919250488281,"y":270.001159667969,"z":0.0165986120700836}},"df8f01":{"lock":false,"pos":{"x":-26.7663078308105,"y":1.61875307559967,"z":-0.081867627799511},"rot":{"x":359.920593261719,"y":269.976623535156,"z":0.0192893091589212}},"e58475":{"lock":false,"pos":{"x":-28.6475563049316,"y":1.70839071273804,"z":-0.0576344653964043},"rot":{"x":1.64827835559845,"y":270.001373291016,"z":0.0170944444835186}},"f37775":{"lock":false,"pos":{"x":-3.19290995597839,"y":1.63545417785645,"z":15.3806037902832},"rot":{"x":359.919738769531,"y":269.99951171875,"z":0.0168406069278717}},"f7dd31":{"lock":false,"pos":{"x":-15.6663150787354,"y":1.666632771492,"z":-7.68119812011719},"rot":{"x":0.079126313328743,"y":269.994262695313,"z":359.982971191406}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 @@ -100,9 +101,9 @@ Sticky: true Tooltip: true Transform: posX: 12.25 - posY: 1.54 + posY: 1.46 posZ: -12.67 - rotX: 0.94 + rotX: 359.92 rotY: 270.01 rotZ: 0.02 scaleX: 2.21 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath 995fe7.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath 995fe7.yaml index d7f07041a..b96ed4f0f 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath 995fe7.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath 995fe7.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.68 + posY: 1.62 posZ: -0.03 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath cda035.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath cda035.yaml index 473eb4648..dca271168 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath cda035.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath cda035.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -15.64 - posY: 1.73 + posY: 1.67 posZ: 0.01 - rotX: 0.09 + rotX: 0.08 rotY: 270.0 - rotZ: 359.83 + rotZ: 359.98 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen c50379.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen c50379.yaml index 205f63a51..b7a08bc81 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen c50379.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen c50379.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -30.22 - posY: 1.7 + posY: 1.64 posZ: -0.03 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen e58475.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen e58475.yaml index 9aee90cad..00d2c5a15 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen e58475.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen e58475.yaml @@ -33,10 +33,10 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -28.64 - posY: 1.84 + posX: -28.65 + posY: 1.71 posZ: -0.06 - rotX: 354.77 + rotX: 1.65 rotY: 270.0 rotZ: 0.02 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard 7310f8.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard 7310f8.yaml index 5e992de28..6046250a9 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard 7310f8.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard 7310f8.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.67 + posY: 1.62 posZ: -7.7 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard f7dd31.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard f7dd31.yaml index d03a974ae..334796610 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard f7dd31.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard f7dd31.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -15.67 - posY: 1.72 + posY: 1.67 posZ: -7.68 rotX: 0.08 rotY: 269.99 - rotZ: 359.97 + rotZ: 359.98 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village ac4427.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village ac4427.yaml index cea00ac5f..a735bcacb 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village ac4427.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village ac4427.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.69 + posY: 1.63 posZ: 7.57 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village cf4a62.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village cf4a62.yaml index cde64156e..94abe9fa7 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village cf4a62.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village cf4a62.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -22.21 - posY: 1.74 + posY: 1.68 posZ: 7.58 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Scenario aa50e4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Scenario aa50e4.yaml index 23524677b..478d97a12 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Scenario aa50e4.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Scenario aa50e4.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -3.96 - posY: 1.66 + posY: 1.6 posZ: -10.44 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 04861e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 04861e.yaml index f0b4b06c9..5696c5e84 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 04861e.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 04861e.yaml @@ -33,10 +33,10 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -22.1 - posY: 1.83 + posX: -22.11 + posY: 1.65 posZ: -0.08 - rotX: 354.6 + rotX: 358.95 rotY: 270.0 rotZ: 0.01 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 05b0dd.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 05b0dd.yaml index ede533333..e0e0c5124 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 05b0dd.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 05b0dd.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.69 + posY: 1.63 posZ: -0.03 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins 42e1b7.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins 42e1b7.yaml index e45a3a6e4..8dcb458ad 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins 42e1b7.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins 42e1b7.yaml @@ -34,10 +34,10 @@ Sticky: true Tooltip: true Transform: posX: -23.68 - posY: 1.68 + posY: 1.63 posZ: -7.7 rotX: 359.92 - rotY: 269.99 + rotY: 270.0 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins b1e332.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins b1e332.yaml index 2877cc0c7..e4fcc22c7 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins b1e332.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins b1e332.yaml @@ -34,10 +34,10 @@ Sticky: true Tooltip: true Transform: posX: -22.15 - posY: 1.83 + posY: 1.7 posZ: -7.68 - rotX: 359.89 - rotY: 269.97 + rotX: 1.72 + rotY: 269.98 rotZ: 0.02 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile df8f01.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile df8f01.yaml new file mode 100644 index 000000000..574dc188f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile df8f01.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: df8f01 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -26.77 + posY: 1.62 + posZ: -0.08 + rotX: 359.92 + rotY: 269.98 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.yaml index 4cff261ae..1acfdf089 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.yaml @@ -127,7 +127,7 @@ Sticky: true Tooltip: true Transform: posX: -2.69 - posY: 1.66 + posY: 1.61 posZ: -5.05 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Agenda Deck 584b1a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Agenda Deck 584b1a.yaml index 9853e38a7..87ee007f3 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Agenda Deck 584b1a.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Agenda Deck 584b1a.yaml @@ -173,7 +173,7 @@ Sticky: true Tooltip: true Transform: posX: -2.72 - posY: 1.66 + posY: 1.62 posZ: 0.37 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Broods of Yog-Sothoth f37775.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Broods of Yog-Sothoth f37775.yaml index e951fb30a..bb7372d29 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Broods of Yog-Sothoth f37775.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Broods of Yog-Sothoth f37775.yaml @@ -265,7 +265,7 @@ Sticky: true Tooltip: true Transform: posX: -3.19 - posY: 1.66 + posY: 1.64 posZ: 15.38 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Encounter Deck 2ee2b1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Encounter Deck 2ee2b1.yaml index d045a4c53..768eea165 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Encounter Deck 2ee2b1.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Encounter Deck 2ee2b1.yaml @@ -1569,7 +1569,7 @@ Sticky: true Tooltip: true Transform: posX: -3.93 - posY: 1.79 + posY: 1.77 posZ: 5.76 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 6 Where Doom Awaits 022ddf.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 6 Where Doom Awaits 022ddf.ttslua index 54d591927..5aa27be92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 6 Where Doom Awaits 022ddf.ttslua +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 6 Where Doom Awaits 022ddf.ttslua @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 6 Where Doom Awaits 022ddf.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 6 Where Doom Awaits 022ddf.yaml index a0fb94804..96392ca7a 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 6 Where Doom Awaits 022ddf.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 6 Where Doom Awaits 022ddf.yaml @@ -76,9 +76,9 @@ Sticky: true Tooltip: true Transform: posX: 12.25 - posY: 1.54 + posY: 1.46 posZ: -21.31 - rotX: 1.03 + rotX: 359.92 rotY: 270.01 rotZ: 0.02 scaleX: 2.21 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060.ttslua index 54d591927..5aa27be92 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060.ttslua +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060.ttslua @@ -1,10 +1,56 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + function updateSave() local data_to_save = {["ml"]=memoryList} saved_data = JSON.encode(data_to_save) self.script_state = saved_data end +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + function onload(saved_data) + fresh = true if saved_data ~= "" then local loaded_data = JSON.decode(saved_data) --Set up information off of loaded_data @@ -14,9 +60,13 @@ function onload(saved_data) memoryList = {} end + moveList = {} + moveGuid = nil + if next(memoryList) == nil then createSetupButton() else + fresh = false createMemoryActionButtons() end end @@ -29,28 +79,61 @@ end 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} + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + --Triggered by setup button, function buttonClick_setup() memoryListBackup = duplicateTable(memoryList) memoryList = {} self.clearButtons() - createButtonsOnAllObjects() - createSetupActionButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() end --Creates selection buttons on objects -function createButtonsOnAllObjects() +function createButtonsOnAllObjects(move) local howManyButtons = 0 - for _, obj in ipairs(getAllObjects()) do + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do if obj ~= self then local dummyIndex = howManyButtons --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1* 1/self.getScale().x + globalScaleFactor = 1 * 1/self.getScale().x --Super sweet math to set button positions local selfPos = self.getPosition() local objPos = obj.getPosition() @@ -64,12 +147,17 @@ function createButtonsOnAllObjects() rot.y = -rot.y + 180 --Create function local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj) end + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end self.setVar(funcName, func) self.createButton({ click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=400, width=400, - color={0.75,0.25,0.25,0.6}, + position=objPos, rotation=rot, height=500, width=500, + color=color, }) howManyButtons = howManyButtons + 1 end @@ -77,21 +165,44 @@ function createButtonsOnAllObjects() end --Creates submit and cancel buttons -function createSetupActionButtons() +function createSetupActionButtons(move) 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} + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + self.createButton({ label="Submit", click_function="buttonClick_submit", function_owner=self, - position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + self.createButton({ label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} }) end @@ -100,23 +211,43 @@ end --Checks or unchecks buttons -function buttonClick_selection(index, obj) +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} local color = {0,1,0,0.6} - if memoryList[obj.getGUID()] == nil then + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then self.editButton({index=index, color=color}) --Adding pos/rot to memory table local pos, rot = obj.getPosition(), obj.getRotation() --I need to add it like this or it won't save due to indexing issue - memoryList[obj.getGUID()] = { + theList[obj.getGUID()] = { pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, lock=obj.getLock() } obj.highlightOn({0,1,0}) else - color = {0.75,0.25,0.25,0.6} + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end self.editButton({index=index, color=color}) - memoryList[obj.getGUID()] = nil + theList[obj.getGUID()] = nil obj.highlightOff() end end @@ -124,6 +255,7 @@ end --Cancels selection process function buttonClick_cancel() memoryList = memoryListBackup + moveList = {} self.clearButtons() if next(memoryList) == nil then createSetupButton() @@ -132,28 +264,110 @@ function buttonClick_cancel() end removeAllHighlights() broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil 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 + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) self.clearButtons() createMemoryActionButtons() local count = 0 for guid in pairs(memoryList) do count = count + 1 + memoryListBackup[guid] = nil local obj = getObjectFromGUID(guid) if obj ~= nil then obj.highlightOff() end end - broadcastToAll(count.." Objects Saved", {1,1,1}) + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() end --Resets bag to starting status function buttonClick_reset() + fresh = true memoryList = {} self.clearButtons() createSetupButton() @@ -178,11 +392,16 @@ function createMemoryActionButtons() 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} --- }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) end --Sends objects from bag/table to their saved position/rotation @@ -200,7 +419,7 @@ function buttonClick_place() for _, bagObj in ipairs(bagObjList) do if bagObj.guid == guid then local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false }) item.setLock(entry.lock) break @@ -226,10 +445,14 @@ end --Find delta (difference) between 2 x/y/z coordinates function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end local deltaPos = {} - local bounds = obj.getBounds() deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + deltaPos.y = (p2.y-p1.y) + yOffset deltaPos.z = (p2.z-p1.z) return deltaPos end @@ -244,6 +467,13 @@ function rotateLocalCoordinates(desiredPos, obj) return {x=x, y=desiredPos.y, z=z} end +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + --Coroutine delay, in seconds function wait(time) local start = os.time() diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060.yaml index ba8b2e6c9..7a43e40cb 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060.yaml @@ -19,16 +19,16 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: +- !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/Custom_Tile Lost in Time + and Space 64a607.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/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' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml' CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Another Dimension 8662fa.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Another Dimension 8662fa.yaml index 41dff798b..29705b440 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Another Dimension 8662fa.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Another Dimension 8662fa.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -30.22 - posY: 1.7 + posY: 1.64 posZ: -0.03 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml index a4a37c01c..0229e4fb9 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml @@ -34,7 +34,7 @@ Sticky: true Tooltip: true Transform: posX: -3.96 - posY: 1.66 + posY: 1.6 posZ: -10.44 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Act Deck 680d25.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Act Deck 680d25.yaml index 5d6703bdd..2a67254f2 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Act Deck 680d25.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Act Deck 680d25.yaml @@ -219,7 +219,7 @@ Sticky: true Tooltip: true Transform: posX: -2.69 - posY: 1.65 + posY: 1.62 posZ: -5.05 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Agenda Deck 18fe65.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Agenda Deck 18fe65.yaml index 24211d8ea..bab599a3d 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Agenda Deck 18fe65.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Agenda Deck 18fe65.yaml @@ -219,7 +219,7 @@ Sticky: true Tooltip: true Transform: posX: -2.72 - posY: 1.66 + posY: 1.63 posZ: 0.37 rotX: 0.02 rotY: 180.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Encounter Deck 726813.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Encounter Deck 726813.yaml index 7f8e9fa5e..a33ea4f63 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Encounter Deck 726813.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Encounter Deck 726813.yaml @@ -1983,7 +1983,7 @@ Sticky: true Tooltip: true Transform: posX: -3.93 - posY: 1.84 + posY: 1.81 posZ: 5.76 rotX: 359.92 rotY: 270.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a.yaml index 293096369..61961199f 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a.yaml @@ -19,6 +19,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile Depths of Yoth + Helper 20b266.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/Card Journey to the Nexus @@ -55,7 +57,7 @@ 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}},"1e70cd":{"lock":false,"pos":{"x":-12.5485,"y":1.6666,"z":11.4774},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"2da146":{"lock":false,"pos":{"x":-5.54437208175659,"y":1.73338341712952,"z":-10.4705924987793},"rot":{"x":3.51493859291077,"y":269.999267578125,"z":0.00813469011336565}},"34eda1":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"597592":{"lock":false,"pos":{"x":-2.6885998249054,"y":1.59734880924225,"z":-5.04850006103516},"rot":{"x":0.0168474819511175,"y":179.991806030273,"z":0.0802527070045471}},"6c48a2":{"lock":false,"pos":{"x":-7.63322496414185,"y":1.60996842384338,"z":14.3366222381592},"rot":{"x":359.920013427734,"y":269.999053955078,"z":0.0168716534972191}},"7543ad":{"lock":false,"pos":{"x":-2.72469973564148,"y":1.64001655578613,"z":0.373300194740295},"rot":{"x":0.0168468505144119,"y":179.99169921875,"z":0.0802544131875038}},"7aa4e3":{"lock":false,"pos":{"x":-3.84080004692078,"y":1.58253002166748,"z":-14.6727018356323},"rot":{"x":359.919738769531,"y":270.032501220703,"z":0.0167922247201204}},"7d8400":{"lock":false,"pos":{"x":-3.92770028114319,"y":1.80214715003967,"z":5.75720071792603},"rot":{"x":359.919738769531,"y":270.001159667969,"z":180.016815185547}},"7e7eba":{"lock":false,"pos":{"x":-3.10001349449158,"y":1.3775794506073,"z":-17.7676258087158},"rot":{"x":355.0625,"y":359.981994628906,"z":359.920989990234}},"884b67":{"lock":false,"pos":{"x":-3.99384117126465,"y":1.65553104877472,"z":14.3554677963257},"rot":{"x":359.919738769531,"y":270.003051757813,"z":180.016815185547}},"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.69660067558289,"y":1.5583164691925,"z":14.2787017822266},"rot":{"x":359.955139160156,"y":224.998016357422,"z":0.0686730444431305}},"dd61f1":{"lock":false,"pos":{"x":-3.95789742469788,"y":1.63398051261902,"z":-10.4412097930908},"rot":{"x":359.920379638672,"y":269.996429443359,"z":0.0180320721119642}},"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}}}}' +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}},"1e70cd":{"lock":false,"pos":{"x":-12.5485,"y":1.6666,"z":11.4774},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"20b266":{"lock":false,"pos":{"x":-11.1819381713867,"y":1.59260177612305,"z":-15.1279420852661},"rot":{"x":359.920104980469,"y":269.985687255859,"z":0.0168645586818457}},"2da146":{"lock":false,"pos":{"x":-5.54437494277954,"y":1.73338377475739,"z":-10.4705944061279},"rot":{"x":3.51480603218079,"y":269.999145507813,"z":0.00793452933430672}},"34eda1":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"597592":{"lock":false,"pos":{"x":-2.68859958648682,"y":1.59734880924225,"z":-5.04850006103516},"rot":{"x":0.016847487539053,"y":179.991806030273,"z":0.0802526548504829}},"6c48a2":{"lock":false,"pos":{"x":-7.633225440979,"y":1.6099534034729,"z":14.3366231918335},"rot":{"x":359.921508789063,"y":269.998992919922,"z":0.0167509354650974}},"7543ad":{"lock":false,"pos":{"x":-2.7246994972229,"y":1.64001655578613,"z":0.373300492763519},"rot":{"x":0.016847025603056,"y":179.99169921875,"z":0.080254353582859}},"7aa4e3":{"lock":false,"pos":{"x":-3.84080004692078,"y":1.58252990245819,"z":-14.6727027893066},"rot":{"x":359.919738769531,"y":270.032501220703,"z":0.0167921893298626}},"7d8400":{"lock":false,"pos":{"x":-3.92770051956177,"y":1.80214715003967,"z":5.75720167160034},"rot":{"x":359.919738769531,"y":270.001159667969,"z":180.016815185547}},"7e7eba":{"lock":false,"pos":{"x":-3.10000967979431,"y":1.37755119800568,"z":-17.7676277160645},"rot":{"x":355.061737060547,"y":359.981903076172,"z":359.922210693359}},"884b67":{"lock":false,"pos":{"x":-3.99384164810181,"y":1.65553104877472,"z":14.35546875},"rot":{"x":359.919738769531,"y":270.003082275391,"z":180.016815185547}},"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.69660151004791,"y":1.55831706523895,"z":14.2787036895752},"rot":{"x":359.955139160156,"y":224.998016357422,"z":0.068672239780426}},"dd61f1":{"lock":false,"pos":{"x":-3.95789432525635,"y":1.63398110866547,"z":-10.4412174224854},"rot":{"x":359.92041015625,"y":269.996459960938,"z":0.0180786196142435}},"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 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Bag New Chaos Token 7e7eba.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Bag New Chaos Token 7e7eba.yaml index 1c8e0ddf2..7262eb71a 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Bag New Chaos Token 7e7eba.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Bag New Chaos Token 7e7eba.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.249999732 - g: 0.249999732 - r: 0.249999732 + b: 0.2499997 + g: 0.2499997 + r: 0.2499997 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile Depths of Yoth Helper 20b266.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile Depths of Yoth Helper 20b266.ttslua new file mode 100644 index 000000000..54d75898a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile Depths of Yoth Helper 20b266.ttslua @@ -0,0 +1,226 @@ +PLAYAREA = { + position = { x=-25, y=4, z=0 }, + rotation = { x=0, y=90, z=0 }, + scale = { x=37, y=5, z=43 } +} + +ASSEMBLY = { + position = { x=68, y=2, z=36 }, + rotation = { x=0, y=270, z=180 } +} + +SET_ASIDE = { + position = { x=-2.52, y=2, z=14.87 }, + rotation = { x=0, y=270, z=180 } +} + +EXPLORATION = { + position = { x=-6.33, y=2, z=14.87 }, + rotation = { x=0, y=270, z=180 } +} + +START = { + position = { x=-30.22, y=2, z=-0.03 }, + rotation = { x=0, y=270, z=180 } +} + +LOCATIONS = { + "City of the Serpents", + "Bridge over N'kai", + "Abandoned Site", + "Caverns of Yoth", + "Hall of Heresy", + "Bright Canyon", + "Forked Path", + "Crumbling Precipice", + "Broken Passage", + "Steps of Yoth" +} + +STEPS = "Steps of Yoth" +PERILS = "Perils of Yoth" + +function onLoad() + self.createButton({ + label="Set Up", + click_function="setup", + function_owner=self, + position={0,0.1,0.4}, + height=120, + width=400, + scale={x=1.75, y=1.75, z=1.75}, + font_size=100 + }) + + playarea = getObjectFromGUID("721ba2") + TOKEN_IMAGES = Global.getTable("tokenplayerone") + math.randomseed(os.time()) +end + +function setup(_obj, _color, _alt_click) + local objs = Physics.cast({ + origin = PLAYAREA.position, + direction = { x=0, y=1, z=0 }, + type = 3, + size = PLAYAREA.scale, + orientation = PLAYAREA.rotation + }) + + -- make index of all cards in play area and remove all clues and doom + local allCards = {} + for i,v in ipairs(objs) do + local obj = v.hit_object + local name = obj.getName() + if name ~= nil then + if obj.tag == "Card" then + allCards[name] = { card = obj, guid = obj.getGUID() } + elseif obj.tag == "Deck" then + local cards = obj.getObjects() + for j,card in ipairs(cards) do + if card.guid ~= nil and card.name ~= nil then + allCards[card.name] = { deck = obj, guid = card.guid } + end + end + elseif obj.tag == "Tile" then + local props = obj.getCustomObject() + if (props.image == TOKEN_IMAGES.clue and props.image_bottom == TOKEN_IMAGES.doom) + or (props.image == TOKEN_IMAGES.doom and props.image_bottom == TOKEN_IMAGES.clue) + then + Wait.time(|| Global.destroyObject(obj), 1) + end + end + + end + end + + -- find location cards + local locCards = {} + local notFound = {} + for i,loc in ipairs(LOCATIONS) do + local card = allCards[loc] + if card == nil then + table.insert(notFound, loc) + else + table.insert(locCards, card) + end + end + + if #notFound > 0 then + printToColor("The following locations were not found: " .. + table.concat(notFound, ", "), _color) + printToColor("Place them in the central play area and try again", _color) + return + end + + -- Perils of Yoth + local peril = allCards[PERILS] + if peril ~= nil then + if peril.card ~= nil then + placeCard(nil, peril.card, ASSEMBLY) + else + placeCard(peril.deck, peril.guid, ASSEMBLY) + if peril.deck.is_face_down and #peril.deck.getObjects() > 0 then + peril.deck.shuffle() + end + end + end + + -- reset clue spawn status and make a deck of all location cards in the + -- assembly area + local spawnedGuids = playarea.getVar("SPAWNED_LOCATION_GUIDS") + for i,loc in ipairs(locCards) do + spawnedGuids[loc.guid] = nil + if loc.card ~= nil then + placeCard(nil, loc.card, ASSEMBLY) + elseif loc.deck ~= nil and #loc.deck.getObjects() > 0 then + placeCard(loc.deck, loc.guid, ASSEMBLY) + else + -- all but one card was taken from deck, so it doesn't exist anymore + Wait.time(|| placeCard(nil, loc.guid, ASSEMBLY), 1) + end + end + playarea.setVar("SPAWNED_LOCATION_GUIDS", spawnedGuids) + Wait.time(setup_2, 2) +end + +function setup_2() + local objs = Physics.cast({ + origin = ASSEMBLY.position, + direction = { x=0, y=1, z=0 }, + type = 3, + size = { x=1, y=1, z=1 }, + orientation = ASSEMBLY.rotation + }) + + local deck = nil + for i,v in ipairs(objs) do + if v.hit_object.tag == "Deck" then + deck = v.hit_object + end + end + + local locMap = {} + for i,card in ipairs(deck.getObjects()) do + locMap[card.name] = card.guid + end + + -- place Steps of Yoth and Perils of Yoth (if necessary) + placeCard(deck, locMap[STEPS], EXPLORATION) + if locMap[PERILS] ~= nil then + placeCard(deck, locMap[PERILS], EXPLORATION) + end + + -- randomly select starting location + deck.shuffle() + placeCard(deck, nil, START, true) + + -- assemble exploration deck + for i=1,4 do + placeCard(deck, nil, EXPLORATION) + end + Wait.time(setup_3, 1) + + -- move remaining cards to set aside area + deck.setPosition(SET_ASIDE.position) + deck.setName("Set Aside Locations") +end + +function setup_3() + local objs = Physics.cast({ + origin = EXPLORATION.position, + direction = { x=0, y=1, z=0 }, + type = 3, + size = { x=1, y=1, z=1 }, + orientation = EXPLORATION.rotation + }) + + local deck = nil + for i,v in ipairs(objs) do + if v.hit_object.tag == "Deck" then + deck = v.hit_object + end + end + + deck.shuffle() + deck.setName("Exploration Deck") +end + +function placeCard(deck, card, location, faceup) + if deck ~= nil then + deck.takeObject({ + guid = card, + position = location.position, + rotation = location.rotation, + smooth = false, + flip = faceup + }) + return + end + + if type(card) == "string" then + card = getObjectFromGUID(card) + end + card.setRotation(location.rotation) + card.setPosition(location.position) + if faceup then card.flip() end +end diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile Depths of Yoth Helper 20b266.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile Depths of Yoth Helper 20b266.yaml new file mode 100644 index 000000000..29027d660 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile Depths of Yoth Helper 20b266.yaml @@ -0,0 +1,49 @@ +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/1695002709821527016/EA1B68B3A3F96D40BCC0B221C9C9128C9A1535A9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1695002709821527016/EA1B68B3A3F96D40BCC0B221C9C9128C9A1535A9/ + WidthScale: 0.0 +Description: 'Assembles exploration deck for Depths of Yoth, places starting location + and removes all clues and doom from the central play area. + + + For Return to the Depths of Yoth, will also find and add Perils of Yoth (from encounter + deck, encounter discard or central play area).' +DragSelectable: true +GMNotes: '' +GUID: 20b266 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Depths of Yoth Helper 20b266.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Depths of Yoth Helper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.18 + posY: 1.59 + posZ: -15.13 + rotX: 359.92 + rotY: 269.99 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab.yaml index 912feebaf..7c42d4e0e 100644 --- a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab.yaml +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab.yaml @@ -10,6 +10,8 @@ ContainedObjects: Pit of Despair c09838.yaml' - !include 'Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_PDF The Innsmouth Conspiracy Campaign Guide c3844b.yaml' +- !include 'Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In + Too Deep c3a225.yaml' - !include 'Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Tile The Innsmouth Conspiracy Campaign Log f40183.yaml' CustomMesh: @@ -40,7 +42,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag The Innsmouth Conspiracy 465aab.ttslua' -LuaScriptState: '{"ml":{"8c6d05":{"lock":false,"pos":{"x":12.2494640350342,"y":1.46325063705444,"z":-4.0136251449585},"rot":{"x":359.920135498047,"y":269.999969482422,"z":0.016873287037015}},"c09838":{"lock":false,"pos":{"x":12.2498664855957,"y":1.46560525894165,"z":3.98637819290161},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168737545609474}},"c3844b":{"lock":false,"pos":{"x":-1.85711467266083,"y":1.49247193336487,"z":28.4344043731689},"rot":{"x":359.920135498047,"y":269.997497558594,"z":0.0168750807642937}},"f40183":{"lock":false,"pos":{"x":-1.46567738056183,"y":1.47562253475189,"z":-26.9309787750244},"rot":{"x":359.920135498047,"y":270.003875732422,"z":0.0168659240007401}}}}' +LuaScriptState: '{"ml":{"8c6d05":{"lock":false,"pos":{"x":12.2498617172241,"y":1.46560549736023,"z":3.98637843132019},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168737974017859}},"c09838":{"lock":false,"pos":{"x":12.2519626617432,"y":1.46795845031738,"z":11.9863872528076},"rot":{"x":359.920135498047,"y":269.999969482422,"z":0.0168738570064306}},"c3844b":{"lock":false,"pos":{"x":-1.85711514949799,"y":1.49247181415558,"z":28.4344081878662},"rot":{"x":359.920135498047,"y":269.997497558594,"z":0.0168756488710642}},"c3a225":{"lock":false,"pos":{"x":12.2494630813599,"y":1.46325051784515,"z":-4.01362371444702},"rot":{"x":359.920135498047,"y":269.999969482422,"z":0.0168740749359131}},"f40183":{"lock":false,"pos":{"x":-1.46566390991211,"y":1.4756224155426,"z":-26.9309825897217},"rot":{"x":359.920135498047,"y":270.00390625,"z":0.0168663803488016}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 1 The Pit of Despair c09838.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 1 The Pit of Despair c09838.yaml index 2d06c358d..66ba38689 100644 --- a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 1 The Pit of Despair c09838.yaml +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 1 The Pit of Despair c09838.yaml @@ -74,7 +74,7 @@ Tooltip: true Transform: posX: 12.25 posY: 1.47 - posZ: 3.99 + posZ: 11.99 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05.yaml index e2a428a74..b13b3827e 100644 --- a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05.yaml +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05.yaml @@ -87,7 +87,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05.ttslua' -LuaScriptState: '{"ml":{"0f3a96":{"lock":false,"pos":{"x":-34.2316,"y":1.6326,"z":11.6933},"rot":{"x":359.9554,"y":225,"z":0.0684}},"2c6d3b":{"lock":false,"pos":{"x":-30.2242,"y":1.6417,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"3359db":{"lock":false,"pos":{"x":-32.8963,"y":1.624,"z":-11.1805},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"360107":{"lock":false,"pos":{"x":-17.1199,"y":1.6563,"z":3.86},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"392d3e":{"lock":false,"pos":{"x":-36.7731,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":269.9978,"z":0.0168}},"3a4050":{"lock":false,"pos":{"x":-27.2281,"y":1.6228,"z":11.3825},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"3b60c1":{"lock":false,"pos":{"x":-30.2243,"y":1.6258,"z":7.57},"rot":{"x":359.9201,"y":270.0093,"z":0.0169}},"62791a":{"lock":false,"pos":{"x":-27.001,"y":1.6202,"z":3.6619},"rot":{"x":359.9554,"y":225,"z":0.0684}},"7234af":{"lock":false,"pos":{"x":-33.4277,"y":1.6269,"z":-3.8532},"rot":{"x":359.9554,"y":224.9966,"z":0.0684}},"7556a4":{"lock":false,"pos":{"x":-2.6885,"y":1.5973,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"785a9e":{"lock":false,"pos":{"x":-17.1199,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":270.0041,"z":0.0168}},"8984ad":{"lock":false,"pos":{"x":-23.6768,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":270.0194,"z":0.0168}},"9c140b":{"lock":false,"pos":{"x":-26.7676,"y":1.6177,"z":-3.8214},"rot":{"x":359.9316,"y":314.9779,"z":359.9554}},"9c6651":{"lock":false,"pos":{"x":-30.2243,"y":1.6213,"z":-7.7},"rot":{"x":359.9201,"y":270.0093,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6961,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"aeb649":{"lock":false,"pos":{"x":-2.7247,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"b6b9b7":{"lock":false,"pos":{"x":-36.7732,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"c150be":{"lock":false,"pos":{"x":-23.6765,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"d1bf92":{"lock":false,"pos":{"x":-3.9276,"y":1.7299,"z":5.7577},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"d28cd1":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0168}},"d5f792":{"lock":false,"pos":{"x":-33.2551,"y":1.6289,"z":3.6656},"rot":{"x":359.9316,"y":315,"z":359.9554}},"d9882d":{"lock":false,"pos":{"x":-27.011,"y":1.6157,"z":-11.771},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"e8fcf0":{"lock":false,"pos":{"x":-30.2243,"y":1.6327,"z":-15.28},"rot":{"x":359.9201,"y":269.9999,"z":0.0168}},"ee32d2":{"lock":false,"pos":{"x":-3.9559,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9827,"z":0.0169}},"f3ec1a":{"lock":false,"pos":{"x":-17.1199,"y":1.654,"z":-3.83},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}}}}' +LuaScriptState: '{"ml":{"0f3a96":{"lock":false,"pos":{"x":-34.2316017150879,"y":1.63262534141541,"z":11.693302154541},"rot":{"x":359.955413818359,"y":224.999908447266,"z":0.0683813542127609}},"2c6d3b":{"lock":false,"pos":{"x":-30.2241992950439,"y":1.64166986942291,"z":15.1899995803833},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168398283421993}},"3359db":{"lock":false,"pos":{"x":-32.8963012695313,"y":1.62404119968414,"z":-11.1805019378662},"rot":{"x":359.931579589844,"y":315,"z":359.955413818359}},"360107":{"lock":false,"pos":{"x":-4.10027408599854,"y":1.64185810089111,"z":16.465877532959},"rot":{"x":359.919738769531,"y":270.000152587891,"z":180.016830444336}},"392d3e":{"lock":false,"pos":{"x":-36.7731018066406,"y":1.64856243133545,"z":7.56999921798706},"rot":{"x":359.920104980469,"y":269.997772216797,"z":0.0168427284806967}},"3a4050":{"lock":false,"pos":{"x":-27.228099822998,"y":1.62276828289032,"z":11.3824996948242},"rot":{"x":359.931579589844,"y":315.000091552734,"z":359.955413818359}},"3b60c1":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.62582564353943,"z":7.57000017166138},"rot":{"x":359.920104980469,"y":270.00927734375,"z":0.0168530736118555}},"62791a":{"lock":false,"pos":{"x":-27.0009994506836,"y":1.62018251419067,"z":3.66190075874329},"rot":{"x":359.955413818359,"y":224.999984741211,"z":0.068380780518055}},"7234af":{"lock":false,"pos":{"x":-33.4277000427246,"y":1.62693536281586,"z":-3.85319948196411},"rot":{"x":359.955413818359,"y":224.996597290039,"z":0.0683845430612564}},"7556a4":{"lock":false,"pos":{"x":-2.68849968910217,"y":1.59734869003296,"z":-5.048499584198},"rot":{"x":0.0168359950184822,"y":180,"z":0.080255039036274}},"785a9e":{"lock":false,"pos":{"x":-7.88368225097656,"y":1.61057507991791,"z":15.2385272979736},"rot":{"x":359.920867919922,"y":270.003845214844,"z":0.0163123663514853}},"8984ad":{"lock":false,"pos":{"x":-23.6767997741699,"y":1.62581276893616,"z":-7.70000028610229},"rot":{"x":359.920104980469,"y":270.019378662109,"z":0.0168126486241817}},"9c140b":{"lock":false,"pos":{"x":-26.767599105835,"y":1.61765778064728,"z":-3.82140016555786},"rot":{"x":359.931579589844,"y":314.977905273438,"z":359.955444335938}},"9c6651":{"lock":false,"pos":{"x":-30.2273616790771,"y":1.49182748794556,"z":-7.68851900100708},"rot":{"x":0.141018375754356,"y":269.889678955078,"z":355.192443847656}},"a45247":{"lock":false,"pos":{"x":1.6961008310318,"y":1.55831706523895,"z":14.2788019180298},"rot":{"x":359.955139160156,"y":224.998001098633,"z":0.068672738969326}},"aeb649":{"lock":false,"pos":{"x":-2.72469973564148,"y":1.6159462928772,"z":0.373300343751907},"rot":{"x":0.0168358720839024,"y":179.999893188477,"z":0.0802557766437531}},"b6b9b7":{"lock":false,"pos":{"x":-36.7732009887695,"y":1.6440749168396,"z":-7.70000123977661},"rot":{"x":359.920104980469,"y":269.999816894531,"z":0.0168399270623922}},"c150be":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.63030004501343,"z":7.56999969482422},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.016839848831296}},"d1bf92":{"lock":false,"pos":{"x":-3.92760038375854,"y":1.72993636131287,"z":5.75770092010498},"rot":{"x":359.919738769531,"y":269.99951171875,"z":180.016815185547}},"d28cd1":{"lock":false,"pos":{"x":-30.2241992950439,"y":1.63719689846039,"z":-0.0300001557916403},"rot":{"x":359.920104980469,"y":269.999755859375,"z":0.016839936375618}},"d5f792":{"lock":false,"pos":{"x":-33.2551002502441,"y":1.62890481948853,"z":3.66560053825378},"rot":{"x":359.931579589844,"y":315.000030517578,"z":359.955413818359}},"d9882d":{"lock":false,"pos":{"x":-27.0109996795654,"y":1.61566078662872,"z":-11.7710008621216},"rot":{"x":359.955413818359,"y":224.999923706055,"z":0.0683760941028595}},"e8fcf0":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.63271510601044,"z":-15.2799997329712},"rot":{"x":359.920104980469,"y":269.999908447266,"z":0.016839699819684}},"ee32d2":{"lock":false,"pos":{"x":-3.95590043067932,"y":1.59753930568695,"z":-10.4412021636963},"rot":{"x":359.919738769531,"y":269.982727050781,"z":0.0168614368885756}},"f3ec1a":{"lock":false,"pos":{"x":-4.13920640945435,"y":1.64114463329315,"z":13.8521060943604},"rot":{"x":359.919738769531,"y":269.999938964844,"z":180.016830444336}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 @@ -98,8 +98,8 @@ Sticky: true Tooltip: true Transform: posX: 12.25 - posY: 1.46 - posZ: -4.01 + posY: 1.47 + posZ: 3.99 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Card Finding Agent Harper 785a9e.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Card Finding Agent Harper 785a9e.yaml index 61952fdb9..84c150728 100644 --- a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Card Finding Agent Harper 785a9e.yaml +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Card Finding Agent Harper 785a9e.yaml @@ -33,9 +33,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -17.12 - posY: 1.62 - posZ: -0.03 + posX: -7.88 + posY: 1.61 + posZ: 15.24 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Custom_Tile 9c6651.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Custom_Tile 9c6651.yaml index 79558af0b..1e786b787 100644 --- a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Custom_Tile 9c6651.yaml +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Custom_Tile 9c6651.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -30.22 - posY: 1.62 - posZ: -7.7 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + posX: -30.23 + posY: 1.49 + posZ: -7.69 + rotX: 0.37 + rotY: 269.96 + rotZ: 352.92 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Deck Hideouts f3ec1a.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Deck Hideouts f3ec1a.yaml index 937766100..99764f3c6 100644 --- a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Deck Hideouts f3ec1a.yaml +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Deck Hideouts f3ec1a.yaml @@ -310,9 +310,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -17.12 - posY: 1.65 - posZ: -3.83 + posX: -4.14 + posY: 1.64 + posZ: 13.85 rotX: 359.92 rotY: 270.0 rotZ: 180.02 diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Deck Suspects 360107.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Deck Suspects 360107.yaml index 6e978c335..710af5b6f 100644 --- a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Deck Suspects 360107.yaml +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 2 The Vanishing of Elina Harper 8c6d05/Deck Suspects 360107.yaml @@ -310,9 +310,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -17.12 - posY: 1.66 - posZ: 3.86 + posX: -4.1 + posY: 1.64 + posZ: 16.47 rotX: 359.92 rotY: 270.0 rotZ: 180.02 diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225.ttslua b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225.ttslua new file mode 100644 index 000000000..5aa27be92 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225.ttslua @@ -0,0 +1,503 @@ +-- Utility memory bag by Directsun +-- Version 2.5.2 +-- Fork of Memory Bag 2.0 by MrStump + +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function combineMemoryFromBagsWithin() + local bagObjList = self.getObjects() + for _, bagObj in ipairs(bagObjList) do + local data = bagObj.lua_script_state + if data ~= nil then + local j = JSON.decode(data) + if j ~= nil and j.ml ~= nil then + for guid, entry in pairs(j.ml) do + memoryList[guid] = entry + end + end + end + end +end + +function updateMemoryWithMoves() + memoryList = memoryListBackup + --get the first transposed object's coordinates + local obj = getObjectFromGUID(moveGuid) + + -- p1 is where needs to go, p2 is where it was + local refObjPos = memoryList[moveGuid].pos + local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) + local movedRotation = obj.getRotation() + for guid, entry in pairs(memoryList) do + memoryList[guid].pos.x = entry.pos.x - deltaPos.x + memoryList[guid].pos.y = entry.pos.y - deltaPos.y + memoryList[guid].pos.z = entry.pos.z - deltaPos.z + -- memoryList[guid].rot.x = movedRotation.x + -- memoryList[guid].rot.y = movedRotation.y + -- memoryList[guid].rot.z = movedRotation.z + end + + --theList[obj.getGUID()] = { + -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + -- lock=obj.getLock() + --} + moveList = {} +end + +function onload(saved_data) + fresh = true + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + --Set up information off of loaded_data + memoryList = loaded_data.ml + else + --Set up information for if there is no saved saved data + memoryList = {} + end + + moveList = {} + moveGuid = nil + + if next(memoryList) == nil then + createSetupButton() + else + fresh = false + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by Transpose button +function buttonClick_transpose() + moveGuid = nil + broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + moveList = {} + self.clearButtons() + createButtonsOnAllObjects(true) + createSetupActionButtons(true) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects(false) + createSetupActionButtons(false) +end + +function getAllObjectsInMemory() + local objTable = {} + local curObj = {} + + for guid in pairs(memoryListBackup) do + curObj = getObjectFromGUID(guid) + table.insert(objTable, curObj) + end + + return objTable + -- return getAllObjects() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects(move) + local howManyButtons = 0 + + local objsToHaveButtons = {} + if move == true then + objsToHaveButtons = getAllObjectsInMemory() + else + objsToHaveButtons = getAllObjects() + end + + for _, obj in ipairs(objsToHaveButtons) do + if obj ~= self then + local dummyIndex = howManyButtons + --On a normal bag, the button positions aren't the same size as the bag. + globalScaleFactor = 1 * 1/self.getScale().x + --Super sweet math to set button positions + local selfPos = self.getPosition() + local objPos = obj.getPosition() + local deltaPos = findOffsetDistance(selfPos, objPos, obj) + local objPos = rotateLocalCoordinates(deltaPos, self) + objPos.x = -objPos.x * globalScaleFactor + objPos.y = objPos.y * globalScaleFactor + 2 + objPos.z = objPos.z * globalScaleFactor * 0.9 + --Offset rotation of bag + local rot = self.getRotation() + rot.y = -rot.y + 180 + --Create function + local funcName = "selectButton_" .. howManyButtons + local func = function() buttonClick_selection(dummyIndex, obj, move) end + local color = {0.75,0.25,0.25,0.6} + local colorMove = {0,0,1,0.6} + if move == true then + color = colorMove + end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=500, width=500, + color=color, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons(move) + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + + if move == false then + self.createButton({ + label="Add", click_function="buttonClick_add", function_owner=self, + position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.25,1,0.25} + }) + + if fresh == false then + self.createButton({ + label="Set New", click_function="buttonClick_setNew", function_owner=self, + position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,0.25,0.25} + }) + end + end + + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj, move) + local colorMove = {0,0,1,0.6} + local color = {0,1,0,0.6} + + previousGuid = selectedGuid + selectedGuid = obj.getGUID() + + theList = memoryList + if move == true then + theList = moveList + if previousGuid ~= nil and previousGuid ~= selectedGuid then + local prevObj = getObjectFromGUID(previousGuid) + prevObj.highlightOff() + self.editButton({index=previousIndex, color=colorMove}) + theList[previousGuid] = nil + end + previousIndex = index + end + + if theList[selectedGuid] == nil then + self.editButton({index=index, color=color}) + --Adding pos/rot to memory table + local pos, rot = obj.getPosition(), obj.getRotation() + --I need to add it like this or it won't save due to indexing issue + theList[obj.getGUID()] = { + pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, + rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, + lock=obj.getLock() + } + obj.highlightOn({0,1,0}) + else + color = {0.75,0.25,0.25,0.6} + if move == true then + color = colorMove + end + self.editButton({index=index, color=color}) + theList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + moveList = {} + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) + moveGuid = nil +end + +--Saves selections +function buttonClick_submit() + fresh = false + if next(moveList) ~= nil then + for guid in pairs(moveList) do + moveGuid = guid + end + if memoryListBackup[moveGuid] == nil then + broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) + else + broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(moveList) do + moveGuid = guid + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + updateMemoryWithMoves() + updateSave() + buttonClick_place() + end + elseif next(memoryList) == nil and moveGuid == nil then + memoryList = memoryListBackup + broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) + end + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() + moveGuid = nil +end + +function combineTables(first_table, second_table) + for k,v in pairs(second_table) do first_table[k] = v end +end + +function buttonClick_add() + fresh = false + combineTables(memoryList, memoryListBackup) + broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) + combineMemoryFromBagsWithin() + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + updateSave() +end + +function buttonClick_remove() + broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for guid in pairs(memoryList) do + count = count + 1 + memoryListBackup[guid] = nil + local obj = getObjectFromGUID(guid) + if obj ~= nil then obj.highlightOff() end + end + broadcastToAll(count.." Objects Removed", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +function buttonClick_setNew() + broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) + self.clearButtons() + createMemoryActionButtons() + local count = 0 + for _, obj in ipairs(getAllObjects()) do + guid = obj.guid + if memoryListBackup[guid] ~= nil then + count = count + 1 + memoryListBackup[guid].pos = obj.getPosition() + memoryListBackup[guid].rot = obj.getRotation() + memoryListBackup[guid].lock = obj.getLock() + end + end + broadcastToAll(count.." Objects Saved", {1,1,1}) + memoryList = memoryListBackup + updateSave() +end + +--Resets bag to starting status +function buttonClick_reset() + fresh = true + memoryList = {} + self.clearButtons() + createSetupButton() + removeAllHighlights() + broadcastToAll("Tool Reset", {1,1,1}) + updateSave() +end + + +--After Setup + + +--Creates recall and place buttons +function createMemoryActionButtons() + self.createButton({ + label="Place", click_function="buttonClick_place", function_owner=self, + position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, + font_size=130, color={0,0,0}, font_color={1,1,1} + }) +--- self.createButton({ +--- label="Move", click_function="buttonClick_transpose", function_owner=self, +--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, +--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} +--- }) +end + +--Sends objects from bag/table to their saved position/rotation +function buttonClick_place() + local bagObjList = self.getObjects() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + --If obj is out on the table, move it to the saved pos/rot + if obj ~= nil then + obj.setPositionSmooth(entry.pos) + obj.setRotationSmooth(entry.rot) + obj.setLock(entry.lock) + else + --If obj is inside of the bag + for _, bagObj in ipairs(bagObjList) do + if bagObj.guid == guid then + local item = self.takeObject({ + guid=guid, position=entry.pos, rotation=entry.rot, smooth=false + }) + item.setLock(entry.lock) + break + end + end + end + end + broadcastToAll("Objects Placed", {1,1,1}) +end + +--Recalls objects to bag from table +function buttonClick_recall() + for guid, entry in pairs(memoryList) do + local obj = getObjectFromGUID(guid) + if obj ~= nil then self.putObject(obj) end + end + broadcastToAll("Objects Recalled", {1,1,1}) +end + + +--Utility functions + + +--Find delta (difference) between 2 x/y/z coordinates +function findOffsetDistance(p1, p2, obj) + local yOffset = 0 + if obj ~= nil then + local bounds = obj.getBounds() + yOffset = (bounds.size.y - bounds.offset.y) + end + local deltaPos = {} + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + yOffset + deltaPos.z = (p2.z-p1.z) + return deltaPos +end + +--Used to rotate a set of coordinates by an angle +function rotateLocalCoordinates(desiredPos, obj) + local objPos, objRot = obj.getPosition(), obj.getRotation() + local angle = math.rad(objRot.y) + local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) + local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) + --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} + return {x=x, y=desiredPos.y, z=z} +end + +function rotateMyCoordinates(desiredPos, obj) + local angle = math.rad(obj.getRotation().y) + local x = desiredPos.x * math.sin(angle) + local z = desiredPos.z * math.cos(angle) + return {x=x, y=desiredPos.y, z=z} +end + +--Coroutine delay, in seconds +function wait(time) + local start = os.time() + repeat coroutine.yield(0) until os.time() > start + time +end + +--Duplicates a table (needed to prevent it making reference to the same objects) +function duplicateTable(oldTable) + local newTable = {} + for k, v in pairs(oldTable) do + newTable[k] = v + end + return newTable +end + +--Moves scripted highlight from all objects +function removeAllHighlights() + for _, obj in ipairs(getAllObjects()) do + obj.highlightOff() + end +end + +--Round number (num) to the Nth decimal (dec) +function round(num, dec) + local mult = 10^(dec or 0) + return math.floor(num * mult + 0.5) / mult +end diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225.yaml new file mode 100644 index 000000000..cdb18fc5f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225.yaml @@ -0,0 +1,129 @@ +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 In Too Deep c3a225/Custom_PDF b71c73.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 00d19a.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 026bb9.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Deck Encounter Deck 0326ec.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 04c355.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card The House on Water Street 104e07.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 184c04.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token 2b06f0.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 2fa817.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Railroad Station 306c50.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Harbour 30b2c0.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Desolate Coastline 33cf09.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 357354.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Deck Suspects 360107.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 3f3098.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Marsh Refinery 44c342.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood + Tokens 457419.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 46b30a.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile 47aa44.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood + Tokens 47b626.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood + Tokens 4bec3c.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 567a44.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 57ff37.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 61eee2.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Jail 755fc0.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 7ac282.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Scenario 7c4014.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 7e160e.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Square 859ff0.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 86e447.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 8a1786.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 8ea37f.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card New Church Green 921a9b.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card First National Grocery 9ae75c.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card The Little Bookshop a17a82.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Fish Street Bridge a358fc.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token b228a8.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token b6e32d.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Through the Labyrinth b8638a.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile In Too Deep bbb70a.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Shoreward Slums c0d0df.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Deck Agenda Deck d3b120.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token d49bfd.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token daee0c.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token e099f7.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token e14d4b.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Gilman House e589b8.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Sawbone Alley e58cff.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token ecc8e5.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token ecff30.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token eeb375.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Card Esoteric Order of Dagon ef8cef.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token fc6896.yaml' +- !include 'Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood + Tokens fe6f38.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/1684870715280901693/990F83BB1330A6663E440CF7947AE4C7742E700B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c3a225 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 In Too Deep c3a225.ttslua' +LuaScriptState: '{"ml":{"00d19a":{"lock":false,"pos":{"x":-36.6934394836426,"y":1.78606915473938,"z":11.7293653488159},"rot":{"x":359.920074462891,"y":270.001525878906,"z":0.016775319352746}},"026bb9":{"lock":false,"pos":{"x":-29.9402446746826,"y":1.76979231834412,"z":-11.6138305664063},"rot":{"x":359.920104980469,"y":270.001892089844,"z":0.0168595779687166}},"0326ec":{"lock":false,"pos":{"x":-3.92764639854431,"y":1.76844871044159,"z":5.75714111328125},"rot":{"x":359.919738769531,"y":270,"z":180.016815185547}},"04c355":{"lock":false,"pos":{"x":-30.4029121398926,"y":1.7726194858551,"z":-4.18756866455078},"rot":{"x":359.920104980469,"y":270.001373291016,"z":0.0168423745781183}},"104e07":{"lock":false,"pos":{"x":-23.6765079498291,"y":1.62367498874664,"z":-15.2800045013428},"rot":{"x":359.921051025391,"y":269.999816894531,"z":0.0202266052365303}},"184c04":{"lock":false,"pos":{"x":-30.1927070617676,"y":1.77478218078613,"z":4.16888904571533},"rot":{"x":359.920104980469,"y":270.02783203125,"z":0.0168121196329594}},"2b06f0":{"lock":false,"pos":{"x":-24.889762878418,"y":1.62680184841156,"z":-16.745023727417},"rot":{"x":359.964263916016,"y":270.024322509766,"z":1.79645955562592}},"2fa817":{"lock":false,"pos":{"x":-23.4853191375732,"y":1.76775693893433,"z":12.0887336730957},"rot":{"x":359.920104980469,"y":270.001495361328,"z":0.0168448574841022}},"306c50":{"lock":false,"pos":{"x":-23.6764965057373,"y":1.63253951072693,"z":15.1899967193604},"rot":{"x":359.920104980469,"y":269.99951171875,"z":0.0168403368443251}},"30b2c0":{"lock":false,"pos":{"x":-30.2242870330811,"y":1.63271534442902,"z":-15.2800102233887},"rot":{"x":359.920562744141,"y":269.999572753906,"z":0.0161959435790777}},"33cf09":{"lock":false,"pos":{"x":-36.7732353210449,"y":1.64186155796051,"z":-15.2800197601318},"rot":{"x":359.920623779297,"y":269.999481201172,"z":0.0168578289449215}},"357354":{"lock":false,"pos":{"x":-24.7442150115967,"y":1.7696293592453,"z":12.4872903823853},"rot":{"x":359.920104980469,"y":270.001159667969,"z":0.0168422292917967}},"360107":{"lock":false,"pos":{"x":-4.93659210205078,"y":1.64250040054321,"z":14.6650953292847},"rot":{"x":359.919738769531,"y":270,"z":180.016830444336}},"3f3098":{"lock":false,"pos":{"x":-29.5331211090088,"y":1.77582216262817,"z":10.8370208740234},"rot":{"x":359.920104980469,"y":270.001220703125,"z":0.0168473366647959}},"44c342":{"lock":false,"pos":{"x":-23.6765213012695,"y":1.62581241130829,"z":-7.70001602172852},"rot":{"x":359.920104980469,"y":269.99951171875,"z":0.0168403033167124}},"457419":{"lock":false,"pos":{"x":-17.1201400756836,"y":1.65833747386932,"z":-15.2800016403198},"rot":{"x":359.920104980469,"y":269.999572753906,"z":0.0168502349406481}},"46b30a":{"lock":false,"pos":{"x":-24.0696392059326,"y":1.76390063762665,"z":-3.80506658554077},"rot":{"x":359.920104980469,"y":270.001312255859,"z":0.0168588664382696}},"47aa44":{"lock":false,"pos":{"x":-16.8275489807129,"y":1.60560262203217,"z":2.32214879989624},"rot":{"x":359.983154296875,"y":5.98995848122286E-06,"z":359.920104980469}},"47b626":{"lock":false,"pos":{"x":-43.3700942993164,"y":1.70389604568481,"z":15.1900148391724},"rot":{"x":359.920104980469,"y":270.000854492188,"z":0.0168481897562742}},"4bec3c":{"lock":false,"pos":{"x":-43.3701438903809,"y":1.69494116306305,"z":-15.2799997329712},"rot":{"x":359.920104980469,"y":269.999389648438,"z":0.0168502852320671}},"567a44":{"lock":false,"pos":{"x":-22.6210269927979,"y":1.76160728931427,"z":-4.73528861999512},"rot":{"x":359.920104980469,"y":270.001098632813,"z":0.0168636124581099}},"57ff37":{"lock":false,"pos":{"x":-24.4017162322998,"y":1.76877474784851,"z":11.2043476104736},"rot":{"x":359.920104980469,"y":270.001159667969,"z":0.0168516654521227}},"61eee2":{"lock":false,"pos":{"x":-36.2253150939941,"y":1.78294146060944,"z":3.30846977233887},"rot":{"x":359.920104980469,"y":270.001373291016,"z":0.0168461538851261}},"755fc0":{"lock":false,"pos":{"x":-36.7731170654297,"y":1.64632892608643,"z":-0.0300148688256741},"rot":{"x":359.920104980469,"y":269.99951171875,"z":0.0168402977287769}},"7ac282":{"lock":false,"pos":{"x":-23.7311782836914,"y":1.76116323471069,"z":-11.5141887664795},"rot":{"x":359.920104980469,"y":270.0009765625,"z":0.0168388839811087}},"7c4014":{"lock":false,"pos":{"x":-3.95590472221375,"y":1.59753930568695,"z":-10.4411783218384},"rot":{"x":359.919738769531,"y":269.998413085938,"z":0.0168394334614277}},"7e160e":{"lock":false,"pos":{"x":-27.0879993438721,"y":1.77365827560425,"z":15.0756072998047},"rot":{"x":359.920074462891,"y":270.000610351563,"z":0.016865286976099}},"859ff0":{"lock":false,"pos":{"x":-30.2241668701172,"y":1.6371967792511,"z":-0.0300167836248875},"rot":{"x":359.920104980469,"y":269.999481201172,"z":0.0168403163552284}},"86e447":{"lock":false,"pos":{"x":-36.4723968505859,"y":1.78122019767761,"z":-3.72188901901245},"rot":{"x":359.920104980469,"y":270.001312255859,"z":0.0168522857129574}},"8a1786":{"lock":false,"pos":{"x":-29.2802066802979,"y":1.7712185382843,"z":-3.62734723091125},"rot":{"x":359.920104980469,"y":270.001251220703,"z":0.0168450493365526}},"8ea37f":{"lock":false,"pos":{"x":-23.6523628234863,"y":1.76558482646942,"z":3.90509176254272},"rot":{"x":359.920074462891,"y":270.001037597656,"z":0.0168100744485855}},"921a9b":{"lock":false,"pos":{"x":-23.6764392852783,"y":1.62806642055511,"z":-0.0300290193408728},"rot":{"x":359.920104980469,"y":270,"z":0.016839649528265}},"99972a":{"lock":false,"pos":{"x":-17.1149272918701,"y":1.42027616500854,"z":-0.0345026664435863},"rot":{"x":359.920013427734,"y":270.022308349609,"z":0.0168452952057123}},"9ae75c":{"lock":false,"pos":{"x":-30.2241859436035,"y":1.63943040370941,"z":7.56998586654663},"rot":{"x":359.920104980469,"y":269.99951171875,"z":0.016840323805809}},"a17a82":{"lock":false,"pos":{"x":-30.2242546081543,"y":1.6416699886322,"z":15.1899929046631},"rot":{"x":359.920104980469,"y":269.999267578125,"z":0.0168406870216131}},"a358fc":{"lock":false,"pos":{"x":-30.2241230010986,"y":1.63494253158569,"z":-7.70027685165405},"rot":{"x":359.920104980469,"y":269.998413085938,"z":0.0168418139219284}},"a45247":{"lock":false,"pos":{"x":1.69638323783875,"y":1.55831742286682,"z":14.2788553237915},"rot":{"x":359.955139160156,"y":224.997909545898,"z":0.0686741024255753}},"b228a8":{"lock":false,"pos":{"x":-36.4113616943359,"y":1.78363144397736,"z":4.77336549758911},"rot":{"x":359.920104980469,"y":269.987243652344,"z":0.0168637447059155}},"b6e32d":{"lock":false,"pos":{"x":-37.1079788208008,"y":1.77959883213043,"z":-12.2537422180176},"rot":{"x":359.920104980469,"y":270.001586914063,"z":0.0168143231421709}},"b71c73":{"lock":false,"pos":{"x":12.2496614456177,"y":1.45618319511414,"z":-28.0136737823486},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168725643306971}},"b8638a":{"lock":false,"pos":{"x":-2.68847942352295,"y":1.59734869003296,"z":-5.04854345321655},"rot":{"x":0.0168537888675928,"y":179.987243652344,"z":0.0802513286471367}},"bbb70a":{"lock":false,"pos":{"x":-3.85586762428284,"y":1.58250117301941,"z":-14.8428249359131},"rot":{"x":359.919738769531,"y":270.030395507813,"z":0.0167951993644238}},"c0d0df":{"lock":false,"pos":{"x":-36.7731819152832,"y":1.64407479763031,"z":-7.70002698898315},"rot":{"x":359.920104980469,"y":269.999694824219,"z":0.0168401040136814}},"d3b120":{"lock":false,"pos":{"x":-2.72474479675293,"y":1.62557458877563,"z":0.373715758323669},"rot":{"x":0.016835218295455,"y":180.000259399414,"z":0.0802563205361366}},"d49bfd":{"lock":false,"pos":{"x":-37.5114936828613,"y":1.78494012355804,"z":4.0067253112793},"rot":{"x":359.920257568359,"y":269.487243652344,"z":0.0175517704337835}},"daee0c":{"lock":false,"pos":{"x":-35.9802627563477,"y":1.77833569049835,"z":-11.2007036209106},"rot":{"x":359.920135498047,"y":270.000366210938,"z":0.0168407708406448}},"e099f7":{"lock":false,"pos":{"x":-29.6727886199951,"y":1.77369928359985,"z":2.95011973381042},"rot":{"x":359.920471191406,"y":268.815185546875,"z":0.0184901766479015}},"e14d4b":{"lock":false,"pos":{"x":-22.9191303253174,"y":1.76251184940338,"z":-3.07010459899902},"rot":{"x":359.920043945313,"y":270.001312255859,"z":0.0168091859668493}},"e589b8":{"lock":false,"pos":{"x":-36.773136138916,"y":1.64856243133545,"z":7.56998205184937},"rot":{"x":359.920104980469,"y":269.999481201172,"z":0.0168404094874859}},"e58cff":{"lock":false,"pos":{"x":-36.7731742858887,"y":1.65080201625824,"z":15.1899871826172},"rot":{"x":359.920104980469,"y":270.006958007813,"z":0.0168298147618771}},"ecc8e5":{"lock":false,"pos":{"x":-23.2233047485352,"y":1.76699304580688,"z":10.7314119338989},"rot":{"x":359.920104980469,"y":270.000946044922,"z":0.0168336424976587}},"ecff30":{"lock":false,"pos":{"x":-30.8015308380127,"y":1.77792620658875,"z":11.9776363372803},"rot":{"x":359.920104980469,"y":270.001434326172,"z":0.0168636180460453}},"eeb375":{"lock":false,"pos":{"x":-37.6513481140137,"y":1.64497292041779,"z":-16.726541519165},"rot":{"x":359.914184570313,"y":269.999176025391,"z":1.82870507240295}},"ef8cef":{"lock":false,"pos":{"x":-23.6871891021729,"y":1.63031983375549,"z":7.58641052246094},"rot":{"x":359.920104980469,"y":270.009735107422,"z":0.0168260969221592}},"fc6896":{"lock":false,"pos":{"x":-31.0463085174561,"y":1.63351762294769,"z":-16.8635425567627},"rot":{"x":359.934478759766,"y":270.034149169922,"z":1.57600116729736}},"fe6f38":{"lock":false,"pos":{"x":-17.1199703216553,"y":1.66729211807251,"z":15.1899843215942},"rot":{"x":359.920104980469,"y":269.999664306641,"z":0.0168499127030373}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: In Too Deep' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 1.46 + posZ: -4.01 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a.yaml new file mode 100644 index 000000000..4fb8bc4a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 0.606999934 + g: 0.694 + r: 0.128999382 +ContainedObjects: +- !include 'Bag Keys 99972a/Custom_Tile f2a6d9.yaml' +- !include 'Bag Keys 99972a/Custom_Tile a359d6.yaml' +- !include 'Bag Keys 99972a/Custom_Tile 8bde30.yaml' +- !include 'Bag Keys 99972a/Custom_Tile d70b36.yaml' +- !include 'Bag Keys 99972a/Custom_Tile 429c04.yaml' +- !include 'Bag Keys 99972a/Custom_Tile 480325.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 99972a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Keys +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11 + posY: 1.42 + posZ: -0.03 + rotX: 359.92 + rotY: 270.02 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 429c04.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 429c04.yaml new file mode 100644 index 000000000..047b205a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 429c04.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125424731/54F46CD15EC1DABE9816239302BB29E42CCC41FC/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 429c04 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.21 + posY: 3.41 + posZ: -52.8 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 480325.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 480325.yaml new file mode 100644 index 000000000..a36f2a237 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 480325.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125357797/FD3A585D86E22574B815CC630924027284122EF3/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '480325' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.43 + posY: 3.7 + posZ: -50.66 + rotX: 0.03 + rotY: 269.98 + rotZ: 327.64 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 8bde30.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 8bde30.yaml new file mode 100644 index 000000000..7ceb80c54 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile 8bde30.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125361354/DB7B50BCF6C275C3C25843331D5C8EC68A6F9E57/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8bde30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.73 + posY: 3.47 + posZ: -52.2 + rotX: 0.63 + rotY: 270.15 + rotZ: 5.52 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile a359d6.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile a359d6.yaml new file mode 100644 index 000000000..f0d185bc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile a359d6.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125358977/AECDB2E0C55672BBBDDB70B5944C22A6B677841E/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a359d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.62 + posY: 3.4 + posZ: -49.87 + rotX: 0.02 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile d70b36.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile d70b36.yaml new file mode 100644 index 000000000..912759d2b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile d70b36.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125354344/74C3014A27A00100FE3A719677CB50677285CB58/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d70b36 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.47 + posY: 3.31 + posZ: -52.14 + rotX: 359.06 + rotY: 269.86 + rotZ: 4.49 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile f2a6d9.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile f2a6d9.yaml new file mode 100644 index 000000000..af4b0a135 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Bag Keys 99972a/Custom_Tile f2a6d9.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125360284/CBE3FFC95062445A9B6BC2B585BED340504256F7/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f2a6d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.78 + posY: 3.41 + posZ: -51.16 + rotX: 359.54 + rotY: 270.0 + rotZ: 0.42 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Desolate Coastline 33cf09.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Desolate Coastline 33cf09.yaml new file mode 100644 index 000000000..0129488fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Desolate Coastline 33cf09.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266420 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Coastal. +DragSelectable: true +GMNotes: '' +GUID: 33cf09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Desolate Coastline +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.77 + posY: 1.64 + posZ: -15.28 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Esoteric Order of Dagon ef8cef.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Esoteric Order of Dagon ef8cef.yaml new file mode 100644 index 000000000..51512a0f0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Esoteric Order of Dagon ef8cef.yaml @@ -0,0 +1,45 @@ +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/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Midtown. +DragSelectable: true +GMNotes: '' +GUID: ef8cef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Esoteric Order of Dagon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.69 + posY: 1.63 + posZ: 7.59 + rotX: 359.92 + rotY: 270.01 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card First National Grocery 9ae75c.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card First National Grocery 9ae75c.yaml new file mode 100644 index 000000000..3e767deea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card First National Grocery 9ae75c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266414 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Midtown. +DragSelectable: true +GMNotes: '' +GUID: 9ae75c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: First National Grocery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22 + posY: 1.64 + posZ: 7.57 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Fish Street Bridge a358fc.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Fish Street Bridge a358fc.yaml new file mode 100644 index 000000000..641379ffb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Fish Street Bridge a358fc.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266413 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Coastal. Midtown. +DragSelectable: true +GMNotes: '' +GUID: a358fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Fish Street Bridge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22 + posY: 1.63 + posZ: -7.7 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Gilman House e589b8.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Gilman House e589b8.yaml new file mode 100644 index 000000000..42203a4d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Gilman House e589b8.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266417 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Midtown. +DragSelectable: true +GMNotes: '' +GUID: e589b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Gilman House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.77 + posY: 1.65 + posZ: 7.57 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Harbour 30b2c0.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Harbour 30b2c0.yaml new file mode 100644 index 000000000..5b3316c11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Harbour 30b2c0.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266415 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Coastal. +DragSelectable: true +GMNotes: '' +GUID: 30b2c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Innsmouth Harbour +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22 + posY: 1.63 + posZ: -15.28 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Jail 755fc0.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Jail 755fc0.yaml new file mode 100644 index 000000000..e18c59e70 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Jail 755fc0.yaml @@ -0,0 +1,45 @@ +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/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Midtown. +DragSelectable: true +GMNotes: '' +GUID: 755fc0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Innsmouth Jail +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.77 + posY: 1.65 + posZ: -0.03 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Square 859ff0.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Square 859ff0.yaml new file mode 100644 index 000000000..f459b5105 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Innsmouth Square 859ff0.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266416 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Midtown. +DragSelectable: true +GMNotes: '' +GUID: 859ff0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Innsmouth Square +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22 + posY: 1.64 + posZ: -0.03 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Marsh Refinery 44c342.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Marsh Refinery 44c342.yaml new file mode 100644 index 000000000..18876c4b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Marsh Refinery 44c342.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266418 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Coastal. Midtown. +DragSelectable: true +GMNotes: '' +GUID: 44c342 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Marsh Refinery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.68 + posY: 1.63 + posZ: -7.7 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card New Church Green 921a9b.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card New Church Green 921a9b.yaml new file mode 100644 index 000000000..1294189db --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card New Church Green 921a9b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266411 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Midtown. +DragSelectable: true +GMNotes: '' +GUID: 921a9b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: New Church Green +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.68 + posY: 1.63 + posZ: -0.03 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Railroad Station 306c50.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Railroad Station 306c50.yaml new file mode 100644 index 000000000..7ad992e7a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Railroad Station 306c50.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266419 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. +DragSelectable: true +GMNotes: '' +GUID: 306c50 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Railroad Station +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.68 + posY: 1.63 + posZ: 15.19 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Sawbone Alley e58cff.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Sawbone Alley e58cff.yaml new file mode 100644 index 000000000..e3aaebd70 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Sawbone Alley e58cff.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266407 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. +DragSelectable: true +GMNotes: '' +GUID: e58cff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Sawbone Alley +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.77 + posY: 1.65 + posZ: 15.19 + rotX: 359.92 + rotY: 270.01 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Scenario 7c4014.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Scenario 7c4014.yaml new file mode 100644 index 000000000..f8950979f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Scenario 7c4014.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: In Too Deep +DragSelectable: true +GMNotes: '' +GUID: 7c4014 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96 + posY: 1.6 + posZ: -10.44 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Shoreward Slums c0d0df.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Shoreward Slums c0d0df.yaml new file mode 100644 index 000000000..9c2b8ba26 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Shoreward Slums c0d0df.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266408 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Coastal. Midtown. +DragSelectable: true +GMNotes: '' +GUID: c0d0df +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Shoreward Slums +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.77 + posY: 1.64 + posZ: -7.7 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card The House on Water Street 104e07.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card The House on Water Street 104e07.yaml new file mode 100644 index 000000000..8e1fab71a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card The House on Water Street 104e07.yaml @@ -0,0 +1,45 @@ +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/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. Coastal. +DragSelectable: true +GMNotes: '' +GUID: 104e07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The House on Water Street +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.68 + posY: 1.62 + posZ: -15.28 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card The Little Bookshop a17a82.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card The Little Bookshop a17a82.yaml new file mode 100644 index 000000000..425d30323 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card The Little Bookshop a17a82.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266412 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Innsmouth. +DragSelectable: true +GMNotes: '' +GUID: a17a82 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Little Bookshop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22 + posY: 1.64 + posZ: 15.19 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Through the Labyrinth b8638a.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Through the Labyrinth b8638a.yaml new file mode 100644 index 000000000..21c21673a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Card Through the Labyrinth b8638a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266505 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: Act 1 +DragSelectable: true +GMNotes: '' +GUID: b8638a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Through the Labyrinth +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69 + posY: 1.6 + posZ: -5.05 + rotX: 0.02 + rotY: 179.99 + rotZ: 0.08 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..8cc213ca6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/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 Angry Mob 6dfbf2.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Innsmouth Shoggoth 01e605.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Teachings of the Order 90fdb0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Joe Sargent 37a897.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Young Deep Ones 6b7fb0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Ravagers from the Deep 98839d.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: '' +DragSelectable: true +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 5.0 + Drag: 5.0 + Mass: 1.375 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 1.56 + posZ: 14.28 + rotX: 359.96 + rotY: 225.0 + rotZ: 0.07 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Angry Mob 6dfbf2.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Angry Mob 6dfbf2.yaml new file mode 100644 index 000000000..2cdd59d68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Angry Mob 6dfbf2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 369918 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3699': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1626320664132668810/B3C31810E9ADA30EAD9F56966F011C00694267D0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132668361/FA5D994677EFCA86F66F88600DE43822F8E1D9F8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6dfbf2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Angry Mob +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.66 + posZ: 14.28 + rotX: 359.95 + rotY: 225.0 + rotZ: 180.06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Innsmouth Shoggoth 01e605.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Innsmouth Shoggoth 01e605.yaml new file mode 100644 index 000000000..6c5239965 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Innsmouth Shoggoth 01e605.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: Monster. Shoggoth. Elite. +DragSelectable: true +GMNotes: '' +GUID: 01e605 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Innsmouth Shoggoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.66 + posZ: 14.28 + rotX: 359.95 + rotY: 225.0 + rotZ: 0.06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Joe Sargent 37a897.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Joe Sargent 37a897.yaml new file mode 100644 index 000000000..bcfcadd6a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Joe Sargent 37a897.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266221 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: Rattletrap Bus Driver +DragSelectable: true +GMNotes: '' +GUID: 37a897 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Joe Sargent +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.66 + posZ: 14.28 + rotX: 359.95 + rotY: 225.0 + rotZ: 0.06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Teachings of the Order 90fdb0.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Teachings of the Order 90fdb0.yaml new file mode 100644 index 000000000..b49231071 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Card Teachings of the Order 90fdb0.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266322 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 90fdb0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Teachings of the Order +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.66 + posZ: 14.28 + rotX: 359.95 + rotY: 225.0 + rotZ: 0.14 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Deck Ravagers from the Deep 98839d.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Deck Ravagers from the Deep 98839d.yaml new file mode 100644 index 000000000..b48178083 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Deck Ravagers from the Deep 98839d.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: d289e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ravager from the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3615484 + posY: 1.486321 + posZ: 23.9282341 + rotX: 359.920135 + rotY: 269.946228 + rotZ: 0.01694729 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: 6b10ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ravager from the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.289106 + posY: 1.490422 + posZ: 23.3092117 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.01687216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 266216 +- 266216 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 98839d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Ravagers from the Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.68 + posZ: 14.28 + rotX: 359.95 + rotY: 225.0 + rotZ: 0.06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Deck Young Deep Ones 6b7fb0.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Deck Young Deep Ones 6b7fb0.yaml new file mode 100644 index 000000000..7adbca126 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Bag Set-aside a45247/Deck Young Deep Ones 6b7fb0.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: cfd69a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.68445253 + posY: 1.49494934 + posZ: 21.6181488 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687299 + 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 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.958818 + posY: 1.52599025 + posZ: 21.1377373 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168979429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 231734 +- 231734 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6b7fb0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Young Deep Ones +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7 + posY: 3.68 + posZ: 14.28 + rotX: 359.95 + rotY: 225.0 + rotZ: 0.06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 457419.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 457419.yaml new file mode 100644 index 000000000..bfc07e3b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 457419.yaml @@ -0,0 +1,98 @@ +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: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365364/801197D43D3A6871F2E52C6C2D8C0F4B14B7EA01/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365506/743F6C3A3016BC5EA07DA7A42105ABE6D428E3EE/ + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b06f0 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: Flood Token + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.398631 + posY: 1.60435748 + posZ: -8.925336 + rotX: 2.32510956e-06 + rotY: 0.0165837 + rotZ: -3.98838756e-06 + scaleX: 0.508209646 + scaleY: 1.0 + scaleZ: 0.508209646 + XmlUI: '' +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/1626320664125339561/95F05D85CCB68168B62DC7CD702500B222A5068A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '457419' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Flood Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.66 + posZ: -15.28 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.58 + scaleY: 0.58 + scaleZ: 0.58 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 47b626.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 47b626.yaml new file mode 100644 index 000000000..8f45fe60b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 47b626.yaml @@ -0,0 +1,98 @@ +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: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365364/801197D43D3A6871F2E52C6C2D8C0F4B14B7EA01/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365506/743F6C3A3016BC5EA07DA7A42105ABE6D428E3EE/ + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b06f0 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: Flood Token + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.398631 + posY: 1.60435748 + posZ: -8.925336 + rotX: 2.32510956e-06 + rotY: 0.0165837 + rotZ: -3.98838756e-06 + scaleX: 0.508209646 + scaleY: 1.0 + scaleZ: 0.508209646 + XmlUI: '' +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/1626320664125339561/95F05D85CCB68168B62DC7CD702500B222A5068A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 47b626 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Flood Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.37 + posY: 1.7 + posZ: 15.19 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.58 + scaleY: 0.58 + scaleZ: 0.58 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 4bec3c.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 4bec3c.yaml new file mode 100644 index 000000000..3b1b7e62d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens 4bec3c.yaml @@ -0,0 +1,98 @@ +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: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365364/801197D43D3A6871F2E52C6C2D8C0F4B14B7EA01/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365506/743F6C3A3016BC5EA07DA7A42105ABE6D428E3EE/ + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b06f0 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: Flood Token + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.398631 + posY: 1.60435748 + posZ: -8.925336 + rotX: 2.32510956e-06 + rotY: 0.0165837 + rotZ: -3.98838756e-06 + scaleX: 0.508209646 + scaleY: 1.0 + scaleZ: 0.508209646 + XmlUI: '' +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/1626320664125339561/95F05D85CCB68168B62DC7CD702500B222A5068A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4bec3c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Flood Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.37 + posY: 1.69 + posZ: -15.28 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.58 + scaleY: 0.58 + scaleZ: 0.58 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens fe6f38.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens fe6f38.yaml new file mode 100644 index 000000000..c8c23e2b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Model_Infinite_Bag Flood Tokens fe6f38.yaml @@ -0,0 +1,98 @@ +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: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365364/801197D43D3A6871F2E52C6C2D8C0F4B14B7EA01/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365506/743F6C3A3016BC5EA07DA7A42105ABE6D428E3EE/ + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b06f0 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: Flood Token + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.398631 + posY: 1.60435748 + posZ: -8.925336 + rotX: 2.32510956e-06 + rotY: 0.0165837 + rotZ: -3.98838756e-06 + scaleX: 0.508209646 + scaleY: 1.0 + scaleZ: 0.508209646 + XmlUI: '' +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/1626320664125339561/95F05D85CCB68168B62DC7CD702500B222A5068A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fe6f38 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Flood Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67 + posZ: 15.19 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.58 + scaleY: 0.58 + scaleZ: 0.58 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_PDF b71c73.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_PDF b71c73.yaml new file mode 100644 index 000000000..d1623e19d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_PDF b71c73.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: http://cloud-3.steamusercontent.com/ugc/1684870715282130059/FEEDC92DC69DEF228C97062DB7A10DA7E8893C64/ +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b71c73 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_PDF +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25 + posY: 1.46 + posZ: -28.01 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile 47aa44.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile 47aa44.yaml new file mode 100644 index 000000000..1150fbe34 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile 47aa44.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125353191/BDEBB5121A07EC12A04E749B335D01A4D4702A43/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125352947/0752FBDD80C0F92FDD27F54549C43F579D1878AB/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 47aa44 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.83 + posY: 1.61 + posZ: 2.32 + rotX: 359.98 + rotY: 0.0 + rotZ: 359.92 + scaleX: 0.55 + scaleY: 1.0 + scaleZ: 0.55 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token 2b06f0.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token 2b06f0.yaml new file mode 100644 index 000000000..d390f8ee6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token 2b06f0.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365364/801197D43D3A6871F2E52C6C2D8C0F4B14B7EA01/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365506/743F6C3A3016BC5EA07DA7A42105ABE6D428E3EE/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2b06f0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Flood Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.89 + posY: 1.63 + posZ: -16.75 + rotX: 359.96 + rotY: 270.02 + rotZ: 1.8 + scaleX: 0.51 + scaleY: 1.0 + scaleZ: 0.51 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token eeb375.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token eeb375.yaml new file mode 100644 index 000000000..0ac0d2722 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token eeb375.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365364/801197D43D3A6871F2E52C6C2D8C0F4B14B7EA01/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365506/743F6C3A3016BC5EA07DA7A42105ABE6D428E3EE/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: eeb375 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Flood Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -37.65 + posY: 1.64 + posZ: -16.73 + rotX: 359.91 + rotY: 270.0 + rotZ: 1.83 + scaleX: 0.51 + scaleY: 1.0 + scaleZ: 0.51 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token fc6896.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token fc6896.yaml new file mode 100644 index 000000000..c90f96acb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile Flood Token fc6896.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365364/801197D43D3A6871F2E52C6C2D8C0F4B14B7EA01/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/1626320664125365506/743F6C3A3016BC5EA07DA7A42105ABE6D428E3EE/ + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fc6896 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: Flood Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.05 + posY: 1.63 + posZ: -16.86 + rotX: 359.93 + rotY: 270.03 + rotZ: 1.58 + scaleX: 0.51 + scaleY: 1.0 + scaleZ: 0.51 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile In Too Deep bbb70a.ttslua b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile In Too Deep bbb70a.ttslua new file mode 100644 index 000000000..74f4e72ef --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile In Too Deep bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'In Too Deep' + +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 Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile In Too Deep bbb70a.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile In Too Deep bbb70a.yaml new file mode 100644 index 000000000..61826cb8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Tile In Too Deep bbb70a.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: 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 +DragSelectable: true +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile In Too Deep bbb70a.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: In Too Deep +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.86 + posY: 1.58 + posZ: -14.84 + rotX: 359.92 + rotY: 270.03 + rotZ: 0.02 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 00d19a.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 00d19a.yaml new file mode 100644 index 000000000..aa6cf66b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 00d19a.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 00d19a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -36.69 + posY: 1.79 + posZ: 11.73 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 026bb9.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 026bb9.yaml new file mode 100644 index 000000000..4634d4a06 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 026bb9.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 026bb9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -29.94 + posY: 1.77 + posZ: -11.61 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 04c355.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 04c355.yaml new file mode 100644 index 000000000..77b0fac62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 04c355.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 04c355 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -30.4 + posY: 1.77 + posZ: -4.19 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 184c04.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 184c04.yaml new file mode 100644 index 000000000..b0bae3119 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 184c04.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 184c04 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -30.19 + posY: 1.77 + posZ: 4.17 + rotX: 359.92 + rotY: 270.03 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 2fa817.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 2fa817.yaml new file mode 100644 index 000000000..01ae57d92 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 2fa817.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2fa817 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -23.49 + posY: 1.77 + posZ: 12.09 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 357354.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 357354.yaml new file mode 100644 index 000000000..3ddcd8bf2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 357354.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '357354' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -24.74 + posY: 1.77 + posZ: 12.49 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 3f3098.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 3f3098.yaml new file mode 100644 index 000000000..fe9a0d624 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 3f3098.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3f3098 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -29.53 + posY: 1.78 + posZ: 10.84 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 46b30a.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 46b30a.yaml new file mode 100644 index 000000000..cce495ddb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 46b30a.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 46b30a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -24.07 + posY: 1.76 + posZ: -3.81 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 567a44.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 567a44.yaml new file mode 100644 index 000000000..fee932552 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 567a44.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 567a44 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -22.62 + posY: 1.76 + posZ: -4.74 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 57ff37.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 57ff37.yaml new file mode 100644 index 000000000..09cd4c68a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 57ff37.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 57ff37 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -24.4 + posY: 1.77 + posZ: 11.2 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 61eee2.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 61eee2.yaml new file mode 100644 index 000000000..f1fac7ec6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 61eee2.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 61eee2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -36.23 + posY: 1.78 + posZ: 3.31 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 7ac282.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 7ac282.yaml new file mode 100644 index 000000000..2eda236b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 7ac282.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7ac282 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -23.73 + posY: 1.76 + posZ: -11.51 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 7e160e.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 7e160e.yaml new file mode 100644 index 000000000..5ac241c6a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 7e160e.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7e160e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -27.09 + posY: 1.77 + posZ: 15.08 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 86e447.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 86e447.yaml new file mode 100644 index 000000000..a442062d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 86e447.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 86e447 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -36.47 + posY: 1.78 + posZ: -3.72 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 8a1786.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 8a1786.yaml new file mode 100644 index 000000000..68e40e096 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 8a1786.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8a1786 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -29.28 + posY: 1.77 + posZ: -3.63 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 8ea37f.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 8ea37f.yaml new file mode 100644 index 000000000..e452769fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token 8ea37f.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8ea37f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -23.65 + posY: 1.77 + posZ: 3.91 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token b228a8.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token b228a8.yaml new file mode 100644 index 000000000..3649d31ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token b228a8.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b228a8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -36.41 + posY: 1.78 + posZ: 4.77 + rotX: 359.92 + rotY: 269.99 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token b6e32d.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token b6e32d.yaml new file mode 100644 index 000000000..014461d78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token b6e32d.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b6e32d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -37.11 + posY: 1.78 + posZ: -12.25 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token d49bfd.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token d49bfd.yaml new file mode 100644 index 000000000..8db983b49 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token d49bfd.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d49bfd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -37.51 + posY: 1.78 + posZ: 4.01 + rotX: 359.92 + rotY: 269.49 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token daee0c.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token daee0c.yaml new file mode 100644 index 000000000..8c1c35cb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token daee0c.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: daee0c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -35.98 + posY: 1.78 + posZ: -11.2 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token e099f7.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token e099f7.yaml new file mode 100644 index 000000000..2227c39e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token e099f7.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e099f7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -29.67 + posY: 1.77 + posZ: 2.95 + rotX: 359.92 + rotY: 268.82 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token e14d4b.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token e14d4b.yaml new file mode 100644 index 000000000..244959912 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token e14d4b.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e14d4b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -22.92 + posY: 1.76 + posZ: -3.07 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token ecc8e5.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token ecc8e5.yaml new file mode 100644 index 000000000..366789c58 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token ecc8e5.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ecc8e5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -23.22 + posY: 1.77 + posZ: 10.73 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token ecff30.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token ecff30.yaml new file mode 100644 index 000000000..39da05911 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Custom_Token ecff30.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + StandUp: false + Thickness: 0.3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/j5v5E3j.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ecff30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Token +Nickname: '' +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -30.8 + posY: 1.78 + posZ: 11.98 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Agenda Deck d3b120.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Agenda Deck d3b120.yaml new file mode 100644 index 000000000..b32225992 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Agenda Deck d3b120.yaml @@ -0,0 +1,230 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Agenda 4 + DragSelectable: true + GMNotes: '' + GUID: 2cbe0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rage of the Deep + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72474456 + posY: 1.59899271 + posZ: 0.3737131 + rotX: 0.0168357231 + rotY: 180.000259 + rotZ: 0.08025752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Agenda 3 + DragSelectable: true + GMNotes: '' + GUID: cea106 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flooded Streets + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.724706 + posY: 1.65326309 + posZ: 0.373320431 + rotX: 0.5870913 + rotY: 180.0069 + rotZ: 0.06611088 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Agenda 2 + DragSelectable: true + GMNotes: '' + GUID: f743bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relentless Tide + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.724717 + posY: 1.68220055 + posZ: 0.37332046 + rotX: 0.016264705 + rotY: 179.9999 + rotZ: 0.07036653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Agenda 1 + DragSelectable: true + GMNotes: '' + GUID: 76323e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Barricaded Streets + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72464442 + posY: 1.6815865 + posZ: 0.373307556 + rotX: 0.0168359522 + rotY: 180.0 + rotZ: 0.0802561343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667806/8019A24BC22954C58F5122DA71F51B098E7ADAEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715278667604/B140A63A090D76716D909151FC53159E56856CC7/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266504 +- 266503 +- 266502 +- 266501 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d3b120 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72 + posY: 1.63 + posZ: 0.37 + rotX: 0.02 + rotY: 180.0 + rotZ: 0.08 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Encounter Deck 0326ec.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Encounter Deck 0326ec.yaml new file mode 100644 index 000000000..be281c3bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Encounter Deck 0326ec.yaml @@ -0,0 +1,1580 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Scheme. + DragSelectable: true + GMNotes: '' + GUID: 0053ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep One Assault + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.8093939 + posY: 1.28976119 + posZ: 82.82988 + rotX: 0.118274957 + rotY: 269.999847 + rotZ: 0.0167728756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Scheme. + DragSelectable: true + GMNotes: '' + GUID: f4291b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep One Assault + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.8725967 + posY: 1.34089947 + posZ: 82.76212 + rotX: 0.118274935 + rotY: 269.999817 + rotZ: 0.01677272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: 8bb970 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lurking Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4213581 + posY: 1.28840673 + posZ: 80.19318 + rotX: 0.101752169 + rotY: 269.999542 + rotZ: 0.0167634282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: 49c47e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lurking Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6065025 + posY: 1.3394593 + posZ: 79.88358 + rotX: 0.101752155 + rotY: 269.999542 + rotZ: 0.016763268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: f0e05f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lurking Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.60603 + posY: 1.366471 + posZ: 79.90241 + rotX: 0.105170369 + rotY: 269.999542 + rotZ: 0.01115249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: 306fc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep One Bull + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0796442 + posY: 1.39762878 + posZ: 83.01213 + rotX: 0.097816065 + rotY: 269.980835 + rotZ: 0.686665833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 553935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 796db7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 553935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 47ed9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + 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: 545720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 670e3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inundated + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1184568 + posY: 1.52199388 + posZ: 29.1757717 + rotX: 359.920135 + rotY: 269.998749 + rotZ: 0.01687424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: e64df3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inundated + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.651763 + posY: 1.57407188 + posZ: 29.2819557 + rotX: 359.920135 + rotY: 269.998749 + rotZ: 0.0168739147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: bbc87f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inundated + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6440439 + posY: 1.59595275 + posZ: 29.3033428 + rotX: 359.9211 + rotY: 269.998749 + rotZ: 0.0158483442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: b8393e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pulled Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2841568 + posY: 1.52185678 + posZ: 27.9260044 + rotX: 359.920135 + rotY: 269.998474 + rotZ: 0.01687395 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 8a5eab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pulled Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2475128 + posY: 1.57452941 + posZ: 28.1084385 + rotX: 359.920135 + rotY: 269.998474 + rotZ: 0.0168737378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Scheme. + DragSelectable: true + GMNotes: '' + GUID: 301cb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep One Invasion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6122284 + posY: 1.83297026 + posZ: 37.1537056 + rotX: 359.952057 + rotY: 270.001526 + rotZ: 180.099625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: daa1e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emerging Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.22023 + posY: 1.52143776 + posZ: 22.0708218 + rotX: 359.920135 + rotY: 269.9983 + rotZ: 0.0168740582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: dc6c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emerging Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9513035 + posY: 1.57356524 + posZ: 21.7861176 + rotX: 359.920135 + rotY: 269.9983 + rotZ: 0.016873518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + DragSelectable: true + GMNotes: '' + GUID: c743cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emerging Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9512663 + posY: 1.60066938 + posZ: 21.78611 + rotX: 359.920715 + rotY: 269.9983 + rotZ: 0.0160693116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 575f1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Riptide + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8102989 + posY: 1.289435 + posZ: 86.00451 + rotX: 0.08488093 + rotY: 269.999969 + rotZ: 0.0167570058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 80645e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Riptide + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1211653 + posY: 1.34094119 + posZ: 85.8429947 + rotX: 0.0848810747 + rotY: 269.999969 + rotZ: 0.0167570654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 425da1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rising Tides + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.06843 + posY: 1.28885233 + posZ: 83.10661 + rotX: 0.08951775 + rotY: 269.999878 + rotZ: 0.0158648919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 560b72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rising Tides + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8898554 + posY: 1.33965409 + posZ: 83.2009354 + rotX: 0.0895175859 + rotY: 269.999878 + rotZ: 0.0158648882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: f367d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Undertow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0193453 + posY: 1.28812623 + posZ: 80.76318 + rotX: 0.08810987 + rotY: 269.9998 + rotZ: 0.016282646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 4344d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Undertow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3592262 + posY: 1.33944142 + posZ: 80.76894 + rotX: 0.08810971 + rotY: 269.9998 + rotZ: 0.0162825752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: bff645 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Furtive Locals + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9167461 + posY: 1.29322946 + posZ: 88.67889 + rotX: 0.0208082665 + rotY: 270.0 + rotZ: 0.0167705175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 361ef8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Furtive Locals + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9876537 + posY: 1.34558451 + posZ: 88.90277 + rotX: 0.0208082441 + rotY: 270.0 + rotZ: 0.0167707019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. Terror. + DragSelectable: true + GMNotes: '' + GUID: 0db0c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Innsmouth Look + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9170408 + posY: 1.28977 + posZ: 86.7585144 + rotX: 0.0865196139 + rotY: 269.9999 + rotZ: 0.0168519132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. Terror. + DragSelectable: true + GMNotes: '' + GUID: 7a223a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Innsmouth Look + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8974714 + posY: 1.34094608 + posZ: 86.71393 + rotX: 0.08651943 + rotY: 269.999939 + rotZ: 0.0168519579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Hybrid. Criminal. + DragSelectable: true + GMNotes: '' + GUID: e0b755 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Innsmouth Troublemaker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0240679 + posY: 1.28977513 + posZ: 86.44582 + rotX: 0.0900193 + rotY: 269.999329 + rotZ: 0.01656051 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Hybrid. Criminal. + DragSelectable: true + GMNotes: '' + GUID: 26dd1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Innsmouth Troublemaker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0463581 + posY: 1.33260107 + posZ: 86.84277 + rotX: 0.090017505 + rotY: 269.9995 + rotZ: 0.0165598355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: c02eff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Syzygy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.3347988 + posY: 1.28726852 + posZ: 85.04262 + rotX: 0.0208085161 + rotY: 270.0 + rotZ: 0.0167710837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: b58ae6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Syzygy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.406848 + posY: 1.31848907 + posZ: 85.04478 + rotX: 0.0208081119 + rotY: 270.000031 + rotZ: 0.01679073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 804b81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tidal Alignment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7027407 + posY: 1.28839183 + posZ: 82.7927 + rotX: 0.08244173 + rotY: 269.9755 + rotZ: 0.01689044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 0e6344 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tidal Alignment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6002455 + posY: 1.32974637 + posZ: 82.7509 + rotX: 0.08244747 + rotY: 269.9755 + rotZ: 0.0168768167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '5457': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '5539': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 369523 +- 369523 +- 369522 +- 369522 +- 369522 +- 369521 +- 553935 +- 553935 +- 545720 +- 545720 +- 545720 +- 545719 +- 545719 +- 545718 +- 545717 +- 545717 +- 545717 +- 369526 +- 369526 +- 369525 +- 369525 +- 369524 +- 369524 +- 369537 +- 369537 +- 369536 +- 369536 +- 369535 +- 369535 +- 369534 +- 369534 +- 369533 +- 369533 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0326ec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93 + posY: 1.77 + posZ: 5.76 + rotX: 359.92 + rotY: 270.0 + rotZ: 180.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Suspects 360107.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Suspects 360107.yaml new file mode 100644 index 000000000..a484c1290 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Model_Bag 3 In Too Deep c3a225/Deck Suspects 360107.yaml @@ -0,0 +1,322 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Change Is upon Him + DragSelectable: true + GMNotes: '' + GUID: 87e88e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Barnabas Marsh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8849287 + posY: 1.49845958 + posZ: 10.2256308 + rotX: 359.340424 + rotY: 269.997742 + rotZ: 0.0171198025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Drunk and Disorderly + DragSelectable: true + GMNotes: '' + GUID: 348f7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zadok Allen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6768465 + posY: 1.55609453 + posZ: 8.935216 + rotX: 0.07987808 + rotY: 269.997559 + rotZ: 359.4248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Disgruntled Dockworker + DragSelectable: true + GMNotes: '' + GUID: 96af0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Robert Friendly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.710096 + posY: 1.6056819 + posZ: 9.222093 + rotX: 359.920135 + rotY: 270.007751 + rotZ: 0.5751861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Proprietress of the Hotel + DragSelectable: true + GMNotes: '' + GUID: 389fda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Othera Gilman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.197248 + posY: 1.48652267 + posZ: 9.632337 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168756321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Bookshop Owner + DragSelectable: true + GMNotes: '' + GUID: 5b9c7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Joyce Little + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.0060644 + posY: 1.483266 + posZ: 7.13651037 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168732535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Wants Out + DragSelectable: true + GMNotes: '' + GUID: ad6f8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brian Burnham + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7399845 + posY: 1.5332582 + posZ: 7.44676971 + rotX: 0.07987619 + rotY: 269.999451 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3695': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663476/95B0BD966B579DEE644A25703730C8729B16AAF8/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 369512 +- 369510 +- 369509 +- 369514 +- 369513 +- 369511 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '360107' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Suspects +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.94 + posY: 1.64 + posZ: 14.67 + rotX: 359.92 + rotY: 270.0 + rotZ: 180.02 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Tile The Innsmouth Conspiracy Campaign Log f40183.yaml b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Tile The Innsmouth Conspiracy Campaign Log f40183.yaml index 1448ad8df..77130708e 100644 --- a/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Tile The Innsmouth Conspiracy Campaign Log f40183.yaml +++ b/unpacked/Custom_Model_Bag The Innsmouth Conspiracy 465aab/Custom_Tile The Innsmouth Conspiracy Campaign Log f40183.yaml @@ -320,12 +320,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -1.46564627 + posX: -1.46563876 posY: 1.4756223 - posZ: -26.9310055 + posZ: -26.9309864 rotX: 359.920135 - rotY: 270.00415 - rotZ: 0.0168660618 + rotY: 270.004181 + rotZ: 0.01686577 scaleX: 6.5 scaleY: 1.0 scaleZ: 6.5 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1.yaml index 8fc78be13..ca21fa6e0 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1.yaml @@ -94,28 +94,28 @@ ContainedObjects: 578e97.yaml' - !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml' -- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching - Storm 0fad66.yaml' - !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland 39916d.yaml' - !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching + Storm 0fad66.yaml' - !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml' -- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths - of Lunacy 4c173f.yaml' -- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of - the Abyss ee987d.yaml' -- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the - Rougarou db7039.yaml' - !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths + of Lunacy 4c173f.yaml' - !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml' -- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die - 9e73fa.yaml' - !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die + 9e73fa.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the + Rougarou db7039.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of + the Abyss ee987d.yaml' CustomMesh: CastShadows: true ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj @@ -144,7 +144,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag The Side Missions 2d16e1.ttslua' -LuaScriptState: '{"ml":[]}' +LuaScriptState: '{"ml":{"00688d":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270,"z":0.0169}},"00dc67":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"010d85":{"lock":false,"pos":{"x":-3.9274,"y":1.7344,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"011e57":{"lock":false,"pos":{"x":7.4136,"y":1.5493,"z":-1.6503},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"01d780":{"lock":false,"pos":{"x":12.2503604888916,"y":1.45853757858276,"z":-20.0136280059814},"rot":{"x":359.920135498047,"y":270,"z":0.0168733466416597}},"023e21":{"lock":false,"pos":{"x":-3.9277,"y":1.6752,"z":5.7572},"rot":{"x":359.9197,"y":269.9987,"z":180.0168}},"0251e6":{"lock":false,"pos":{"x":-58.7691,"y":1.7417,"z":22.2313},"rot":{"x":359.9201,"y":269.9973,"z":0.0169}},"025ede":{"lock":false,"pos":{"x":-2.7253,"y":1.6208,"z":0.3733},"rot":{"x":0.0168,"y":180.0004,"z":0.0803}},"02e7d2":{"lock":false,"pos":{"x":11.9735,"y":1.5323,"z":-8.617},"rot":{"x":0.0799,"y":90.0284,"z":359.9832}},"033daa":{"lock":false,"pos":{"x":-8.17570114135742,"y":1.60660123825073,"z":0.348499983549118},"rot":{"x":359.921447753906,"y":269.999481201172,"z":0.0163932610303164}},"0368c1":{"lock":false,"pos":{"x":-17.1201,"y":1.619,"z":-0.03},"rot":{"x":359.9202,"y":270.0046,"z":0.0167}},"03fc1c":{"lock":false,"pos":{"x":-2.7246,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}},"042d44":{"lock":false,"pos":{"x":-2.6885,"y":1.6239,"z":-5.0485},"rot":{"x":359.9197,"y":270.0006,"z":0.0168}},"0488ba":{"lock":false,"pos":{"x":-30.2242,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"04fdb8":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":270.0046,"z":0.0168}},"05109d":{"lock":false,"pos":{"x":-3.12649917602539,"y":1.12493538856506,"z":-50.2695999145508},"rot":{"x":359.979156494141,"y":89.9994506835938,"z":359.983215332031}},"057b7e":{"lock":false,"pos":{"x":-23.6764,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":-0.0008,"z":359.9201}},"058b91":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"05dd0a":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"0679c6":{"lock":false,"pos":{"x":-11.8399,"y":1.6678,"z":0.2602},"rot":{"x":359.9201,"y":269.988,"z":0.0169}},"06d29e":{"lock":false,"pos":{"x":-2.7248,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":179.9995,"z":0.0803}},"06f882":{"lock":true,"pos":{"x":-3.769,"y":4.1352,"z":5.6708},"rot":{"x":0,"y":90,"z":0}},"07bfca":{"lock":false,"pos":{"x":-11.1535,"y":1.6509,"z":1.3602},"rot":{"x":359.9201,"y":269.9977,"z":0.0169}},"0916b6":{"lock":false,"pos":{"x":12.2515,"y":1.4609,"z":-12.0147},"rot":{"x":359.9201,"y":270.0068,"z":0.0169}},"0967ea":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9941,"z":0.0169}},"0a7a51":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"0aa185":{"lock":false,"pos":{"x":-1.46660375595093,"y":1.47562384605408,"z":-26.9305057525635},"rot":{"x":359.920135498047,"y":269.996429443359,"z":0.0168766714632511}},"0acbd8":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"0b6540":{"lock":false,"pos":{"x":-3.9276,"y":1.7299,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"0c01a1":{"lock":false,"pos":{"x":1.2422,"y":1.3947,"z":0.1206},"rot":{"x":359.9832,"y":0.0007,"z":359.9197}},"0ce6bb":{"lock":false,"pos":{"x":-12.6932,"y":1.6812,"z":6.9294},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"0d0ca8":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.6292097568512,"z":3.86000061035156},"rot":{"x":359.920104980469,"y":269.999908447266,"z":180.016830444336}},"0d7898":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"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}},"0df520":{"lock":false,"pos":{"x":-11.4769,"y":1.6694,"z":7.3277},"rot":{"x":359.9201,"y":269.9876,"z":0.0169}},"0e52c8":{"lock":false,"pos":{"x":-36.7731,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"0e6c8c":{"lock":false,"pos":{"x":-3.9277,"y":1.6971,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"0eb577":{"lock":false,"pos":{"x":-3.9275,"y":1.7611,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"0f2ffc":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0169,"y":179.9837,"z":0.0803}},"0f3e93":{"lock":false,"pos":{"x":-26.9859,"y":1.6191,"z":-0.0135},"rot":{"x":359.9201,"y":269.994,"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}},"102272":{"lock":false,"pos":{"x":-10.2894,"y":1.6717,"z":2.0208},"rot":{"x":359.9201,"y":270.0023,"z":0.0169}},"1078c7":{"lock":false,"pos":{"x":1.6964,"y":1.6699,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":180.0686}},"109907":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9846,"z":180.0169}},"11429d":{"lock":false,"pos":{"x":9.5267,"y":1.2845,"z":4.5868},"rot":{"x":0.0799,"y":89.9987,"z":359.9831}},"11a797":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"12d492":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"13bc7d":{"lock":true,"pos":{"x":-33.1967010498047,"y":1.61310005187988,"z":30.128999710083},"rot":{"x":359.983093261719,"y":0,"z":359.920104980469}},"13c965":{"lock":false,"pos":{"x":-3.9276,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":269.9855,"z":180.0168}},"13ed7d":{"lock":false,"pos":{"x":12.2512035369873,"y":1.28292536735535,"z":11.9865989685059},"rot":{"x":0.0799588114023209,"y":89.9949340820313,"z":359.983093261719}},"13f15a":{"lock":false,"pos":{"x":3.8578,"y":1.414,"z":50.4456},"rot":{"x":0.0002,"y":270.0157,"z":359.3563}},"141409":{"lock":false,"pos":{"x":-30.2241,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":269.9963,"z":180.0169}},"147dea":{"lock":false,"pos":{"x":9.4431,"y":1.2854,"z":7.085},"rot":{"x":0.0799,"y":89.9987,"z":359.9831}},"149816":{"lock":false,"pos":{"x":-30.2241,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":-0.0009,"z":359.9201}},"149deb":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"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}},"150603":{"lock":false,"pos":{"x":-4.4609,"y":1.5834,"z":-14.7893},"rot":{"x":359.9197,"y":269.9951,"z":0.0168}},"15b639":{"lock":false,"pos":{"x":-2.68849968910217,"y":1.61911654472351,"z":-5.04850006103516},"rot":{"x":0.01681237667799,"y":180.0166015625,"z":0.0802607834339142}},"16ceab":{"lock":false,"pos":{"x":12.2508,"y":1.4684,"z":13.4375},"rot":{"x":359.9201,"y":269.9978,"z":0.0169}},"1708ee":{"lock":false,"pos":{"x":8.985,"y":1.2765,"z":-25.4264},"rot":{"x":359.9767,"y":355.3276,"z":359.9217}},"17807e":{"lock":false,"pos":{"x":-23.6766,"y":1.6314,"z":11.46},"rot":{"x":359.9201,"y":269.9978,"z":180.0168}},"18aa54":{"lock":false,"pos":{"x":12.2496,"y":1.4727,"z":27.9865},"rot":{"x":359.9201,"y":270.0681,"z":0.0168}},"1a3caf":{"lock":false,"pos":{"x":-3.9559,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}},"1a4e64":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9746,"z":0.0169}},"1aa87a":{"lock":false,"pos":{"x":-30.2245,"y":1.704,"z":7.5705},"rot":{"x":359.9201,"y":269.9915,"z":180.0169}},"1ac3ac":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0313,"z":0.0168}},"1ae75c":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"1ae977":{"lock":false,"pos":{"x":-33.4282,"y":1.6258,"z":-7.7062},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"1af6e8":{"lock":false,"pos":{"x":-30.2241,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"1c6049":{"lock":false,"pos":{"x":-2.7315,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":269.9742,"z":0.0169}},"1cc5a6":{"lock":false,"pos":{"x":12.2487,"y":1.29,"z":35.9869},"rot":{"x":359.9831,"y":0.0021,"z":359.92}},"1d2e12":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.0003,"z":180.0168}},"1d53b9":{"lock":false,"pos":{"x":-27.1699,"y":1.6203,"z":3.4176},"rot":{"x":359.9316,"y":315.0006,"z":359.9554}},"1dd120":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"1e00a9":{"lock":false,"pos":{"x":9.3117,"y":1.285,"z":4.9883},"rot":{"x":0.0799,"y":89.9803,"z":359.9831}},"1e3806":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"1e3988":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"1e7961":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9203,"y":270,"z":0.016}},"1e7f1b":{"lock":false,"pos":{"x":-14.3835,"y":1.6303,"z":-0.2141},"rot":{"x":359.3509,"y":269.9973,"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}},"1ee2a5":{"lock":false,"pos":{"x":-33.3772,"y":1.628,"z":-0.0078},"rot":{"x":0.0799,"y":90.0005,"z":359.9831}},"1f4db7":{"lock":false,"pos":{"x":-7.7139,"y":1.7478,"z":15.225},"rot":{"x":359.92,"y":270.0018,"z":180.0169}},"1fae15":{"lock":false,"pos":{"x":12.1805038452148,"y":1.27355456352234,"z":-20.1693019866943},"rot":{"x":0.0799674317240715,"y":89.9949417114258,"z":359.983062744141}},"201524":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0168,"y":180.0351,"z":0.08}},"20314c":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.0799}},"20982e":{"lock":false,"pos":{"x":8.3104,"y":1.2871,"z":7.5999},"rot":{"x":0.08,"y":89.9985,"z":359.9831}},"21c977":{"lock":false,"pos":{"x":-21.0584,"y":1.6119,"z":3.505},"rot":{"x":359.9554,"y":225,"z":0.0684}},"21f7a4":{"lock":false,"pos":{"x":-26.8493995666504,"y":1.61939942836761,"z":1.71710026264191},"rot":{"x":359.939239501953,"y":239.997482299805,"z":0.0545193664729595}},"222582":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"225690":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"2261a5":{"lock":false,"pos":{"x":-4.7182,"y":1.5837,"z":-14.7432},"rot":{"x":359.9197,"y":270.0041,"z":0.0168}},"22cf16":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9969,"z":0.0168}},"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}},"23bbd8":{"lock":false,"pos":{"x":-27.2865,"y":1.6195,"z":-0.0152},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"23d608":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0486},"rot":{"x":359.9197,"y":269.9854,"z":0.0169}},"23dd51":{"lock":false,"pos":{"x":12.2498416900635,"y":1.46560573577881,"z":3.98638510704041},"rot":{"x":359.920135498047,"y":269.999908447266,"z":0.0168732777237892}},"245765":{"lock":false,"pos":{"x":-11.097,"y":1.6708,"z":13.7077},"rot":{"x":359.9201,"y":269.9857,"z":0.0169}},"245b8d":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"24c385":{"lock":false,"pos":{"x":11.813,"y":1.4648,"z":-0.6861},"rot":{"x":359.9201,"y":270.0074,"z":0.0169}},"24e5eb":{"lock":false,"pos":{"x":-5.6029,"y":1.5487,"z":23.9983},"rot":{"x":359.9201,"y":270.0043,"z":359.5229}},"256aa6":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"259b7b":{"lock":false,"pos":{"x":-20.746,"y":1.685,"z":-0.0446},"rot":{"x":359.9201,"y":270.0016,"z":180.0169}},"261874":{"lock":false,"pos":{"x":-17.1201,"y":1.6144,"z":-15.28},"rot":{"x":359.9201,"y":269.9753,"z":0.0169}},"266dcb":{"lock":false,"pos":{"x":8.1241,"y":1.2846,"z":-1.7036},"rot":{"x":0.08,"y":89.9962,"z":359.9831}},"267216":{"lock":false,"pos":{"x":-12.2715015411377,"y":1.49063980579376,"z":-27.0919055938721},"rot":{"x":359.920135498047,"y":270.001373291016,"z":0.0168702155351639}},"268bd8":{"lock":false,"pos":{"x":-30.2243,"y":1.6937,"z":-15.28},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"26b589":{"lock":false,"pos":{"x":-2.7247,"y":1.658,"z":0.3733},"rot":{"x":359.9198,"y":269.9589,"z":0.0169}},"271ce2":{"lock":false,"pos":{"x":-4.3628,"y":1.5831,"z":-15.1267},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"27bf6a":{"lock":false,"pos":{"x":-10.5675,"y":1.6537,"z":13.5759},"rot":{"x":359.9201,"y":270.0211,"z":0.0168}},"27dc65":{"lock":false,"pos":{"x":-20.5971,"y":1.6123,"z":7.2097},"rot":{"x":359.9201,"y":269.993,"z":0.0169}},"28272f":{"lock":false,"pos":{"x":-27.0195,"y":1.6235,"z":14.5832},"rot":{"x":359.9201,"y":270.0063,"z":0.0169}},"286579":{"lock":false,"pos":{"x":12.2487,"y":1.2782,"z":-4.0135},"rot":{"x":0.08,"y":90.0003,"z":359.9831}},"2889f0":{"lock":false,"pos":{"x":9.5686,"y":1.2858,"z":9.0951},"rot":{"x":0.0799,"y":89.9924,"z":359.9831}},"28cca1":{"lock":false,"pos":{"x":-2.6882,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":179.9995,"z":0.0803}},"299ea1":{"lock":false,"pos":{"x":-30.223,"y":1.6982,"z":-0.0301},"rot":{"x":359.9201,"y":270.024,"z":180.0168}},"29a427":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":-0.0032,"z":359.9201}},"29d7e2":{"lock":false,"pos":{"x":-15.5985,"y":1.8209,"z":0.017},"rot":{"x":359.8887,"y":269.9785,"z":0.0184}},"2ab9ac":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"2bd90b":{"lock":false,"pos":{"x":12.2499008178711,"y":1.47031700611115,"z":19.9864044189453},"rot":{"x":359.920135498047,"y":269.998413085938,"z":0.0168759748339653}},"2c792a":{"lock":false,"pos":{"x":-34.0171,"y":1.6278,"z":-3.8093},"rot":{"x":0.0684,"y":134.9883,"z":0.0445}},"2cea4e":{"lock":false,"pos":{"x":66.0026016235352,"y":1.11109709739685,"z":-58.8017997741699},"rot":{"x":359.979156494141,"y":89.9906921386719,"z":359.983215332031}},"2d17c9":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"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}},"2e4956":{"lock":false,"pos":{"x":-11.6656,"y":1.6551,"z":9.0735},"rot":{"x":359.9201,"y":269.9792,"z":0.0169}},"2e887e":{"lock":false,"pos":{"x":-3.9083,"y":1.5825,"z":-15.1234},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"2e8f0a":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9843,"z":0.0169}},"2ebcda":{"lock":false,"pos":{"x":12.2489032745361,"y":1.46325099468231,"z":-4.01340055465698},"rot":{"x":359.920104980469,"y":270.041198730469,"z":0.0168166663497686}},"2ec188":{"lock":false,"pos":{"x":12.2495,"y":1.2688,"z":-36.0139},"rot":{"x":359.9831,"y":-0.0057,"z":359.92}},"2ec534":{"lock":false,"pos":{"x":-12.3654,"y":1.6721,"z":11.366},"rot":{"x":0.0799,"y":90,"z":359.9831}},"2f12bf":{"lock":false,"pos":{"x":-8.79560089111328,"y":1.60410356521606,"z":-11.0351009368896},"rot":{"x":359.921997070313,"y":270.050109863281,"z":0.0166930817067623}},"2f4093":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9995,"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}},"309b74":{"lock":false,"pos":{"x":-12.4322,"y":1.6796,"z":7.3153},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"30c8b6":{"lock":false,"pos":{"x":-20.4245,"y":1.6099,"z":-0.3109},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"3106e6":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"313523":{"lock":false,"pos":{"x":10.762,"y":1.4665,"z":-0.0039},"rot":{"x":359.9201,"y":270.0055,"z":0.0169}},"31a93a":{"lock":false,"pos":{"x":8.9743,"y":1.2844,"z":1.3267},"rot":{"x":0.0799,"y":89.9966,"z":359.9831}},"32039e":{"lock":false,"pos":{"x":12.2498016357422,"y":1.4608941078186,"z":-12.0138006210327},"rot":{"x":359.920135498047,"y":270.007476806641,"z":0.0168635416775942}},"3210d6":{"lock":false,"pos":{"x":-27.0934,"y":1.6172,"z":-7.2278},"rot":{"x":359.9201,"y":269.9999,"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}},"33116d":{"lock":false,"pos":{"x":-27.119,"y":1.6184,"z":-3.2752},"rot":{"x":0.0446,"y":44.9999,"z":359.9316}},"336335":{"lock":false,"pos":{"x":-23.6765,"y":1.6828,"z":-11.51},"rot":{"x":359.9201,"y":269.9848,"z":0.0169}},"33b200":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.9997,"z":0.0168}},"35c492":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9977,"z":0.0799}},"3671bf":{"lock":false,"pos":{"x":9.0068,"y":1.2755,"z":-28.7444},"rot":{"x":359.9831,"y":0.001,"z":359.92}},"368ca7":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":359.9832,"y":-0.0001,"z":359.9197}},"370ae5":{"lock":false,"pos":{"x":7.3549,"y":1.5428,"z":0.9084},"rot":{"x":359.9201,"y":270,"z":0.0169}},"37c889":{"lock":false,"pos":{"x":-3.9559,"y":1.6585,"z":-10.4409},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"37ec51":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9792,"z":0.0169}},"383672":{"lock":false,"pos":{"x":-23.6765,"y":1.6851,"z":-3.83},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"38fcc6":{"lock":false,"pos":{"x":9.0367,"y":1.2744,"z":-32.2131},"rot":{"x":359.9832,"y":0.0001,"z":359.92}},"3a3b5a":{"lock":false,"pos":{"x":8.159,"y":1.286,"z":2.9166},"rot":{"x":0.08,"y":89.9925,"z":359.9831}},"3b1e55":{"lock":false,"pos":{"x":-9.6032,"y":1.5034,"z":28.8126},"rot":{"x":359.9201,"y":269.9945,"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}},"3ba2fb":{"lock":false,"pos":{"x":-30.2244,"y":1.6909,"z":-15.28},"rot":{"x":359.9201,"y":269.9962,"z":0.0169}},"3ba881":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"3be6e8":{"lock":false,"pos":{"x":-10.0797,"y":1.674,"z":-0.4023},"rot":{"x":359.9201,"y":269.9863,"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}},"3c4300":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"3c6d68":{"lock":false,"pos":{"x":-11.7638,"y":1.6337,"z":-14.9715},"rot":{"x":359.9201,"y":270.0002,"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}},"3d2a1a":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"3d9a8b":{"lock":false,"pos":{"x":-22.2198,"y":1.7339,"z":-7.7092},"rot":{"x":0.0792,"y":269.9715,"z":359.9832}},"3da6dd":{"lock":false,"pos":{"x":12.2621040344238,"y":1.27820038795471,"z":-4.00930261611938},"rot":{"x":0.0799657329916954,"y":89.9984359741211,"z":359.983093261719}},"3dc34f":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9974,"z":0.0168}},"3eef2e":{"lock":false,"pos":{"x":-9.6732,"y":1.6648,"z":0.0646},"rot":{"x":359.9201,"y":269.9858,"z":0.0169}},"3fb8ed":{"lock":false,"pos":{"x":-2.68849992752075,"y":1.62393057346344,"z":-5.04850149154663},"rot":{"x":359.919738769531,"y":270.000061035156,"z":0.0168369449675083}},"4011a5":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9961,"z":180.0169}},"4027ed":{"lock":false,"pos":{"x":-30.2245006561279,"y":1.62473559379578,"z":3.86010050773621},"rot":{"x":0.0168600361794233,"y":179.98503112793,"z":0.0799304693937302}},"4076cd":{"lock":false,"pos":{"x":12.2501,"y":1.4727,"z":27.9864},"rot":{"x":359.9201,"y":269.9268,"z":0.017}},"407732":{"lock":false,"pos":{"x":-9.7271,"y":1.6676,"z":-0.255},"rot":{"x":359.9201,"y":269.9876,"z":0.0169}},"40f354":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"43390e":{"lock":false,"pos":{"x":-25.129,"y":1.809,"z":-1.3516},"rot":{"x":359.9271,"y":270.0207,"z":6.3789}},"4339b6":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0055,"z":0.0168}},"4369ca":{"lock":false,"pos":{"x":-20.9201,"y":1.6118,"z":3.8653},"rot":{"x":359.9747,"y":210,"z":0.0776}},"43d027":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.0301},"rot":{"x":359.9201,"y":269.9807,"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}},"44b0c5":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"4591d4":{"lock":false,"pos":{"x":-20.7985,"y":1.615,"z":15.1153},"rot":{"x":359.9201,"y":270.0109,"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}},"45a6ec":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"45ae28":{"lock":false,"pos":{"x":-9.3921,"y":1.5611,"z":-27.1341},"rot":{"x":359.9201,"y":270,"z":180.0169}},"4667f1":{"lock":false,"pos":{"x":-27.2752,"y":1.6209,"z":4.5605},"rot":{"x":359.9316,"y":315,"z":359.9554}},"469d58":{"lock":false,"pos":{"x":-11.9576,"y":1.6717,"z":3.1538},"rot":{"x":359.9201,"y":269.9781,"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}},"46ead9":{"lock":false,"pos":{"x":-31.7026,"y":1.743,"z":-7.7614},"rot":{"x":0.081,"y":270.0021,"z":359.9834}},"4736d9":{"lock":false,"pos":{"x":-10.0405,"y":1.5945,"z":-3.243},"rot":{"x":359.9201,"y":270.0059,"z":0.0169}},"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}},"480756":{"lock":false,"pos":{"x":12.2534,"y":1.4727,"z":28.0062},"rot":{"x":359.9201,"y":269.9944,"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}},"49232a":{"lock":false,"pos":{"x":-26.9264,"y":1.619,"z":-0.0365},"rot":{"x":359.9201,"y":269.9999,"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}},"4a7540":{"lock":false,"pos":{"x":-3.9273,"y":1.7925,"z":5.7571},"rot":{"x":359.9197,"y":270.0006,"z":180.0168}},"4aaa9f":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9832,"y":0.0095,"z":359.92}},"4add31":{"lock":false,"pos":{"x":-23.6765022277832,"y":1.65464842319489,"z":-0.0299997963011265},"rot":{"x":359.920104980469,"y":270.000030517578,"z":0.0168411564081907}},"4b81f6":{"lock":false,"pos":{"x":-3.8815,"y":1.5826,"z":-14.612},"rot":{"x":359.9197,"y":270.0021,"z":0.0168}},"4c07bf":{"lock":false,"pos":{"x":12.2919034957886,"y":1.27108502388,"z":-28.030704498291},"rot":{"x":0.0799620524048805,"y":90.0000457763672,"z":359.983093261719}},"4c173f":{"lock":false,"pos":{"x":12.2495775222778,"y":1.463250041008,"z":-4.01364850997925},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168728176504374}},"4c2b84":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0,"z":359.92}},"4c5c55":{"lock":false,"pos":{"x":8.0489,"y":1.2874,"z":7.1029},"rot":{"x":0.0799,"y":89.9962,"z":359.9831}},"4c7aff":{"lock":false,"pos":{"x":1.6966,"y":1.6584,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"4cc43d":{"lock":false,"pos":{"x":-3.9274,"y":1.7925,"z":5.7571},"rot":{"x":359.9197,"y":269.9698,"z":180.0169}},"4d3553":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9847,"z":359.9201}},"4d5e5f":{"lock":false,"pos":{"x":-2.6885,"y":1.6143,"z":-5.0485},"rot":{"x":359.9197,"y":269.9982,"z":0.0168}},"4d6544":{"lock":false,"pos":{"x":7.9998,"y":1.282,"z":-11.3677},"rot":{"x":359.92,"y":270.0005,"z":0.0169}},"4dc9bc":{"lock":false,"pos":{"x":-23.6766,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":270.0023,"z":180.0168}},"4dee5a":{"lock":false,"pos":{"x":12.249457359314,"y":1.45618319511414,"z":-28.0136260986328},"rot":{"x":359.920135498047,"y":269.999969482422,"z":0.016874210909009}},"4e3390":{"lock":false,"pos":{"x":-13.0308,"y":1.6899,"z":7.2677},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"4e82c5":{"lock":false,"pos":{"x":-36.7735,"y":1.7131,"z":7.5705},"rot":{"x":359.9201,"y":269.993,"z":180.0169}},"4ed173":{"lock":false,"pos":{"x":-3.9276,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":269.9888,"z":180.0168}},"4eeeb3":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"4f0a6b":{"lock":false,"pos":{"x":-19.6594,"y":1.61,"z":3.6336},"rot":{"x":0.0446,"y":45,"z":359.9316}},"4f944f":{"lock":false,"pos":{"x":12.2503,"y":1.4658,"z":4.6877},"rot":{"x":359.9201,"y":270.0047,"z":0.0169}},"4f9d72":{"lock":false,"pos":{"x":-2.72469973564148,"y":1.59899258613586,"z":0.37330025434494},"rot":{"x":0.0168360415846109,"y":180,"z":0.0802551060914993}},"4fa9f9":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"505e6c":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"50caf4":{"lock":false,"pos":{"x":-3.9559,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"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}},"50ffd3":{"lock":false,"pos":{"x":-23.6765,"y":1.6902,"z":3.8601},"rot":{"x":359.9201,"y":270.0026,"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}},"51527f":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9985,"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}},"51fbbc":{"lock":false,"pos":{"x":12.2501020431519,"y":1.4726722240448,"z":27.9864044189453},"rot":{"x":359.920135498047,"y":269.995666503906,"z":0.0168801005929708}},"520889":{"lock":false,"pos":{"x":-3.8323,"y":1.5826,"z":-14.4151},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"526ff9":{"lock":false,"pos":{"x":9.7361,"y":1.2851,"z":7.604},"rot":{"x":0.0799,"y":89.999,"z":359.9831}},"52d102":{"lock":false,"pos":{"x":12.2132043838501,"y":1.27584600448608,"z":-12.2319049835205},"rot":{"x":0.0799582898616791,"y":89.9938659667969,"z":359.983093261719}},"54707a":{"lock":false,"pos":{"x":-4.0348,"y":1.5826,"z":-15.3238},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"5660ef":{"lock":false,"pos":{"x":-30.2242183685303,"y":1.64166986942291,"z":15.1899843215942},"rot":{"x":359.920104980469,"y":270.001068115234,"z":0.0168381482362747}},"567db0":{"lock":false,"pos":{"x":-3.974,"y":1.5826,"z":-15.0374},"rot":{"x":359.9197,"y":270.0023,"z":0.0168}},"56a08b":{"lock":false,"pos":{"x":-4.1,"y":1.5829,"z":-14.7352},"rot":{"x":359.9197,"y":270.0026,"z":0.0168}},"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}},"5a9b00":{"lock":false,"pos":{"x":-17.1198,"y":1.6754,"z":-15.2785},"rot":{"x":359.9201,"y":270.0052,"z":180.0169}},"5abb04":{"lock":false,"pos":{"x":-23.6766,"y":1.6156,"z":3.86},"rot":{"x":359.9832,"y":-0.0044,"z":359.92}},"5b3ac7":{"lock":false,"pos":{"x":9.9267,"y":1.2833,"z":1.7477},"rot":{"x":0.0799,"y":89.9971,"z":359.9831}},"5bb7d0":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9953,"z":180.0169}},"5bd64c":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.5702},"rot":{"x":359.9201,"y":270.0232,"z":180.0168}},"5ca1a9":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9848,"z":359.9201}},"5d070a":{"lock":false,"pos":{"x":-30.2242,"y":1.6203,"z":-11.51},"rot":{"x":359.9832,"y":0.0096,"z":359.9201}},"5d0fdd":{"lock":false,"pos":{"x":-23.6766,"y":1.6846,"z":-15.28},"rot":{"x":359.9201,"y":270.005,"z":180.0169}},"5d637f":{"lock":false,"pos":{"x":-2.1685,"y":1.493,"z":28.7958},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"5e4e43":{"lock":false,"pos":{"x":-13.2968,"y":1.6723,"z":-7.7574},"rot":{"x":359.9201,"y":270.028,"z":180.0168}},"5e7e07":{"lock":false,"pos":{"x":-23.6766,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.0272,"z":180.0168}},"5ee55d":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9988,"z":0.0169}},"5f0185":{"lock":false,"pos":{"x":-36.7732,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9952,"z":0.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}},"616612":{"lock":false,"pos":{"x":-33.8841,"y":1.6275,"z":-4.2381},"rot":{"x":0.0446,"y":45,"z":359.9316}},"61801e":{"lock":false,"pos":{"x":12.1700048446655,"y":1.28535795211792,"z":19.8675079345703},"rot":{"x":0.0799623876810074,"y":89.996826171875,"z":359.983093261719}},"61a21b":{"lock":false,"pos":{"x":-20.5245,"y":1.6101,"z":-0.2141},"rot":{"x":359.9201,"y":269.8899,"z":0.0171}},"61b186":{"lock":false,"pos":{"x":-11.155,"y":1.6791,"z":7.1548},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"62b3ab":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9855,"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}},"634aa3":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"641bdb":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"643870":{"lock":false,"pos":{"x":-20.1546,"y":1.6096,"z":0.0507},"rot":{"x":359.9201,"y":269.9931,"z":0.0169}},"64ad17":{"lock":false,"pos":{"x":12.2503,"y":1.4585,"z":-20.0136},"rot":{"x":359.9201,"y":269.9914,"z":0.0169}},"64b00f":{"lock":false,"pos":{"x":-17.1199,"y":1.6223,"z":11.4595},"rot":{"x":359.9201,"y":269.9901,"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}},"65aae9":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9969,"z":180.0169}},"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}},"66dad0":{"lock":true,"pos":{"x":-58.557300567627,"y":1.69340002536774,"z":-18.8325004577637},"rot":{"x":359.920104980469,"y":269.999908447266,"z":0.0169000010937452}},"6791fd":{"lock":false,"pos":{"x":1.6969,"y":1.5583,"z":14.2784},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"67cf63":{"lock":false,"pos":{"x":-12.1989,"y":1.522,"z":33.707},"rot":{"x":359.9201,"y":269.9902,"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}},"686672":{"lock":false,"pos":{"x":-36.7732,"y":1.7067,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"68ba2e":{"lock":false,"pos":{"x":-26.8859,"y":1.6172,"z":-6.0034},"rot":{"x":359.9554,"y":224.9895,"z":0.0684}},"68ca42":{"lock":false,"pos":{"x":-3.3874,"y":1.3969,"z":-14.6273},"rot":{"x":359.9832,"y":-0.0008,"z":359.9196}},"68e1d9":{"lock":false,"pos":{"x":-10.0449,"y":1.5965,"z":3.4829},"rot":{"x":359.9201,"y":269.9974,"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}},"6a72fc":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9945,"z":0.0169}},"6a9431":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0034,"z":0.0803}},"6aa57e":{"lock":false,"pos":{"x":-30.2244,"y":1.6954,"z":-0.0298},"rot":{"x":359.9207,"y":269.989,"z":0.0183}},"6bbd29":{"lock":false,"pos":{"x":-9.9085,"y":1.6664,"z":1.7308},"rot":{"x":359.9201,"y":269.9864,"z":0.0169}},"6bc393":{"lock":false,"pos":{"x":-30.2243,"y":1.7027,"z":15.19},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"6c3b6c":{"lock":false,"pos":{"x":-17.120002746582,"y":1.6189227104187,"z":-0.0298999939113855},"rot":{"x":359.920104980469,"y":269.9970703125,"z":0.0167545769363642}},"6ca52c":{"lock":false,"pos":{"x":10.1258,"y":1.283,"z":1.8531},"rot":{"x":0.0799,"y":89.9977,"z":359.9831}},"6cb6e7":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":-0.0006,"z":359.9201}},"6d8dad":{"lock":false,"pos":{"x":9.7158,"y":1.2818,"z":-4.1308},"rot":{"x":0.0799,"y":89.9964,"z":359.9831}},"6dca3e":{"lock":false,"pos":{"x":-2.7246,"y":1.6551,"z":0.3736},"rot":{"x":359.9197,"y":269.9846,"z":0.0169}},"6e0236":{"lock":false,"pos":{"x":9.3625,"y":1.284,"z":1.3791},"rot":{"x":0.0799,"y":89.9956,"z":359.9831}},"6e4a78":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0003,"z":359.9201}},"6f1e9e":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0169,"y":179.9695,"z":0.0802}},"6f1efa":{"lock":false,"pos":{"x":-36.7733,"y":1.705,"z":-7.7},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"6f2827":{"lock":false,"pos":{"x":-3.9277,"y":1.7664,"z":5.7571},"rot":{"x":359.9197,"y":269.9933,"z":180.0168}},"6f54e2":{"lock":false,"pos":{"x":-11.3147,"y":1.6797,"z":13.0979},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"6f9258":{"lock":false,"pos":{"x":-20.9414,"y":1.6117,"z":3.308},"rot":{"x":0.0776,"y":120,"z":0.0253}},"709830":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":-0.0046,"z":359.9201}},"7112e4":{"lock":false,"pos":{"x":-36.7732009887695,"y":1.64632904529572,"z":-0.0299993120133877},"rot":{"x":359.920104980469,"y":269.999664306641,"z":180.016830444336}},"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":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":0.0168,"y":180.0342,"z":0.0799}},"72ab92":{"lock":false,"pos":{"x":12.25013256073,"y":1.4726722240448,"z":27.986400604248},"rot":{"x":359.920135498047,"y":270,"z":0.0168740078806877}},"7521a9":{"lock":false,"pos":{"x":-3.5895,"y":1.5822,"z":-14.7357},"rot":{"x":359.9197,"y":270.0013,"z":0.0168}},"759ab6":{"lock":false,"pos":{"x":-20.2426,"y":1.6075,"z":-7.7066},"rot":{"x":0.0799,"y":90.0007,"z":359.9831}},"75a1d7":{"lock":false,"pos":{"x":-3.92820000648499,"y":1.76844918727875,"z":5.75600099563599},"rot":{"x":359.919738769531,"y":270.007110595703,"z":180.016815185547}},"767864":{"lock":false,"pos":{"x":-6.91008472442627,"y":1.61784970760345,"z":-13.1002960205078},"rot":{"x":359.919738769531,"y":269.999938964844,"z":0.0168399773538113}},"770eca":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"789378":{"lock":false,"pos":{"x":-1.9242,"y":1.4772,"z":-23.8097},"rot":{"x":359.9201,"y":270,"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}},"794376":{"lock":true,"pos":{"x":-22.7847995758057,"y":1.64330005645752,"z":-30.1574001312256},"rot":{"x":0.0169000010937452,"y":180,"z":0.0798999965190887}},"7a167a":{"lock":false,"pos":{"x":1.69940054416656,"y":1.55831527709961,"z":14.2875022888184},"rot":{"x":359.955474853516,"y":224.731384277344,"z":0.0688812211155891}},"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}},"7b0f48":{"lock":false,"pos":{"x":-10.0533,"y":1.5959,"z":1.2614},"rot":{"x":359.9201,"y":269.9979,"z":0.0169}},"7b28eb":{"lock":false,"pos":{"x":12.2495,"y":1.2806,"z":3.9864},"rot":{"x":0.08,"y":89.9949,"z":359.9831}},"7b5228":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"7b57ad":{"lock":false,"pos":{"x":16.2712059020996,"y":1.27489864826202,"z":3.76080012321472},"rot":{"x":0.0799572914838791,"y":89.9929580688477,"z":359.983093261719}},"7b91a3":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"7b9e37":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"7ba738":{"lock":false,"pos":{"x":-3.946,"y":1.4062,"z":14.5235},"rot":{"x":359.9832,"y":-0.0016,"z":359.9197}},"7bdc6b":{"lock":false,"pos":{"x":-23.6765,"y":1.6879,"z":-3.83},"rot":{"x":359.9201,"y":270.0012,"z":180.0169}},"7cda3f":{"lock":false,"pos":{"x":12.2512,"y":1.2829,"z":11.9866},"rot":{"x":0.08,"y":89.9997,"z":359.9831}},"7d6343":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9982,"z":0.0169}},"7d8fed":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.63271510601044,"z":-15.2799978256226},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.0168397836387157}},"7dcc93":{"lock":false,"pos":{"x":1.6965,"y":1.6545,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"7f9f0d":{"lock":false,"pos":{"x":9.3077,"y":1.2837,"z":0.2819},"rot":{"x":0.0799,"y":89.9984,"z":359.9831}},"7fb809":{"lock":false,"pos":{"x":-8.80660057067871,"y":1.60278069972992,"z":-15.5880012512207},"rot":{"x":359.921997070313,"y":269.999633789063,"z":0.0167620945721865}},"8075b9":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9854,"z":0.0169}},"8077a1":{"lock":false,"pos":{"x":9.1666,"y":1.2836,"z":-0.8205},"rot":{"x":0.0799,"y":89.9944,"z":359.9831}},"80fb47":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"81a6f5":{"lock":false,"pos":{"x":-26.8136,"y":1.6167,"z":-7.5513},"rot":{"x":0.0799,"y":90.0001,"z":359.9831}},"8221db":{"lock":false,"pos":{"x":12.2519,"y":1.468,"z":11.9864},"rot":{"x":359.9201,"y":269.9925,"z":0.0169}},"82e02f":{"lock":false,"pos":{"x":-26.575,"y":1.6185,"z":-0.1012},"rot":{"x":359.9201,"y":269.9947,"z":0.0169}},"82e1ed":{"lock":false,"pos":{"x":-4.0012,"y":1.5828,"z":-14.59},"rot":{"x":359.9197,"y":269.9926,"z":0.0168}},"8385c4":{"lock":false,"pos":{"x":-8.80050086975098,"y":1.60478103160858,"z":-8.75300121307373},"rot":{"x":359.921997070313,"y":270.004516601563,"z":180.016906738281}},"83b781":{"lock":false,"pos":{"x":-4.3576,"y":1.5832,"z":-14.9888},"rot":{"x":359.9197,"y":270.0004,"z":0.0168}},"845074":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"8480f8":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":180.0168}},"84cdaf":{"lock":false,"pos":{"x":8.0379,"y":1.2834,"z":-6.2152},"rot":{"x":0.08,"y":89.9981,"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}},"86cbee":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0168,"y":180.0349,"z":0.08}},"88005c":{"lock":false,"pos":{"x":-27.1056,"y":1.6193,"z":0.044},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"884951":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"88a1cf":{"lock":false,"pos":{"x":-36.7732,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"893557":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9939,"z":0.0169}},"893c58":{"lock":false,"pos":{"x":-30.2243,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":269.9956,"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}},"8a689d":{"lock":false,"pos":{"x":-17.1197,"y":1.6503,"z":-0.0295},"rot":{"x":359.9201,"y":269.9999,"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}},"8ce0e1":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"8ce4d8":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9982,"z":0.0803}},"8cf84a":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":180.0001,"z":0.0799}},"8cfe99":{"lock":false,"pos":{"x":12.2498025894165,"y":1.46560561656952,"z":3.98629999160767},"rot":{"x":359.920135498047,"y":270.006072998047,"z":0.0168650802224875}},"8d88c8":{"lock":false,"pos":{"x":12.252,"y":1.468,"z":11.9863},"rot":{"x":359.9201,"y":270.0267,"z":0.0168}},"8eb793":{"lock":false,"pos":{"x":12.2504,"y":1.4656,"z":3.9856},"rot":{"x":359.9201,"y":270.0055,"z":0.0169}},"8ed50d":{"lock":false,"pos":{"x":-23.6766,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"8f0718":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.757},"rot":{"x":359.9197,"y":269.9868,"z":180.0168}},"8f297e":{"lock":false,"pos":{"x":12.2494,"y":1.4633,"z":-4.0136},"rot":{"x":359.9201,"y":269.9993,"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}},"8f569e":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.027,"z":0.0803}},"905ad3":{"lock":false,"pos":{"x":8.4268,"y":1.2838,"z":-3.1101},"rot":{"x":0.0799,"y":89.9894,"z":359.9831}},"909b6f":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":270.0029,"z":0.0168}},"90aab1":{"lock":false,"pos":{"x":8.0656,"y":1.2886,"z":11.2954},"rot":{"x":0.08,"y":89.983,"z":359.9831}},"90ad8b":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9854,"z":180.0168}},"917494":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"92ed37":{"lock":false,"pos":{"x":-26.8628997802734,"y":1.61833643913269,"z":-1.96460044384003},"rot":{"x":359.922393798828,"y":300.005889892578,"z":359.974670410156}},"93a112":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.63943076133728,"z":7.57079982757568},"rot":{"x":359.920104980469,"y":269.999206542969,"z":180.016830444336}},"949c7d":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9995,"z":0.0799}},"952572":{"lock":false,"pos":{"x":12.2499,"y":1.4703,"z":19.9865},"rot":{"x":359.9201,"y":270.0185,"z":0.0168}},"95dc3d":{"lock":false,"pos":{"x":-12.1893,"y":1.5207,"z":29.2011},"rot":{"x":359.9201,"y":269.9885,"z":0.0169}},"961940":{"lock":false,"pos":{"x":8.4723,"y":1.2866,"z":6.7132},"rot":{"x":0.0799,"y":89.9989,"z":359.9831}},"963cfe":{"lock":false,"pos":{"x":-10.715,"y":1.6678,"z":0.2579},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"98b377":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":359.9832,"y":-0.0021,"z":359.9197}},"98b72e":{"lock":false,"pos":{"x":-3.9559,"y":1.6585,"z":-10.4431},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"98cfeb":{"lock":false,"pos":{"x":-3.95600056648254,"y":1.59753930568695,"z":-10.4416007995605},"rot":{"x":359.919738769531,"y":269.999572753906,"z":0.0168377906084061}},"98d4a2":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270,"z":180.0169}},"99db87":{"lock":true,"pos":{"x":-58.5584983825684,"y":1.69739997386932,"z":8.3577995300293},"rot":{"x":359.920104980469,"y":270.000061035156,"z":0.0169000010937452}},"9ae382":{"lock":false,"pos":{"x":-3.3515,"y":1.4052,"z":13.818},"rot":{"x":359.9832,"y":-0.0001,"z":359.9197}},"9af38c":{"lock":false,"pos":{"x":12.2501535415649,"y":1.48254573345184,"z":-36.0138473510742},"rot":{"x":-0.000153532513650134,"y":269.96923828125,"z":359.721130371094}},"9b0cf5":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9857,"z":180.0169}},"9bcafb":{"lock":false,"pos":{"x":-23.6764,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"9c6ccd":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"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}},"9cd1ad":{"lock":false,"pos":{"x":-4.0559,"y":1.5827,"z":-15.1513},"rot":{"x":359.9197,"y":270,"z":0.0168}},"9d4e42":{"lock":false,"pos":{"x":-3.9274,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":269.9857,"z":180.0169}},"9dab73":{"lock":false,"pos":{"x":-2.7245,"y":1.6159,"z":0.3733},"rot":{"x":359.9197,"y":269.9865,"z":0.0169}},"9e33a0":{"lock":false,"pos":{"x":12.2497,"y":1.4632,"z":-4.014},"rot":{"x":359.9201,"y":270.0055,"z":0.0169}},"9e701d":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9826,"z":0.0169}},"9e71b4":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4402},"rot":{"x":359.9197,"y":269.9982,"z":0.0168}},"9e73fa":{"lock":false,"pos":{"x":12.249927520752,"y":1.47031676769257,"z":19.9864044189453},"rot":{"x":359.920135498047,"y":270,"z":0.0168732572346926}},"9e9bdd":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"9e9ff6":{"lock":false,"pos":{"x":-36.7733001708984,"y":1.64407503604889,"z":-7.69999980926514},"rot":{"x":359.920104980469,"y":269.99951171875,"z":180.016830444336}},"9f9e79":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"9fac8b":{"lock":false,"pos":{"x":-3.9277,"y":1.7557,"z":5.7571},"rot":{"x":359.9197,"y":269.9771,"z":180.0169}},"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}},"a08daa":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.9855,"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}},"a0d2b1":{"lock":false,"pos":{"x":10.5681,"y":1.4641,"z":-8.947},"rot":{"x":359.9201,"y":270.0628,"z":0.0168}},"a137d8":{"lock":false,"pos":{"x":-23.6764,"y":1.6863,"z":-0.0301},"rot":{"x":359.921,"y":269.9989,"z":0.019}},"a1514c":{"lock":false,"pos":{"x":-3.9277,"y":1.7184,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"a19bdb":{"lock":false,"pos":{"x":-30.2243,"y":1.627,"z":11.46},"rot":{"x":0.0169,"y":180.0077,"z":0.0799}},"a1b852":{"lock":false,"pos":{"x":-11.2981,"y":1.7087,"z":10.3332},"rot":{"x":359.9201,"y":269.9856,"z":180.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}},"a41e13":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"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}},"a4612b":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9962,"z":180.0169}},"a492bc":{"lock":false,"pos":{"x":12.2499017715454,"y":1.45853817462921,"z":-20.013801574707},"rot":{"x":359.920104980469,"y":270.022186279297,"z":0.0168431103229523}},"a4e5e9":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0486},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"a57738":{"lock":false,"pos":{"x":-0.0937998443841934,"y":1.61096239089966,"z":-10.4820022583008},"rot":{"x":359.919738769531,"y":269.986755371094,"z":0.0168364308774471}},"a5891b":{"lock":false,"pos":{"x":-3.5539,"y":1.5821,"z":-14.78},"rot":{"x":359.9197,"y":270.0027,"z":0.0168}},"a5b019":{"lock":false,"pos":{"x":-17.12,"y":1.602,"z":-11.51},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"a68851":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9972,"z":180.0169}},"a69955":{"lock":false,"pos":{"x":-30.2242,"y":1.6949,"z":-0.03},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"a751fe":{"lock":false,"pos":{"x":-4.1944,"y":1.583,"z":-14.6164},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"a7f7c7":{"lock":false,"pos":{"x":-36.7733001708984,"y":1.63160741329193,"z":-3.83000016212463},"rot":{"x":0.0167816318571568,"y":180.041229248047,"z":0.0799519121646881}},"a8a4b1":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"a8f47c":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2789},"rot":{"x":359.9552,"y":224.9986,"z":0.0687}},"a96e74":{"lock":false,"pos":{"x":-17.12,"y":1.681,"z":3.86},"rot":{"x":359.9201,"y":269.9844,"z":180.0169}},"a9c518":{"lock":false,"pos":{"x":-11.5089,"y":1.6766,"z":1.4197},"rot":{"x":359.9201,"y":269.999,"z":0.0169}},"aa3bc3":{"lock":false,"pos":{"x":-30.2243,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"aae2b1":{"lock":false,"pos":{"x":-3.566,"y":1.582,"z":-15.0714},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"ab0576":{"lock":false,"pos":{"x":-20.6238,"y":1.6124,"z":7.2554},"rot":{"x":359.9201,"y":270,"z":0.0169}},"ab12bb":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9852,"z":0.0169}},"ab39b9":{"lock":false,"pos":{"x":-17.1201,"y":1.6234,"z":15.1897},"rot":{"x":359.9201,"y":269.988,"z":0.0169}},"ab51fa":{"lock":false,"pos":{"x":-20.3744,"y":1.6099,"z":0.0842},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"abb407":{"lock":false,"pos":{"x":-8.80510139465332,"y":1.602130651474,"z":-17.8170013427734},"rot":{"x":359.921813964844,"y":269.953735351563,"z":0.0167792495340109}},"abd037":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"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}},"ad56f2":{"lock":false,"pos":{"x":12.2499,"y":1.4703,"z":19.9864},"rot":{"x":359.9201,"y":269.9646,"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}},"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}},"af4e73":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"afc427":{"lock":false,"pos":{"x":-23.6764,"y":1.6874,"z":3.86},"rot":{"x":359.9201,"y":269.9971,"z":0.0169}},"b04a1a":{"lock":false,"pos":{"x":-20.2608,"y":1.6098,"z":0.0434},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"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}},"b1bc62":{"lock":false,"pos":{"x":10.2009,"y":1.2817,"z":-2.161},"rot":{"x":0.0799,"y":89.9964,"z":359.9831}},"b1d40e":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0068,"z":0.0803}},"b21de6":{"lock":false,"pos":{"x":-13.3172,"y":1.6804,"z":7.5859},"rot":{"x":359.9201,"y":269.9856,"z":180.0169}},"b2b842":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"b2bd25":{"lock":false,"pos":{"x":-1.177,"y":1.5467,"z":-27.5609},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"b310b9":{"lock":false,"pos":{"x":8.6044,"y":1.2859,"z":4.9796},"rot":{"x":0.08,"y":89.9997,"z":359.9831}},"b34bec":{"lock":false,"pos":{"x":12.2503,"y":1.4538,"z":-36.0138},"rot":{"x":359.9201,"y":269.992,"z":0.0169}},"b3bfc4":{"lock":false,"pos":{"x":-1.4651,"y":1.4756,"z":-26.9305},"rot":{"x":359.9201,"y":270.0049,"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}},"b3ec68":{"lock":false,"pos":{"x":-12.7351,"y":1.6676,"z":-7.6861},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"b4a135":{"lock":false,"pos":{"x":-26.9258,"y":1.6168,"z":-7.7032},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"b4cf5a":{"lock":false,"pos":{"x":3.9877,"y":1.4679,"z":-27.2649},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"b5096d":{"lock":false,"pos":{"x":-13.5542,"y":1.6749,"z":-0.1164},"rot":{"x":359.9201,"y":270.0067,"z":180.0168}},"b57f89":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2789},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"b5928a":{"lock":false,"pos":{"x":-3.6897,"y":1.5822,"z":-15.0619},"rot":{"x":359.9198,"y":269.9669,"z":0.0169}},"b5a46b":{"lock":false,"pos":{"x":-23.6764984130859,"y":1.62694978713989,"z":-3.82989978790283},"rot":{"x":359.920104980469,"y":269.999938964844,"z":180.016830444336}},"b5ceb0":{"lock":false,"pos":{"x":-26.8548,"y":1.6211,"z":7.3881},"rot":{"x":359.9201,"y":270.0042,"z":0.0169}},"b676d8":{"lock":false,"pos":{"x":-20.6237,"y":1.608,"z":-7.5965},"rot":{"x":0.0799,"y":89.9992,"z":359.9831}},"b6a235":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0168,"y":180.0349,"z":0.08}},"b6d48a":{"lock":false,"pos":{"x":-26.9756,"y":1.6157,"z":-11.6402},"rot":{"x":0.0446,"y":45,"z":359.9316}},"b6da68":{"lock":false,"pos":{"x":1.6955,"y":1.5583,"z":14.2792},"rot":{"x":359.9552,"y":224.9335,"z":0.0687}},"b756c0":{"lock":false,"pos":{"x":-3.92760014533997,"y":1.72512221336365,"z":5.75710153579712},"rot":{"x":359.919738769531,"y":270.00439453125,"z":180.016815185547}},"b7e3ad":{"lock":false,"pos":{"x":-20.2216,"y":1.6119,"z":7.3408},"rot":{"x":359.9201,"y":269.9998,"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}},"b83079":{"lock":false,"pos":{"x":-3.9275,"y":1.7184,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"b8480f":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"b86938":{"lock":false,"pos":{"x":12.2499,"y":1.4609,"z":-12.0136},"rot":{"x":359.9202,"y":269.7148,"z":0.0173}},"b874a8":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"b8ca38":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9985,"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}},"b99de3":{"lock":false,"pos":{"x":12.2498,"y":1.4656,"z":3.9864},"rot":{"x":359.9201,"y":269.922,"z":0.017}},"ba2ded":{"lock":false,"pos":{"x":12.2492,"y":1.2759,"z":-12.0135},"rot":{"x":0.08,"y":89.9973,"z":359.9831}},"bab1d6":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.997,"z":180.0169}},"baff62":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"bb43b8":{"lock":false,"pos":{"x":-11.5593,"y":1.6557,"z":11.8573},"rot":{"x":359.9201,"y":269.9891,"z":0.0169}},"bb506e":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"bbb70a":{"lock":false,"pos":{"x":-3.8848,"y":1.5826,"z":-14.7351},"rot":{"x":359.9197,"y":270.0318,"z":0.0168}},"bbb99f":{"lock":false,"pos":{"x":-20.5275,"y":1.6078,"z":-7.7916},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"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}},"bc825a":{"lock":false,"pos":{"x":-4.1331,"y":1.5829,"z":-14.6606},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"bd069f":{"lock":false,"pos":{"x":9.3965,"y":1.2827,"z":-2.4823},"rot":{"x":0.0799,"y":89.9951,"z":359.9831}},"bd556e":{"lock":false,"pos":{"x":12.2509,"y":1.4585,"z":-20.0165},"rot":{"x":359.9201,"y":270.0553,"z":0.0168}},"bdd422":{"lock":false,"pos":{"x":-9.2986,"y":1.667,"z":0.0118},"rot":{"x":359.9202,"y":269.9846,"z":0.017}},"be3ac9":{"lock":false,"pos":{"x":-36.7732,"y":1.7073,"z":-0.03},"rot":{"x":359.9201,"y":269.9733,"z":180.0169}},"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}},"be6abb":{"lock":false,"pos":{"x":-30.2243,"y":1.6203,"z":-11.51},"rot":{"x":359.9831,"y":0.0072,"z":359.92}},"bf0eaa":{"lock":false,"pos":{"x":-30.2261,"y":1.6983,"z":10.1027},"rot":{"x":359.9201,"y":269.9998,"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}},"bfa2a2":{"lock":false,"pos":{"x":-8.80050086975098,"y":1.60343933105469,"z":-13.3184013366699},"rot":{"x":359.921997070313,"y":270.002410888672,"z":0.0167618654668331}},"bfb121":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9953,"z":180.0169}},"bfeb71":{"lock":false,"pos":{"x":-9.6538,"y":1.6654,"z":-0.6313},"rot":{"x":359.9201,"y":269.9998,"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}},"c11ba5":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.997,"z":0.0168}},"c1aad0":{"lock":false,"pos":{"x":9.6318,"y":1.285,"z":6.3703},"rot":{"x":0.0799,"y":89.9923,"z":359.9831}},"c210e3":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9935,"z":0.0169}},"c29a78":{"lock":false,"pos":{"x":12.2518005371094,"y":1.46795845031738,"z":11.9862012863159},"rot":{"x":359.920135498047,"y":270.000366210938,"z":0.0168725159019232}},"c29eac":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"c2a55d":{"lock":false,"pos":{"x":8.6023,"y":1.2838,"z":-2.2398},"rot":{"x":0.08,"y":89.9987,"z":359.9831}},"c2da92":{"lock":false,"pos":{"x":-20.9563,"y":1.61,"z":-2.6211},"rot":{"x":0.0253,"y":29.9999,"z":359.9224}},"c2fe44":{"lock":false,"pos":{"x":-0.4614,"y":1.7617,"z":-25.2014},"rot":{"x":359.9201,"y":269.9758,"z":0.0169}},"c3031b":{"lock":false,"pos":{"x":-2.7228,"y":1.6208,"z":0.3589},"rot":{"x":359.9197,"y":269.9689,"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}},"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}},"c41b7b":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":359.9757,"z":359.9201}},"c5008a":{"lock":false,"pos":{"x":-3.5702,"y":1.5821,"z":-14.9068},"rot":{"x":359.9197,"y":270.0005,"z":0.0168}},"c51bff":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"c56f66":{"lock":false,"pos":{"x":8.2949,"y":1.2857,"z":2.5561},"rot":{"x":0.0799,"y":89.9962,"z":359.9831}},"c582af":{"lock":false,"pos":{"x":-26.9427,"y":1.6213,"z":7.6022},"rot":{"x":359.9201,"y":270.0272,"z":0.0168}},"c5a4bf":{"lock":false,"pos":{"x":-36.7731,"y":1.709,"z":15.19},"rot":{"x":359.9201,"y":270,"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}},"c627fc":{"lock":false,"pos":{"x":17.8328266143799,"y":1.45285880565643,"z":-12.8706102371216},"rot":{"x":359.920104980469,"y":270.017272949219,"z":0.0168486014008522}},"c6305b":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":179.9938,"z":0.0803}},"c6995b":{"lock":false,"pos":{"x":-21.6704,"y":1.6106,"z":-3.7228},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"c6a2ab":{"lock":false,"pos":{"x":-27.6254,"y":1.6167,"z":-11.1322},"rot":{"x":359.9316,"y":314.9959,"z":359.9554}},"c6a9ae":{"lock":false,"pos":{"x":-3.9274,"y":1.7611,"z":5.7572},"rot":{"x":359.9197,"y":269.9857,"z":180.0168}},"c7c0a9":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3733},"rot":{"x":359.9197,"y":270.0151,"z":0.0168}},"c99e9d":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":359.9197,"y":269.9824,"z":0.0169}},"c9d140":{"lock":false,"pos":{"x":-12.2295,"y":1.5215,"z":31.5404},"rot":{"x":359.9201,"y":269.9884,"z":0.0169}},"c9e9ad":{"lock":false,"pos":{"x":-5.3818,"y":1.4082,"z":14.423},"rot":{"x":359.9832,"y":-0.0034,"z":359.9196}},"ca0e9b":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"cb2e63":{"lock":false,"pos":{"x":-23.6775,"y":1.689,"z":-0.0357},"rot":{"x":359.92,"y":270.3729,"z":180.0163}},"cca4ce":{"lock":false,"pos":{"x":-23.6764,"y":1.684,"z":-7.6884},"rot":{"x":359.9201,"y":270.0044,"z":0.0167}},"cce0e0":{"lock":false,"pos":{"x":-12.0115,"y":1.671,"z":7.4502},"rot":{"x":359.9201,"y":270.0065,"z":0.0169}},"cd676c":{"lock":false,"pos":{"x":-2.6885,"y":1.6623,"z":-5.0486},"rot":{"x":0.0168,"y":180.0007,"z":0.0803}},"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}},"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}},"d14543":{"lock":false,"pos":{"x":-12.2221,"y":1.4168,"z":11.1913},"rot":{"x":0.08,"y":89.9905,"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}},"d1bab1":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"d26316":{"lock":false,"pos":{"x":-26.8215,"y":1.6154,"z":-11.8145},"rot":{"x":0.045,"y":45.3509,"z":359.9319}},"d2cb13":{"lock":false,"pos":{"x":-12.0254,"y":1.614,"z":7.5293},"rot":{"x":359.9201,"y":269.995,"z":0.0168}},"d306b8":{"lock":false,"pos":{"x":-12.4062,"y":1.679,"z":12.7949},"rot":{"x":359.9201,"y":269.9857,"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}},"d37670":{"lock":false,"pos":{"x":-3.9277,"y":1.6705,"z":5.7572},"rot":{"x":359.9197,"y":270.0103,"z":180.0168}},"d46b84":{"lock":false,"pos":{"x":-11.4019,"y":1.6887,"z":15.8439},"rot":{"x":359.9274,"y":269.9868,"z":180.3533}},"d54710":{"lock":false,"pos":{"x":-4.0215,"y":1.5826,"z":-15.2289},"rot":{"x":359.9197,"y":269.9984,"z":0.0168}},"d5b06c":{"lock":false,"pos":{"x":-4.3545,"y":1.5833,"z":-14.5586},"rot":{"x":359.9197,"y":270.0016,"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}},"d60ed8":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9992,"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}},"d778ee":{"lock":false,"pos":{"x":-26.967,"y":1.6168,"z":-7.7901},"rot":{"x":359.9201,"y":270.0042,"z":0.0169}},"d7eb78":{"lock":false,"pos":{"x":-19.5006,"y":1.612,"z":11.2137},"rot":{"x":0.0685,"y":134.9717,"z":0.0445}},"d7fc4c":{"lock":false,"pos":{"x":-30.2198,"y":1.7004,"z":7.5731},"rot":{"x":359.9201,"y":270.0274,"z":180.0168}},"d807d4":{"lock":false,"pos":{"x":-26.8814,"y":1.619,"z":-0.0326},"rot":{"x":0.0799,"y":90.0005,"z":359.9831}},"d82996":{"lock":false,"pos":{"x":-20.2633,"y":1.6053,"z":-15.0852},"rot":{"x":0.0799,"y":90,"z":359.9831}},"d90311":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"da1f25":{"lock":false,"pos":{"x":-17.1199,"y":1.6054,"z":-0.03},"rot":{"x":359.9201,"y":270.0272,"z":0.0169}},"da2cbd":{"lock":false,"pos":{"x":-17.1196,"y":1.6155,"z":-11.5093},"rot":{"x":359.9201,"y":270.0104,"z":0.0168}},"da3aed":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"da6072":{"lock":false,"pos":{"x":1.6965,"y":1.6585,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"daa95d":{"lock":false,"pos":{"x":-27.1008,"y":1.6199,"z":2.1469},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"daef01":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.007,"z":359.92}},"db443b":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"db49f3":{"lock":false,"pos":{"x":-21.1809,"y":1.6117,"z":2.132},"rot":{"x":0.0684,"y":134.9832,"z":0.0445}},"db7039":{"lock":false,"pos":{"x":12.2519588470459,"y":1.46795845031738,"z":11.9863872528076},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168740916997194}},"dbbfa0":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":269.9789,"z":180.0169}},"dc50b3":{"lock":false,"pos":{"x":-3.9555,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"dda3d5":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0168,"y":180.0349,"z":0.08}},"ddc104":{"lock":false,"pos":{"x":-2.6884,"y":1.6336,"z":-5.0485},"rot":{"x":359.9197,"y":269.9859,"z":0.0169}},"ddd10b":{"lock":false,"pos":{"x":8.3252,"y":1.283,"z":-6.4267},"rot":{"x":0.0799,"y":89.996,"z":359.9831}},"dde586":{"lock":false,"pos":{"x":-3.9275,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"de583f":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4413},"rot":{"x":359.9197,"y":270.002,"z":0.0168}},"def2f5":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3734},"rot":{"x":359.9197,"y":270.001,"z":180.0168}},"df5156":{"lock":false,"pos":{"x":9.2722,"y":1.2819,"z":-6.0997},"rot":{"x":0.0799,"y":89.9909,"z":359.9831}},"df8dff":{"lock":false,"pos":{"x":-31.957,"y":1.8293,"z":-0.0662},"rot":{"x":4.7643,"y":270.0184,"z":0.017}},"dfff72":{"lock":false,"pos":{"x":-23.6764,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"e02060":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"e04c21":{"lock":false,"pos":{"x":12.2493028640747,"y":1.45618331432343,"z":-28.0139045715332},"rot":{"x":359.920135498047,"y":270.002471923828,"z":0.0168705992400646}},"e0e56d":{"lock":false,"pos":{"x":-30.2243,"y":1.6993,"z":3.86},"rot":{"x":359.9201,"y":269.9972,"z":180.0169}},"e10b7c":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.9201}},"e1bf6b":{"lock":false,"pos":{"x":-26.9599,"y":1.6203,"z":3.9439},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"e1caf1":{"lock":false,"pos":{"x":12.1709051132202,"y":1.28772139549255,"z":27.8930072784424},"rot":{"x":0.0799488052725792,"y":89.9712753295898,"z":359.983062744141}},"e22a64":{"lock":false,"pos":{"x":-27.6267,"y":1.6188,"z":-4.0757},"rot":{"x":359.9316,"y":314.9999,"z":359.9554}},"e28e5b":{"lock":false,"pos":{"x":-17.1199,"y":1.6782,"z":3.86},"rot":{"x":359.9201,"y":269.9969,"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}},"e413cc":{"lock":false,"pos":{"x":-23.6765,"y":1.6179,"z":11.46},"rot":{"x":359.9832,"y":0.0153,"z":359.9201}},"e47eca":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0168,"y":180.0349,"z":0.08}},"e54f2a":{"lock":false,"pos":{"x":9.5041,"y":1.2855,"z":7.3849},"rot":{"x":0.0799,"y":89.9936,"z":359.9831}},"e67855":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9982,"z":180.0169}},"e6bb63":{"lock":false,"pos":{"x":12.2493,"y":1.4562,"z":-28.0157},"rot":{"x":359.9201,"y":270.0376,"z":0.0168}},"e78e52":{"lock":false,"pos":{"x":-20.229,"y":1.6108,"z":3.6702},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"e7b998":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270.0052,"z":180.0169}},"e90dde":{"lock":false,"pos":{"x":-24.7567,"y":1.6149,"z":-3.8971},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"e9ae84":{"lock":false,"pos":{"x":-4.2177,"y":1.6697,"z":14.5874},"rot":{"x":359.9197,"y":269.9857,"z":180.0168}},"e9cc5a":{"lock":false,"pos":{"x":-30.2243003845215,"y":1.63719701766968,"z":-0.0299998205155134},"rot":{"x":359.920104980469,"y":269.99951171875,"z":180.016830444336}},"e9d947":{"lock":false,"pos":{"x":-2.6895,"y":1.3987,"z":-5.0483},"rot":{"x":359.9832,"y":0.0002,"z":359.9197}},"e9f3b1":{"lock":false,"pos":{"x":9.0726,"y":1.2773,"z":-22.1196},"rot":{"x":359.9831,"y":0.001,"z":359.92}},"ea0896":{"lock":false,"pos":{"x":-3.3332,"y":1.5816,"z":-15.257},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"ea8211":{"lock":false,"pos":{"x":-30.2241,"y":1.6931,"z":-7.6998},"rot":{"x":359.9202,"y":269.9836,"z":0.0165}},"eb22de":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9921,"z":359.9201}},"eb5dd9":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9998,"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}},"ec7842":{"lock":false,"pos":{"x":-16.0300998687744,"y":1.63047182559967,"z":-2.20079970359802},"rot":{"x":359.920104980469,"y":269.998748779297,"z":0.734870731830597}},"ec7a73":{"lock":false,"pos":{"x":-4.9066,"y":1.684,"z":-14.5418},"rot":{"x":359.9195,"y":270.04,"z":0.0161}},"ecbf8f":{"lock":false,"pos":{"x":-17.1201,"y":1.6754,"z":-15.2799},"rot":{"x":359.9201,"y":270.0269,"z":180.0168}},"ed48d8":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"eda22b":{"lock":false,"pos":{"x":-1.471,"y":1.5756,"z":-26.9334},"rot":{"x":359.9201,"y":270.107,"z":0.0167}},"edb80f":{"lock":false,"pos":{"x":-20.4959,"y":1.61,"z":-0.1873},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"edcae4":{"lock":false,"pos":{"x":-30.2242,"y":1.6934,"z":-0.0301},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"edd0d4":{"lock":false,"pos":{"x":-17.12,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":270.0099,"z":180.0168}},"ee673a":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"ee987d":{"lock":false,"pos":{"x":12.2499341964722,"y":1.46089422702789,"z":-12.0136156082153},"rot":{"x":359.920135498047,"y":269.999969482422,"z":0.0168737880885601}},"eea51b":{"lock":false,"pos":{"x":8.0856,"y":1.2853,"z":0.187},"rot":{"x":0.0799,"y":89.9983,"z":359.9831}},"ef067f":{"lock":false,"pos":{"x":-27.2278,"y":1.6207,"z":4.0347},"rot":{"x":0.0684,"y":135.0052,"z":0.0446}},"efba6c":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"efe8d6":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"f040a6":{"lock":false,"pos":{"x":12.1407060623169,"y":1.28064227104187,"z":3.70839309692383},"rot":{"x":0.0799626931548119,"y":89.9970016479492,"z":359.983093261719}},"f051fc":{"lock":false,"pos":{"x":12.2492,"y":1.475,"z":35.9864},"rot":{"x":359.9201,"y":270.0028,"z":0.0169}},"f0d16a":{"lock":false,"pos":{"x":-23.6765,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.011,"z":180.0168}},"f0dbb0":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9832,"y":0.0155,"z":359.92}},"f0e2dc":{"lock":false,"pos":{"x":-17.12,"y":1.6765,"z":-0.03},"rot":{"x":359.9201,"y":269.9836,"z":180.0169}},"f108e3":{"lock":false,"pos":{"x":-27.3214,"y":1.6189,"z":-2.4573},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"f305a2":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9978,"z":0.0803}},"f39e68":{"lock":false,"pos":{"x":10.161,"y":1.2842,"z":6.4667},"rot":{"x":0.0799,"y":89.9954,"z":359.9831}},"f4c93e":{"lock":false,"pos":{"x":-3.9584,"y":1.5827,"z":-14.7436},"rot":{"x":359.9197,"y":270.0297,"z":0.0168}},"f591c7":{"lock":false,"pos":{"x":-26.9568,"y":1.6207,"z":5.6374},"rot":{"x":0.0684,"y":134.9882,"z":0.0445}},"f5db25":{"lock":false,"pos":{"x":-3.6762,"y":1.5823,"z":-14.5355},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"f5f35d":{"lock":false,"pos":{"x":-9.207,"y":1.5169,"z":30.3654},"rot":{"x":0.0169,"y":180,"z":0.0799}},"f6d6d8":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.978,"z":0.0169}},"f70a0d":{"lock":false,"pos":{"x":10.9036,"y":1.4689,"z":8.8896},"rot":{"x":359.9201,"y":269.999,"z":0.0169}},"f7c15e":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"z":0.0169}},"f8005d":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"f86867":{"lock":false,"pos":{"x":-0.7656,"y":1.4707,"z":-43.8939},"rot":{"x":0.0001,"y":269.9959,"z":1.576}},"f90f84":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"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}},"f9fc71":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"fa8210":{"lock":false,"pos":{"x":1.6965,"y":1.6545,"z":14.2788},"rot":{"x":359.9552,"y":224.9979,"z":0.0687}},"fadb67":{"lock":false,"pos":{"x":-23.6763,"y":1.6948,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"fb280a":{"lock":false,"pos":{"x":-3.95589995384216,"y":1.59753930568695,"z":-10.441201210022},"rot":{"x":359.919738769531,"y":270.000091552734,"z":0.0168370883911848}},"fba392":{"lock":false,"pos":{"x":12.2494,"y":1.4562,"z":-28.0136},"rot":{"x":359.9201,"y":269.9914,"z":0.0169}},"fbe9fd":{"lock":false,"pos":{"x":-24.8778991699219,"y":1.61609935760498,"z":-0.15740005671978},"rot":{"x":0.0166492201387882,"y":180.136245727539,"z":0.0799793377518654}},"fbf157":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0072,"z":359.92}},"fcfbbe":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.0799}},"fda256":{"lock":false,"pos":{"x":-27.7376,"y":1.619,"z":-4.1724},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"fdd75d":{"lock":false,"pos":{"x":-2.72470021247864,"y":1.62076044082642,"z":0.37329962849617},"rot":{"x":359.919738769531,"y":269.999389648438,"z":0.0168378036469221}},"fde05d":{"lock":false,"pos":{"x":-27.0646,"y":1.6215,"z":7.5852},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"fe4e96":{"lock":false,"pos":{"x":-12.0018,"y":1.7668,"z":11.1085},"rot":{"x":359.9201,"y":270.0005,"z":180.0168}},"fed65c":{"lock":false,"pos":{"x":-2.7247,"y":1.6571,"z":0.3733},"rot":{"x":0.0169,"y":179.9893,"z":0.0803}},"ff4d6f":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.996,"z":180.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 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.yaml index a44503213..16bb65c44 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.yaml @@ -76,12 +76,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.3 - posY: 2.16 - posZ: 0.14 - rotX: 359.93 + posX: 12.25 + posY: 1.47 + posZ: 27.99 + rotX: 359.92 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.02 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml index 0506df9e7..0e5e6ff3b 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml @@ -74,12 +74,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 55.76 - posY: 3.16 - posZ: -71.62 - rotX: 359.98 + posX: 12.25 + posY: 1.47 + posZ: 3.99 + rotX: 359.92 rotY: 270.0 - rotZ: 0.0 + rotZ: 0.02 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.yaml index 3257d8f81..92c9fd41f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.yaml @@ -62,12 +62,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 57.7 - posY: 3.4 - posZ: -73.68 - rotX: 359.98 + posX: 12.25 + posY: 1.47 + posZ: 11.99 + rotX: 359.92 rotY: 270.0 - rotZ: 0.0 + rotZ: 0.02 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.yaml index 5704745e7..e6715e464 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.yaml @@ -57,8 +57,8 @@ Sticky: true Tooltip: true Transform: posX: 12.25 - posY: 1.47 - posZ: 11.99 + posY: 1.46 + posZ: -12.01 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml index 3a7ad7334..8e5187322 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml @@ -87,8 +87,8 @@ Sticky: true Tooltip: true Transform: posX: 12.25 - posY: 1.47 - posZ: 3.99 + posY: 1.46 + posZ: -20.01 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.yaml index 6c5ff2b1c..54d24802f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.yaml @@ -84,8 +84,8 @@ Sticky: true Tooltip: true Transform: posX: 12.25 - posY: 1.46 - posZ: -12.01 + posY: 1.47 + posZ: 19.99 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.yaml index 52046fc0f..c7d3f1bbc 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.yaml @@ -66,12 +66,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 11.04 - posY: 3.8 - posZ: -15.25 - rotX: 0.02 + posX: 32.3 + posY: 2.16 + posZ: 0.14 + rotX: 359.93 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.01 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml index ebbda752a..1b8cbc989 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml @@ -99,7 +99,7 @@ Tooltip: true Transform: posX: 12.25 posY: 1.46 - posZ: -4.01 + posZ: -28.01 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml index c904e28e0..8ca0af1c6 100644 --- a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml @@ -59,8 +59,8 @@ Sticky: true Tooltip: true Transform: posX: 12.25 - posY: 1.47 - posZ: 19.99 + posY: 1.46 + posZ: -4.01 rotX: 359.92 rotY: 270.0 rotZ: 0.02 diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml index 7c11f72fc..92d9e5402 100644 --- a/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: b: 0.4512195 - g: 0.248153508 - r: 0.1925047 + g: 0.248152375 + r: 0.192503631 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml index fe598b5b2..eda7a0cd8 100644 --- a/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: b: 0.4512195 - g: 0.248153508 - r: 0.1925047 + g: 0.248152375 + r: 0.192503631 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml index 920f41e1e..1469ed01f 100644 --- a/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: b: 0.4512195 - g: 0.248153508 - r: 0.1925047 + g: 0.248152375 + r: 0.192503631 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml index ccad788f5..72d2b3148 100644 --- a/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.07052066 - g: 0.07052066 - r: 0.282259047 + b: 0.07051984 + g: 0.07051984 + r: 0.2822579 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml index 6abf7734c..550171e52 100644 --- a/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.07052066 - g: 0.07052066 - r: 0.282259047 + b: 0.07051984 + g: 0.07051984 + r: 0.2822579 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml index b8d32cd52..25e28895f 100644 --- a/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.07052066 - g: 0.07052066 - r: 0.282259047 + b: 0.07051984 + g: 0.07051984 + r: 0.2822579 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Tile b9140e.yaml b/unpacked/Custom_Tile b9140e.yaml index c83d8f4d6..b76f0b394 100644 --- a/unpacked/Custom_Tile b9140e.yaml +++ b/unpacked/Custom_Tile b9140e.yaml @@ -2,7 +2,7 @@ Autoraise: true ColorDiffuse: b: 0.0 g: 0.008296312 - r: 0.106245212 + r: 0.106244646 CustomImage: CustomTile: Stackable: false diff --git a/unpacked/Custom_Tile Data Helper 708279.ttslua b/unpacked/Custom_Tile Data Helper 708279.ttslua index c96cb21b3..056db840a 100644 --- a/unpacked/Custom_Tile Data Helper 708279.ttslua +++ b/unpacked/Custom_Tile Data Helper 708279.ttslua @@ -530,16 +530,30 @@ "Marsh Refinery": {"type": "perPlayer", "value": 1, "clueSide": "back"}, "Innsmouth Square": {"type": "perPlayer", "value": 1, "clueSide": "back"}, "Innsmouth Harbour": {"type": "perPlayer", "value": 2, "clueSide": "back"}, - "Fish Street Bridge": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Fish Street Bridge_b6b9b7": {"type": "perPlayer", "value": 1, "clueSide": "back"}, "Gilman House": {"type": "perPlayer", "value": 1, "clueSide": "back"}, "The Little Bookshop": {"type": "perPlayer", "value": 2, "clueSide": "back"}, - "Innsmouth Jail": {"type": "perPlayer", "value": 1, "clueSide": "front"}, - "New Church Green": {"type": "perPlayer", "value": 2, "clueSide": "front"}, - "Sawbone Alley": {"type": "perPlayer", "value": 2, "clueSide": "front"}, - "The House on Water Street": {"type": "perPlayer", "value": 2, "clueSide": "front"}, - "Shoreward Slums": {"type": "perPlayer", "value": 1, "clueSide": "front"}, - "Esoteric Order of Dagon": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Innsmouth Jail_f63738": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "New Church Green_d1ef9c": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sawbone Alley_899c2c": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The House on Water Street_e4f53a": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Shoreward Slums_24e42d": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Esoteric Order of Dagon_28c301": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + + "Esoteric Order of Dagon_ef8cef": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "New Church Green_921a9b": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Marsh Refinery_44c342": {"type": "fixed", "value": 1, "clueSide": "back"}, + "The House on Water Street_104e07": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Little Bookshop_a17a82": {"type": "fixed", "value": 1, "clueSide": "back"}, + "First National Grocery_9ae75c": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Fish Street Bridge_a358fc": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Innsmouth Harbour_30b2c0": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Sawbone Alley_e58cff": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Gilman House_e589b8": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Innsmouth Jail_755fc0": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Shoreward Slums_c0d0df": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Desolate Coastline": {"type": "fixed", "value": 1, "clueSide": "back"}, "XXXX": {"type": "perPlayer", "value": 2, "clueSide": "back"}, "xxx": {"type": "perPlayer", "value": 2, "clueSide": "back"} @@ -1090,6 +1104,22 @@ "tokenType": "resource", "tokenCount": 3 }, + "Eldritch Sophist": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Armageddon": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Eye of Chaos": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Shroud of Shadows": { + "tokenType": "resource", + "tokenCount": 3 + }, "xxx": { "tokenType": "resource", "tokenCount": 3 @@ -1350,6 +1380,9 @@ hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } } , expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } } }, + ['In Too Deep'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } } + }, -----------------The Side Missions --official diff --git a/unpacked/Custom_Tile Data Helper 708279.yaml b/unpacked/Custom_Tile Data Helper 708279.yaml index 54560c5b5..63b26f817 100644 --- a/unpacked/Custom_Tile Data Helper 708279.yaml +++ b/unpacked/Custom_Tile Data Helper 708279.yaml @@ -24,7 +24,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Tile Data Helper 708279.ttslua' -LuaScriptState: '{"041012":false,"3549e7":false,"5a7a85":true,"673295":false,"d3a90d":true,"e70b0a":true}' +LuaScriptState: '{"041012":false,"31cfbf":false,"3442f5":false,"3549e7":false,"37882c":false,"3feff1":false,"491c09":false,"4e2d75":false,"53d103":false,"541ee9":false,"55fc3d":false,"5a7a85":true,"673295":false,"840ba5":false,"86d109":false,"87226d":false,"9a5782":false,"a565d5":false,"d3a90d":true,"e70b0a":true,"e99f0d":false}' MeasureMovement: false Name: Custom_Tile Nickname: Data Helper diff --git a/unpacked/Custom_Tile Playermat 1 White 8b081b.ttslua b/unpacked/Custom_Tile Playermat 1 White 8b081b.ttslua index c45bd7508..4f610fbae 100644 --- a/unpacked/Custom_Tile Playermat 1 White 8b081b.ttslua +++ b/unpacked/Custom_Tile Playermat 1 White 8b081b.ttslua @@ -16,6 +16,15 @@ DISCARD_BUTTON_OFFSETS = { -- draw deck and discard zone DECK_POSITION = { x=-1.4, y=0, z=0.3 } DECK_ZONE_SCALE = { x=3, y=5, z=8 } +DRAW_DECK_POSITION = { x=-55, y=2.5, z=4.5 } + +-- play zone +PLAYER_COLOR = "White" +PLAY_ZONE_POSITION = { x=-55, y=4, z=17 } +PLAY_ZONE_ROTATION = { x=0, y=270, z=0 } +PLAY_ZONE_SCALE = { x=30, y=5, z=15 } + +RESOURCE_COUNTER_GUID = "4406f0" -- the position of the global discard pile -- TODO: delegate to global for any auto discard actions @@ -99,6 +108,17 @@ function onload(save_state) font_size = 50 }) + self.createButton({ + label="Upkeep", + click_function = "doUpkeep", + function_owner = self, + position = {1.48,0.1,-0.4}, + scale = {0.12, 0.12, 0.12}, + width = 800, + height = 280, + font_size = 180 + }) + local state = JSON.decode(save_state) if state ~= nil and state.zoneID ~= nil then zoneID = state.zoneID @@ -114,6 +134,125 @@ function onSave() return JSON.encode({ zoneID=zoneID }) end +function doUpkeep(obj, color, alt_click) + -- right-click binds to new player color + if alt_click then + PLAYER_COLOR = color + printToColor("Upkeep button bound to " .. color, color) + return + end + + -- unexhaust cards in play zone + local objs = Physics.cast({ + origin = PLAY_ZONE_POSITION, + direction = { x=0, y=1, z=0 }, + type = 3, + size = PLAY_ZONE_SCALE, + orientation = PLAY_ZONE_ROTATION + }) + + local y = PLAY_ZONE_ROTATION.y + + local investigator = nil + for i,v in ipairs(objs) do + local obj = v.hit_object + local props = obj.getCustomObject() + if obj.tag == "Card" and not obj.is_face_down then + if props ~= nil and props.unique_back then + local name = obj.getName() + if string.match(name, "Jenny Barnes") ~= nil then + investigator = "Jenny Barnes" + elseif name == "Patrice Hathaway" then + investigator = name + end + else + local r = obj.getRotation() + if (r.y - y > 10) or (y - r.y > 10) then + obj.setRotationSmooth(PLAY_ZONE_ROTATION) + end + end + end + end + + -- gain resource + getObjectFromGUID(RESOURCE_COUNTER_GUID).call("add_subtract") + if investigator == "Jenny Barnes" then + getObjectFromGUID(RESOURCE_COUNTER_GUID).call("add_subtract") + printToColor("Taking 2 resources (Jenny)", PLAYER_COLOR) + end + + -- draw card (shuffle discard if necessary) + local zone = getObjectFromGUID(zoneID) + if zone == nil then return end + + drawDeck = nil + discardPile = nil + for i,object in ipairs(zone.getObjects()) do + if object.tag == "Deck" or object.tag == "Card" then + if object.is_face_down then + drawDeck = object + else + discardPile = object + end + end + end + + if investigator == "Patrice Hathaway" then + patriceDraw() + return + end + + if drawDeck == nil then + if discardPile ~= nil then + shuffleDiscardIntoDeck() + Wait.time(|| drawCards(1), 1) + end + printToColor("Take 1 horror (drawing card from empty deck)", PLAYER_COLOR) + else + drawCards(1) + end +end + +function drawCards(numCards) + if drawDeck == nil then return end + drawDeck.deal(numCards, PLAYER_COLOR) +end + +function shuffleDiscardIntoDeck() + discardPile.flip() + discardPile.shuffle() + discardPile.setPositionSmooth(DRAW_DECK_POSITION, false, false) + drawDeck = discardPile + discardPile = nil +end + +function patriceDraw() + local handSize = #Player[PLAYER_COLOR].getHandObjects() + if handSize >= 5 then return end + local cardsToDraw = 5 - handSize + local deckSize + printToColor("Drawing " .. cardsToDraw .. " cards (Patrice)", PLAYER_COLOR) + if drawDeck == nil then + deckSize = 0 + elseif drawDeck.tag == "Deck" then + deckSize = #drawDeck.getObjects() + else + deckSize = 1 + end + + if deckSize >= cardsToDraw then + drawCards(cardsToDraw) + return + end + + drawCards(deckSize) + if discardPile ~= nil then + shuffleDiscardIntoDeck() + Wait.time(|| drawCards(cardsToDraw - deckSize), 1) + end + printToColor("Take 1 horror (drawing card from empty deck)", PLAYER_COLOR) +end + function checkDeckZoneExists() if getObjectFromGUID(zoneID) ~= nil then return end spawnDeckZone() diff --git a/unpacked/Custom_Tile Playermat 1 White 8b081b.yaml b/unpacked/Custom_Tile Playermat 1 White 8b081b.yaml index 6a4b26725..1680a53de 100644 --- a/unpacked/Custom_Tile Playermat 1 White 8b081b.yaml +++ b/unpacked/Custom_Tile Playermat 1 White 8b081b.yaml @@ -5,15 +5,15 @@ AttachedSnapPoints: z: -0.633720756 Rotation: x: -3.66321835e-08 - y: 0.0280868653 - z: -2.184203e-07 + y: 0.0280869864 + z: -2.18419373e-07 - Position: x: 0.5208152 y: 0.09971385 z: -0.633939445 Rotation: x: -3.6553363e-08 - y: 0.0281141866 + y: 0.0281143058 z: -5.402876e-07 - Position: x: 0.9804662 @@ -21,7 +21,7 @@ AttachedSnapPoints: z: -0.634164751 Rotation: x: -3.67513557e-08 - y: 0.0281449221 + y: 0.0281450413 z: 2.6679524e-07 - Position: x: -0.384615272 @@ -29,7 +29,7 @@ AttachedSnapPoints: z: -0.6334956 Rotation: x: -3.76656857e-08 - y: 0.0281449221 + y: 0.0281450413 z: -2.79978553e-06 - Position: x: -0.8354233 @@ -37,7 +37,7 @@ AttachedSnapPoints: z: -0.633274555 Rotation: x: -3.518123e-08 - y: 0.0281449221 + y: 0.0281450413 z: 6.636666e-07 - Position: x: -1.4141587 diff --git a/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua b/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua index c45bd7508..0079a2e11 100644 --- a/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua +++ b/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua @@ -16,6 +16,15 @@ DISCARD_BUTTON_OFFSETS = { -- draw deck and discard zone DECK_POSITION = { x=-1.4, y=0, z=0.3 } DECK_ZONE_SCALE = { x=3, y=5, z=8 } +DRAW_DECK_POSITION = { x=-55, y=2.5, z=-22.7 } + +-- play zone +PLAYER_COLOR = "Orange" +PLAY_ZONE_POSITION = { x=-55, y=4, z=-17 } +PLAY_ZONE_ROTATION = { x=0, y=270, z=0 } +PLAY_ZONE_SCALE = { x=30, y=5, z=15 } + +RESOURCE_COUNTER_GUID = "816d84" -- the position of the global discard pile -- TODO: delegate to global for any auto discard actions @@ -99,6 +108,17 @@ function onload(save_state) font_size = 50 }) + self.createButton({ + label="Upkeep", + click_function = "doUpkeep", + function_owner = self, + position = {1.48,0.1,-0.4}, + scale = {0.12, 0.12, 0.12}, + width = 800, + height = 280, + font_size = 180 + }) + local state = JSON.decode(save_state) if state ~= nil and state.zoneID ~= nil then zoneID = state.zoneID @@ -114,6 +134,125 @@ function onSave() return JSON.encode({ zoneID=zoneID }) end +function doUpkeep(obj, color, alt_click) + -- right-click binds to new player color + if alt_click then + PLAYER_COLOR = color + printToColor("Upkeep button bound to " .. color, color) + return + end + + -- unexhaust cards in play zone + local objs = Physics.cast({ + origin = PLAY_ZONE_POSITION, + direction = { x=0, y=1, z=0 }, + type = 3, + size = PLAY_ZONE_SCALE, + orientation = PLAY_ZONE_ROTATION + }) + + local y = PLAY_ZONE_ROTATION.y + + local investigator = nil + for i,v in ipairs(objs) do + local obj = v.hit_object + local props = obj.getCustomObject() + if obj.tag == "Card" and not obj.is_face_down then + if props ~= nil and props.unique_back then + local name = obj.getName() + if string.match(name, "Jenny Barnes") ~= nil then + investigator = "Jenny Barnes" + elseif name == "Patrice Hathaway" then + investigator = name + end + else + local r = obj.getRotation() + if (r.y - y > 10) or (y - r.y > 10) then + obj.setRotationSmooth(PLAY_ZONE_ROTATION) + end + end + end + end + + -- gain resource + getObjectFromGUID(RESOURCE_COUNTER_GUID).call("add_subtract") + if investigator == "Jenny Barnes" then + getObjectFromGUID(RESOURCE_COUNTER_GUID).call("add_subtract") + printToColor("Taking 2 resources (Jenny)", PLAYER_COLOR) + end + + -- draw card (shuffle discard if necessary) + local zone = getObjectFromGUID(zoneID) + if zone == nil then return end + + drawDeck = nil + discardPile = nil + for i,object in ipairs(zone.getObjects()) do + if object.tag == "Deck" or object.tag == "Card" then + if object.is_face_down then + drawDeck = object + else + discardPile = object + end + end + end + + if investigator == "Patrice Hathaway" then + patriceDraw() + return + end + + if drawDeck == nil then + if discardPile ~= nil then + shuffleDiscardIntoDeck() + Wait.time(|| drawCards(1), 1) + end + printToColor("Take 1 horror (drawing card from empty deck)", PLAYER_COLOR) + else + drawCards(1) + end +end + +function drawCards(numCards) + if drawDeck == nil then return end + drawDeck.deal(numCards, PLAYER_COLOR) +end + +function shuffleDiscardIntoDeck() + discardPile.flip() + discardPile.shuffle() + discardPile.setPositionSmooth(DRAW_DECK_POSITION, false, false) + drawDeck = discardPile + discardPile = nil +end + +function patriceDraw() + local handSize = #Player[PLAYER_COLOR].getHandObjects() + if handSize >= 5 then return end + local cardsToDraw = 5 - handSize + local deckSize + printToColor("Drawing " .. cardsToDraw .. " cards (Patrice)", PLAYER_COLOR) + if drawDeck == nil then + deckSize = 0 + elseif drawDeck.tag == "Deck" then + deckSize = #drawDeck.getObjects() + else + deckSize = 1 + end + + if deckSize >= cardsToDraw then + drawCards(cardsToDraw) + return + end + + drawCards(deckSize) + if discardPile ~= nil then + shuffleDiscardIntoDeck() + Wait.time(|| drawCards(cardsToDraw - deckSize), 1) + end + printToColor("Take 1 horror (drawing card from empty deck)", PLAYER_COLOR) +end + function checkDeckZoneExists() if getObjectFromGUID(zoneID) ~= nil then return end spawnDeckZone() diff --git a/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua b/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua index c45bd7508..0f5f45f8a 100644 --- a/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua +++ b/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua @@ -16,6 +16,15 @@ DISCARD_BUTTON_OFFSETS = { -- draw deck and discard zone DECK_POSITION = { x=-1.4, y=0, z=0.3 } DECK_ZONE_SCALE = { x=3, y=5, z=8 } +DRAW_DECK_POSITION = { x=-37, y=2.5, z=26.5 } + +-- play zone +PLAYER_COLOR = "Green" +PLAY_ZONE_POSITION = { x=-25, y=4, z=27 } +PLAY_ZONE_ROTATION = { x=0, y=0, z=0 } +PLAY_ZONE_SCALE = { x=30, y=5, z=15 } + +RESOURCE_COUNTER_GUID = "cd15ac" -- the position of the global discard pile -- TODO: delegate to global for any auto discard actions @@ -99,6 +108,17 @@ function onload(save_state) font_size = 50 }) + self.createButton({ + label="Upkeep", + click_function = "doUpkeep", + function_owner = self, + position = {1.48,0.1,-0.4}, + scale = {0.12, 0.12, 0.12}, + width = 800, + height = 280, + font_size = 180 + }) + local state = JSON.decode(save_state) if state ~= nil and state.zoneID ~= nil then zoneID = state.zoneID @@ -114,6 +134,125 @@ function onSave() return JSON.encode({ zoneID=zoneID }) end +function doUpkeep(obj, color, alt_click) + -- right-click binds to new player color + if alt_click then + PLAYER_COLOR = color + printToColor("Upkeep button bound to " .. color, color) + return + end + + -- unexhaust cards in play zone + local objs = Physics.cast({ + origin = PLAY_ZONE_POSITION, + direction = { x=0, y=1, z=0 }, + type = 3, + size = PLAY_ZONE_SCALE, + orientation = PLAY_ZONE_ROTATION + }) + + local y = PLAY_ZONE_ROTATION.y + + local investigator = nil + for i,v in ipairs(objs) do + local obj = v.hit_object + local props = obj.getCustomObject() + if obj.tag == "Card" and not obj.is_face_down then + if props ~= nil and props.unique_back then + local name = obj.getName() + if string.match(name, "Jenny Barnes") ~= nil then + investigator = "Jenny Barnes" + elseif name == "Patrice Hathaway" then + investigator = name + end + else + local r = obj.getRotation() + if (r.y - y > 10) or (y - r.y > 10) then + obj.setRotationSmooth(PLAY_ZONE_ROTATION) + end + end + end + end + + -- gain resource + getObjectFromGUID(RESOURCE_COUNTER_GUID).call("add_subtract") + if investigator == "Jenny Barnes" then + getObjectFromGUID(RESOURCE_COUNTER_GUID).call("add_subtract") + printToColor("Taking 2 resources (Jenny)", PLAYER_COLOR) + end + + -- draw card (shuffle discard if necessary) + local zone = getObjectFromGUID(zoneID) + if zone == nil then return end + + drawDeck = nil + discardPile = nil + for i,object in ipairs(zone.getObjects()) do + if object.tag == "Deck" or object.tag == "Card" then + if object.is_face_down then + drawDeck = object + else + discardPile = object + end + end + end + + if investigator == "Patrice Hathaway" then + patriceDraw() + return + end + + if drawDeck == nil then + if discardPile ~= nil then + shuffleDiscardIntoDeck() + Wait.time(|| drawCards(1), 1) + end + printToColor("Take 1 horror (drawing card from empty deck)", PLAYER_COLOR) + else + drawCards(1) + end +end + +function drawCards(numCards) + if drawDeck == nil then return end + drawDeck.deal(numCards, PLAYER_COLOR) +end + +function shuffleDiscardIntoDeck() + discardPile.flip() + discardPile.shuffle() + discardPile.setPositionSmooth(DRAW_DECK_POSITION, false, false) + drawDeck = discardPile + discardPile = nil +end + +function patriceDraw() + local handSize = #Player[PLAYER_COLOR].getHandObjects() + if handSize >= 5 then return end + local cardsToDraw = 5 - handSize + local deckSize + printToColor("Drawing " .. cardsToDraw .. " cards (Patrice)", PLAYER_COLOR) + if drawDeck == nil then + deckSize = 0 + elseif drawDeck.tag == "Deck" then + deckSize = #drawDeck.getObjects() + else + deckSize = 1 + end + + if deckSize >= cardsToDraw then + drawCards(cardsToDraw) + return + end + + drawCards(deckSize) + if discardPile ~= nil then + shuffleDiscardIntoDeck() + Wait.time(|| drawCards(cardsToDraw - deckSize), 1) + end + printToColor("Take 1 horror (drawing card from empty deck)", PLAYER_COLOR) +end + function checkDeckZoneExists() if getObjectFromGUID(zoneID) ~= nil then return end spawnDeckZone() diff --git a/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua b/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua index c45bd7508..3bb71d8cf 100644 --- a/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua +++ b/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua @@ -16,6 +16,15 @@ DISCARD_BUTTON_OFFSETS = { -- draw deck and discard zone DECK_POSITION = { x=-1.4, y=0, z=0.3 } DECK_ZONE_SCALE = { x=3, y=5, z=8 } +DRAW_DECK_POSITION = { x=-18.9, y=2.5, z=-26.7 } + +-- play zone +PLAYER_COLOR = "Red" +PLAY_ZONE_POSITION = { x=-25, y=4, z=-27 } +PLAY_ZONE_ROTATION = { x=0, y=180, z=0 } +PLAY_ZONE_SCALE = { x=30, y=5, z=15 } + +RESOURCE_COUNTER_GUID = "a4b60d" -- the position of the global discard pile -- TODO: delegate to global for any auto discard actions @@ -99,6 +108,17 @@ function onload(save_state) font_size = 50 }) + self.createButton({ + label="Upkeep", + click_function = "doUpkeep", + function_owner = self, + position = {1.48,0.1,-0.4}, + scale = {0.12, 0.12, 0.12}, + width = 800, + height = 280, + font_size = 180 + }) + local state = JSON.decode(save_state) if state ~= nil and state.zoneID ~= nil then zoneID = state.zoneID @@ -114,6 +134,125 @@ function onSave() return JSON.encode({ zoneID=zoneID }) end +function doUpkeep(obj, color, alt_click) + -- right-click binds to new player color + if alt_click then + PLAYER_COLOR = color + printToColor("Upkeep button bound to " .. color, color) + return + end + + -- unexhaust cards in play zone + local objs = Physics.cast({ + origin = PLAY_ZONE_POSITION, + direction = { x=0, y=1, z=0 }, + type = 3, + size = PLAY_ZONE_SCALE, + orientation = PLAY_ZONE_ROTATION + }) + + local y = PLAY_ZONE_ROTATION.y + + local investigator = nil + for i,v in ipairs(objs) do + local obj = v.hit_object + local props = obj.getCustomObject() + if obj.tag == "Card" and not obj.is_face_down then + if props ~= nil and props.unique_back then + local name = obj.getName() + if string.match(name, "Jenny Barnes") ~= nil then + investigator = "Jenny Barnes" + elseif name == "Patrice Hathaway" then + investigator = name + end + else + local r = obj.getRotation() + if (r.y - y > 10) or (y - r.y > 10) then + obj.setRotationSmooth(PLAY_ZONE_ROTATION) + end + end + end + end + + -- gain resource + getObjectFromGUID(RESOURCE_COUNTER_GUID).call("add_subtract") + if investigator == "Jenny Barnes" then + getObjectFromGUID(RESOURCE_COUNTER_GUID).call("add_subtract") + printToColor("Taking 2 resources (Jenny)", PLAYER_COLOR) + end + + -- draw card (shuffle discard if necessary) + local zone = getObjectFromGUID(zoneID) + if zone == nil then return end + + drawDeck = nil + discardPile = nil + for i,object in ipairs(zone.getObjects()) do + if object.tag == "Deck" or object.tag == "Card" then + if object.is_face_down then + drawDeck = object + else + discardPile = object + end + end + end + + if investigator == "Patrice Hathaway" then + patriceDraw() + return + end + + if drawDeck == nil then + if discardPile ~= nil then + shuffleDiscardIntoDeck() + Wait.time(|| drawCards(1), 1) + end + printToColor("Take 1 horror (drawing card from empty deck)", PLAYER_COLOR) + else + drawCards(1) + end +end + +function drawCards(numCards) + if drawDeck == nil then return end + drawDeck.deal(numCards, PLAYER_COLOR) +end + +function shuffleDiscardIntoDeck() + discardPile.flip() + discardPile.shuffle() + discardPile.setPositionSmooth(DRAW_DECK_POSITION, false, false) + drawDeck = discardPile + discardPile = nil +end + +function patriceDraw() + local handSize = #Player[PLAYER_COLOR].getHandObjects() + if handSize >= 5 then return end + local cardsToDraw = 5 - handSize + local deckSize + printToColor("Drawing " .. cardsToDraw .. " cards (Patrice)", PLAYER_COLOR) + if drawDeck == nil then + deckSize = 0 + elseif drawDeck.tag == "Deck" then + deckSize = #drawDeck.getObjects() + else + deckSize = 1 + end + + if deckSize >= cardsToDraw then + drawCards(cardsToDraw) + return + end + + drawCards(deckSize) + if discardPile ~= nil then + shuffleDiscardIntoDeck() + Wait.time(|| drawCards(cardsToDraw - deckSize), 1) + end + printToColor("Take 1 horror (drawing card from empty deck)", PLAYER_COLOR) +end + function checkDeckZoneExists() if getObjectFromGUID(zoneID) ~= nil then return end spawnDeckZone() diff --git a/unpacked/Custom_Token b7b45b.yaml b/unpacked/Custom_Token b7b45b.yaml index 6d6489a77..07f832c4d 100644 --- a/unpacked/Custom_Token b7b45b.yaml +++ b/unpacked/Custom_Token b7b45b.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.374535769 - g: 0.374535769 - r: 0.374535769 + b: 0.3745352 + g: 0.3745352 + r: 0.3745352 CustomImage: CustomToken: MergeDistancePixels: 15.0 diff --git a/unpacked/Custom_Token Chaos Bag Stat Tracker 766620.ttslua b/unpacked/Custom_Token Chaos Bag Stat Tracker 766620.ttslua new file mode 100644 index 000000000..11d95d262 --- /dev/null +++ b/unpacked/Custom_Token Chaos Bag Stat Tracker 766620.ttslua @@ -0,0 +1,101 @@ +function onload(saved_data) + light_mode = false + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + end + createAll() +end + +-- functions delegated to Global +function printStats(object, player, isRightClick) + -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) + if isRightClick then + Global.call("resetStats") + else + Global.call("printStats") + end +end + +function updateSave() + local data_to_save = {light_mode } + 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({ + click_function="printStats", + function_owner=self, + position={0,0.05,0}, + height=600, + width=1000, + alignment = 3, + tooltip = "Left Click to print stats. Right Click to reset them.", + 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 setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = "Left click to show stats. Right click to reset them." + }) +end + +function keepSample(_obj, _string, value) + reloadAll() +end + +function onDestroy() + Timer.destroy(timerID) +end \ No newline at end of file diff --git a/unpacked/Custom_Token Chaos Bag Stat Tracker 766620.yaml b/unpacked/Custom_Token Chaos Bag Stat Tracker 766620.yaml new file mode 100644 index 000000000..f6e08caf6 --- /dev/null +++ b/unpacked/Custom_Token Chaos Bag Stat Tracker 766620.yaml @@ -0,0 +1,47 @@ +Autoraise: true +ColorDiffuse: + b: 0.8745098 + g: 0.8745098 + r: 0.8745098 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + StandUp: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/SBE8GR5.png + WidthScale: 0.0 +Description: 'Only tracks tokens that actually hit the playmat. + + + All credit goes to TadGH!' +DragSelectable: true +GMNotes: '' +GUID: '766620' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Chaos Bag Stat Tracker 766620.ttslua' +LuaScriptState: '[true,0]' +MeasureMovement: false +Name: Custom_Token +Nickname: Chaos Bag Stat Tracker +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -61.53 + posY: 1.62 + posZ: -0.02 + rotX: 359.92 + rotY: 270.0 + rotZ: 0.02 + scaleX: 0.4 + scaleY: 1.0 + scaleZ: 0.4 +XmlUI: '' diff --git a/unpacked/Custom_Token Playarea 721ba2.ttslua b/unpacked/Custom_Token Playarea 721ba2.ttslua index 82b5cc2e0..4f133e507 100644 --- a/unpacked/Custom_Token Playarea 721ba2.ttslua +++ b/unpacked/Custom_Token Playarea 721ba2.ttslua @@ -27,7 +27,7 @@ function onload(save_state) log('attempting to load state: ' .. save_state) if save_state ~= '' then SPAWNED_LOCATION_GUIDS = JSON.decode(save_state) - end + end COLLISION_ENABLED = true end @@ -183,15 +183,15 @@ function spawnCluesAtLocation(clueCount, collision_info) i = i + 1 end end - - + + function updateLocations(args) local custom_data_helper = getObjectFromGUID(args[1]) data_locations = custom_data_helper.getTable("LOCATIONS_DATA") for k, v in pairs(data_locations) do LOCATIONS[k] = v end -end +end function onCollisionEnter(collision_info) -- short circuit all collision stuff until we've loaded state diff --git a/unpacked/Custom_Token Resources 4406f0.yaml b/unpacked/Custom_Token Resources 4406f0.yaml index 449272f0c..b891a2c97 100644 --- a/unpacked/Custom_Token Resources 4406f0.yaml +++ b/unpacked/Custom_Token Resources 4406f0.yaml @@ -26,7 +26,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Token Resources 4406f0.ttslua' -LuaScriptState: '[true,0]' +LuaScriptState: '[true,5]' MeasureMovement: false Name: Custom_Token Nickname: Resources diff --git a/unpacked/Custom_Token Resources 816d84.yaml b/unpacked/Custom_Token Resources 816d84.yaml index 21c588a10..1e18f3901 100644 --- a/unpacked/Custom_Token Resources 816d84.yaml +++ b/unpacked/Custom_Token Resources 816d84.yaml @@ -26,7 +26,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Token Resources 816d84.ttslua' -LuaScriptState: '[true,0]' +LuaScriptState: '[true,5]' MeasureMovement: false Name: Custom_Token Nickname: Resources diff --git a/unpacked/Custom_Token Resources a4b60d.yaml b/unpacked/Custom_Token Resources a4b60d.yaml index 4d6d975ce..68a264888 100644 --- a/unpacked/Custom_Token Resources a4b60d.yaml +++ b/unpacked/Custom_Token Resources a4b60d.yaml @@ -26,7 +26,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Token Resources a4b60d.ttslua' -LuaScriptState: '[true,0]' +LuaScriptState: '[true,5]' MeasureMovement: false Name: Custom_Token Nickname: Resources diff --git a/unpacked/Custom_Token Resources cd15ac.yaml b/unpacked/Custom_Token Resources cd15ac.yaml index 7cdcdd354..42fd2ef3c 100644 --- a/unpacked/Custom_Token Resources cd15ac.yaml +++ b/unpacked/Custom_Token Resources cd15ac.yaml @@ -26,7 +26,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Token Resources cd15ac.ttslua' -LuaScriptState: '[true,0]' +LuaScriptState: '[true,5]' MeasureMovement: false Name: Custom_Token Nickname: Resources diff --git a/unpacked/Notecard Arkham SCE 1.501 - 1112020 - Page 1 e65fb4.yaml b/unpacked/Notecard Arkham SCE 1.501 - 1112020 - Page 1 e65fb4.yaml deleted file mode 100644 index 8b7131c8b..000000000 --- a/unpacked/Notecard Arkham SCE 1.501 - 1112020 - Page 1 e65fb4.yaml +++ /dev/null @@ -1,285 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -Description: 'Updated Taboo cards to match the October 2020 taboo list. - - - Taboo assets can now spawn with ammo/secrets/charges/etc. - - - Updated the FAQ pdf in the rulebooks gun.' -DragSelectable: true -GMNotes: '' -GUID: e65fb4 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Notecard -Nickname: Arkham SCE 1.501 - 11/1/2020 - Page 1 -Snap: true -States: - '2': - Autoraise: true - ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 - Description: 'The Symphony of Erich Zann fan scenario is no longer hiding in Carnevale - of Horrors. - - - Auto Setup on The Side Missions box has been temporarily disabled, due to a - bug where fan-made content would be laid out in the same spot as official side - scenarios. We need more time to figure this out, sorry!' - DragSelectable: true - GMNotes: '' - GUID: 3cdeaa - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Arkham SCE 1.501 - 11/1/2020 - Page 2 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 23.7534962 - posY: 1.51452851 - posZ: -13.1286354 - rotX: 0.0798722357 - rotY: 89.9810944 - rotZ: 359.9831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - '3': - Autoraise: true - ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 - Description: 'Removed some more orphaned scripting zones. - - - Fixed images in Jim Culver''s prebuilt starter deck. - - - Waking Nightmare''s Infestation Bag now auto-randomizes.' - DragSelectable: true - GMNotes: '' - GUID: 51343e - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Arkham SCE 1.501 - 11/1/2020 - Page 3 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 23.7534943 - posY: 1.51452839 - posZ: -13.1286325 - rotX: 0.07987241 - rotY: 89.9810944 - rotZ: 359.9831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - '4': - Autoraise: true - ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 - Description: 'Added missing location clue data for Carnevale of Horrors. - - - Fixed Deck Importer from sometimes importing the wrong version of Forbidden - Tome. - - - Fixed missing cards in Return to Heart of the Elders Part B''s "Vengeance Deck."' - DragSelectable: true - GMNotes: '' - GUID: b31068 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Arkham SCE 1.501 - 11/1/2020 - Page 4 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 23.7534924 - posY: 1.51452839 - posZ: -13.1286287 - rotX: 0.07987171 - rotY: 89.9811 - rotZ: 359.9831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - '5': - Autoraise: true - ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 - Description: 'Added Miskatonic Mouse, a new Fan Scenario by TerranChef. - - - Updated the following fan campaigns/scenarios to match workshop updates: Flesh - and Blood, Alice in Wonderland, The Legend of Sleepy Hollow, Kaimonogatari, - Dark Matter. Updated Kaimonogatari Custom Investigators as well. The custom - player cards are included too.' - DragSelectable: true - GMNotes: '' - GUID: 5bfd52 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Arkham SCE 1.501 - 11/1/2020 - Page 5 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 23.75349 - posY: 1.51452839 - posZ: -13.1286259 - rotX: 0.07987269 - rotY: 89.9811 - rotZ: 359.9831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - '6': - Autoraise: true - ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 - Description: 'Thanks to script additions by Tikatoy, the Bless/Curse Token Manager - now works even when loading a saved game mid-scenario. - - - Added scenario guide PDFs to Carnevale of Horrors and Curse of the Rougarou, - courtesy of Serendipigans.' - DragSelectable: true - GMNotes: '' - GUID: 9ac94b - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Arkham SCE 1.501 - 11/1/2020 - Page 6 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 23.7534885 - posY: 1.51452851 - posZ: -13.128623 - rotX: 0.07987244 - rotY: 89.9811 - rotZ: 359.9831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - '7': - Autoraise: true - ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 - Description: Special thanks to everyone who continues to post amazing scripts, - suggestions, fan content, leaks, and bug reports! There've been so many excellent - community contributions that we've already filled out a ton of patch notes with - just this much so far! To make things manageable, more will be added in a future - update very soon. Thank you all for your patience! - DragSelectable: true - GMNotes: '' - GUID: 97442b - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Arkham SCE 1.501 - 11/1/2020 - Page 7 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 23.7534847 - posY: 1.51452839 - posZ: -13.12862 - rotX: 0.07987291 - rotY: 89.98113 - rotZ: 359.9831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -Sticky: true -Tooltip: true -Transform: - posX: 23.75 - posY: 1.51 - posZ: -13.13 - rotX: 0.08 - rotY: 89.98 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Notecard Arkham SCE 1.51 - 1172020 - Page 1 094d4d.yaml b/unpacked/Notecard Arkham SCE 1.51 - 1172020 - Page 1 094d4d.yaml new file mode 100644 index 000000000..08021da7e --- /dev/null +++ b/unpacked/Notecard Arkham SCE 1.51 - 1172020 - Page 1 094d4d.yaml @@ -0,0 +1,202 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: 'Added In Too Deep. Thank you to cafin8d for providing excellent scans + once again! + + + Added Gloria Goldberg, the new promo investigator! + + + Fixed issue with the Side Missions box. Auto layout has been re-enabled. + + + ' +DragSelectable: true +GMNotes: '' +GUID: 094d4d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Arkham SCE 1.51 - 11/7/2020 - Page 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: 'Added new previewed cards from Horror in High Gear to the leaks + box. + + + Fixed missing location connector in Undimensioned and Unseen. + + + Added in Tikatoy''s Upkeep Button! Now all player mats have a button that draws + a card (up to 5 for Patrice) and gains a resource (2 for Jenny).' + DragSelectable: true + GMNotes: '' + GUID: dee2a5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Notecard + Nickname: Arkham SCE 1.51 - 11/7/2020 - Page 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5248127 + posY: 1.52305555 + posZ: -8.925274 + rotX: 0.07987905 + rotY: 89.99975 + 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: "Also added in Tikatoy's Depths of Yoth setup tool. It appears in\ + \ the scenario's setup, and automates most of the generation of each level.\r\ + \n\nAdded in tadgh's chaos bag stat tracker. This tracks chaos tokens pulled\ + \ by each player, though it only tracks them if they actually land on the player\ + \ mat.\r" + DragSelectable: true + GMNotes: '' + GUID: bda909 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Notecard + Nickname: Arkham SCE 1.51 - 11/7/2020 - Page 3 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5248165 + posY: 1.52305579 + posZ: -8.925277 + rotX: 0.07987877 + rotY: 89.99973 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Added Maximillion Pegasus, a new fan-made investigator by Game!\n\ + \nAdded two new tablets to the rules/tablets gun. One shows off B\xF4L's collection\ + \ of custom playmat images. The other shows off Mysterious Chanting, a blog\ + \ for Arkham custom content." + DragSelectable: true + GMNotes: '' + GUID: 1fa260 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Notecard + Nickname: Arkham SCE 1.51 - 11/7/2020 - Page 4 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.52482 + posY: 1.52305555 + posZ: -8.925279 + rotX: 0.07987883 + rotY: 89.99972 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '5': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Set default resources count to 5 for each player.\r\n\r\nAt long\ + \ last, set hands to hidden by default.\n\nThank you to everyone for your patience\ + \ and for the feedback, scans, and content!" + DragSelectable: true + GMNotes: '' + GUID: 81727f + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Notecard + Nickname: Arkham SCE 1.51 - 11/7/2020 - Page 5 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5248241 + posY: 1.52305555 + posZ: -8.925282 + rotX: 0.0798775256 + rotY: 89.9997 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 23.75 + posY: 1.51 + posZ: -13.13 + rotX: 0.08 + rotY: 90.0 + rotZ: 359.98 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: ''