{ "GUID": "814e2a", "Name": "Custom_Model_Bag", "Transform": { "posX": 25.6868286, "posY": 1.4814992, "posZ": 12.1943111, "rotX": -6.472215E-08, "rotY": 269.9705, "rotZ": -3.63810841E-07, "scaleX": 1.754106, "scaleY": 0.365108132, "scaleZ": 1.92078626 }, "Nickname": "Magical Girl Arkham Project", "Description": "", "GMNotes": "fancreations/investigators_touhou_project.json", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1903353113607751170/B835836D4DB21CA06206BF84EEAAD6B3E6C157CB/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 2 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"39eaa8\":{\"lock\":false,\"pos\":{\"x\":64.3357,\"y\":1.2965,\"z\":6.2389},\"rot\":{\"x\":0,\"y\":89.983,\"z\":0}},\"3bd90c\":{\"lock\":false,\"pos\":{\"x\":64.2815,\"y\":1.2965,\"z\":-1.4012},\"rot\":{\"x\":0,\"y\":89.9938,\"z\":0}},\"6db1e9\":{\"lock\":false,\"pos\":{\"x\":64.2956,\"y\":1.2965,\"z\":10.0573},\"rot\":{\"x\":0,\"y\":89.9958,\"z\":0}},\"6e8ff2\":{\"lock\":false,\"pos\":{\"x\":64.3056,\"y\":1.2965,\"z\":-5.2381},\"rot\":{\"x\":0,\"y\":89.9962,\"z\":0}},\"8e26e1\":{\"lock\":false,\"pos\":{\"x\":64.2861,\"y\":1.2965,\"z\":2.4135},\"rot\":{\"x\":0,\"y\":89.9953,\"z\":0}},\"a95226\":{\"lock\":false,\"pos\":{\"x\":64.3007,\"y\":1.2965,\"z\":-9.0582},\"rot\":{\"x\":0,\"y\":89.984,\"z\":0}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "39eaa8", "Name": "Bag", "Transform": { "posX": 64.3357, "posY": 1.29646468, "posZ": 6.2389, "rotX": -2.12138929E-07, "rotY": 89.98305, "rotZ": 6.933537E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Seeker", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171998888 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"10a210\":{\"lock\":false,\"pos\":{\"x\":58.2238,\"y\":1.2965,\"z\":-22.5426},\"rot\":{\"x\":0,\"y\":269.9898,\"z\":0}},\"2954ac\":{\"lock\":false,\"pos\":{\"x\":51.7149,\"y\":1.4951,\"z\":-26.2691},\"rot\":{\"x\":0,\"y\":270.0009,\"z\":0}},\"37d8ad\":{\"lock\":false,\"pos\":{\"x\":58.2238,\"y\":1.2965,\"z\":-14.8926},\"rot\":{\"x\":0,\"y\":270.0044,\"z\":0}},\"3a6906\":{\"lock\":false,\"pos\":{\"x\":51.7149,\"y\":1.2965,\"z\":-30.0891},\"rot\":{\"x\":0,\"y\":270.0018,\"z\":0}},\"3cb7d2\":{\"lock\":false,\"pos\":{\"x\":51.6238,\"y\":1.2965,\"z\":-14.8926},\"rot\":{\"x\":0,\"y\":270.0029,\"z\":0}},\"410f52\":{\"lock\":false,\"pos\":{\"x\":51.7149,\"y\":1.2965,\"z\":-22.4391},\"rot\":{\"x\":0,\"y\":270.0015,\"z\":0}},\"50799a\":{\"lock\":false,\"pos\":{\"x\":54.9238,\"y\":1.2965,\"z\":-30.1926},\"rot\":{\"x\":0,\"y\":270.0016,\"z\":0}},\"571dff\":{\"lock\":false,\"pos\":{\"x\":51.7149,\"y\":1.4951,\"z\":-18.6191},\"rot\":{\"x\":0,\"y\":269.9713,\"z\":0}},\"5ebd9b\":{\"lock\":false,\"pos\":{\"x\":58.2238,\"y\":1.4951,\"z\":-3.4126},\"rot\":{\"x\":0,\"y\":270.0097,\"z\":0}},\"67cd29\":{\"lock\":false,\"pos\":{\"x\":51.6238,\"y\":1.4951,\"z\":-11.0626},\"rot\":{\"x\":0,\"y\":270.0157,\"z\":0}},\"716d5b\":{\"lock\":false,\"pos\":{\"x\":54.9238,\"y\":1.2965,\"z\":-14.8926},\"rot\":{\"x\":0,\"y\":270.0028,\"z\":0}},\"7a3045\":{\"lock\":false,\"pos\":{\"x\":54.9238,\"y\":1.4951,\"z\":-3.4126},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"8eafd8\":{\"lock\":false,\"pos\":{\"x\":58.2238,\"y\":1.4951,\"z\":-18.7226},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"9652cd\":{\"lock\":false,\"pos\":{\"x\":54.9238,\"y\":1.4951,\"z\":-11.0626},\"rot\":{\"x\":0,\"y\":270.0095,\"z\":0}},\"a3d610\":{\"lock\":false,\"pos\":{\"x\":58.2238,\"y\":1.4951,\"z\":-11.0626},\"rot\":{\"x\":0,\"y\":270.0095,\"z\":0}},\"cce98c\":{\"lock\":false,\"pos\":{\"x\":54.9238,\"y\":1.4951,\"z\":-26.3726},\"rot\":{\"x\":0,\"y\":270.0096,\"z\":0}},\"e0000e\":{\"lock\":false,\"pos\":{\"x\":58.2238,\"y\":1.4951,\"z\":-26.3726},\"rot\":{\"x\":0,\"y\":270.0096,\"z\":0}},\"e00012\":{\"lock\":false,\"pos\":{\"x\":58.2238,\"y\":1.2965,\"z\":-30.1926},\"rot\":{\"x\":0,\"y\":270.0067,\"z\":0}},\"e0001a\":{\"lock\":false,\"pos\":{\"x\":54.9238,\"y\":1.2965,\"z\":-7.2426},\"rot\":{\"x\":0,\"y\":269.9897,\"z\":0}},\"e0001b\":{\"lock\":false,\"pos\":{\"x\":51.6238,\"y\":1.4951,\"z\":-3.4126},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"e0001e\":{\"lock\":false,\"pos\":{\"x\":51.6238,\"y\":1.2965,\"z\":-7.2426},\"rot\":{\"x\":0,\"y\":270.0045,\"z\":0}},\"e0002a\":{\"lock\":false,\"pos\":{\"x\":58.2238,\"y\":1.2965,\"z\":-7.2426},\"rot\":{\"x\":0,\"y\":269.9854,\"z\":0}},\"e00036\":{\"lock\":false,\"pos\":{\"x\":54.9238,\"y\":1.2965,\"z\":-22.5426},\"rot\":{\"x\":0,\"y\":269.9909,\"z\":0}},\"ffb75e\":{\"lock\":false,\"pos\":{\"x\":54.9238,\"y\":1.4951,\"z\":-18.7226},\"rot\":{\"x\":0,\"y\":269.989,\"z\":0}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "10a210", "Name": "Bag", "Transform": { "posX": 58.2238, "posY": 1.29646647, "posZ": -22.5426025, "rotX": 1.980463E-06, "rotY": 269.9895, "rotZ": -1.69532626E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ruler", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b3aba9", "Name": "Card", "Transform": { "posX": 57.6679, "posY": 3.51008248, "posZ": -23.6746387, "rotX": 359.936218, "rotY": 269.981384, "rotZ": 1.25189221, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"212101b6-d4dd-4a3b-9d9e-d8822376036f\",\"type\":\"Minicard\",\"id\":\"Z0630-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102800, "SidewaysCard": false, "CustomDeck": { "1028": { "FaceURL": "https://i.ibb.co/vDmywW1/a1a29144edf9.png", "BackURL": "https://i.ibb.co/1nmGnnb/fe17c363eb95.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1424f8", "Name": "Deck", "Transform": { "posX": 57.36728, "posY": 3.59279084, "posZ": -23.1277046, "rotX": 0.224959269, "rotY": 270.001465, "rotZ": 0.748634934, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 590900, 103100 ], "CustomDeck": { "5909": { "FaceURL": "https://i.ibb.co/xsYXJDJ/fee18078fef7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1031": { "FaceURL": "https://i.ibb.co/Jyycy17/1c2901162cef.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f00e59", "Name": "Card", "Transform": { "posX": 45.3792267, "posY": 1.49507713, "posZ": 26.4857883, "rotX": 0.000270331249, "rotY": 270.003418, "rotZ": -0.00176406163, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Perfectionism", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"64e76d91-5d24-4f42-bdba-5be30c5388a5\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 590900, "SidewaysCard": false, "CustomDeck": { "5909": { "FaceURL": "https://i.ibb.co/xsYXJDJ/fee18078fef7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0002e", "Name": "Card", "Transform": { "posX": 45.2023, "posY": 1.53672111, "posZ": 26.4174652, "rotX": 0.004998268, "rotY": 269.997253, "rotZ": -0.00108453014, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Way of the Magical Girl", "Description": "For Idiots with Faulty Brains", "GMNotes": "{\"TtsZoopGuid\":\"68542f6d-b824-4438-a287-4ede19df5f85\",\"type\":\"Asset\",\"uses\":[{\"count\":4,\"token\":\"resource\",\"type\":\"Secret\"}],\"class\":\"Neutral\",\"traits\":\"Item. Tome\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103100, "SidewaysCard": false, "CustomDeck": { "1031": { "FaceURL": "https://i.ibb.co/Jyycy17/1c2901162cef.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "2954ac", "Name": "Card", "Transform": { "posX": 51.7149, "posY": 1.49510384, "posZ": -26.2691, "rotX": -2.08579152E-07, "rotY": 270.000916, "rotZ": -7.632848E-09, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Uttakatta", "Description": "The Freelancer", "GMNotes": "{\"TtsZoopGuid\":\"c15ff8d4-6640-461d-9984-b88252777d1d\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Freelancer\",\"agilityIcons\":2,\"combatIcons\":3,\"intellectIcons\":5,\"willpowerIcons\":2,\"id\":\"Z1365\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606300, "SidewaysCard": false, "CustomDeck": { "6063": { "FaceURL": "https://i.ibb.co/2YMpFLY/06a3696db4f7.png", "BackURL": "https://i.ibb.co/wBhCwvn/1b447db43cce.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "37d8ad", "Name": "Bag", "Transform": { "posX": 58.2238, "posY": 1.2964654, "posZ": -14.8926, "rotX": 1.06514722E-06, "rotY": 270.005066, "rotZ": -7.632115E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Detec Bell", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e19896", "Name": "Card", "Transform": { "posX": 57.7628975, "posY": 3.57734632, "posZ": -14.9613647, "rotX": 359.435272, "rotY": 270.004852, "rotZ": 358.988434, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e61744c0-5c72-41de-aca0-19ea2861eef8\",\"type\":\"Minicard\",\"id\":\"Z6267-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101200, "SidewaysCard": false, "CustomDeck": { "1012": { "FaceURL": "https://i.ibb.co/WBjqCSg/53e2867bc3d1.png", "BackURL": "https://i.ibb.co/mTVg0Mk/dc9f5885c571.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed11dc", "Name": "Deck", "Transform": { "posX": 57.7605171, "posY": 3.59757876, "posZ": -15.0729485, "rotX": 359.7389, "rotY": 270.000061, "rotZ": 359.9561, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 591700, 591600 ], "CustomDeck": { "5917": { "FaceURL": "https://i.ibb.co/Xy0f7WD/aea87a8c50e2.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5916": { "FaceURL": "https://i.ibb.co/DwmVmQz/327778b5a7c1.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f5d54f", "Name": "Card", "Transform": { "posX": 62.3724747, "posY": 1.49508417, "posZ": -16.8486366, "rotX": 0.000207382793, "rotY": 270.0, "rotZ": -0.00131866208, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pareidolia", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"96946eae-07d8-4bc4-8259-347a6bc86dfd\",\"type\":\"Enemy\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591700, "SidewaysCard": false, "CustomDeck": { "5917": { "FaceURL": "https://i.ibb.co/Xy0f7WD/aea87a8c50e2.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00015", "Name": "Card", "Transform": { "posX": 62.28872, "posY": 1.536716, "posZ": -16.8450527, "rotX": -0.00272304029, "rotY": 270.0, "rotZ": -0.00156872312, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Material Communion", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1a61f82c-3435-4068-b4db-6ad8ab823bbc\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Talent. Ritual\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591600, "SidewaysCard": false, "CustomDeck": { "5916": { "FaceURL": "https://i.ibb.co/DwmVmQz/327778b5a7c1.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "3a6906", "Name": "Bag", "Transform": { "posX": 51.7149, "posY": 1.2964654, "posZ": -30.0891, "rotX": 3.033285E-07, "rotY": 270.00177, "rotZ": -1.4692253E-09, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Uttakatta", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999753 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "0006d2", "Name": "Card", "Transform": { "posX": 22.4787941, "posY": 3.57068777, "posZ": 48.0274124, "rotX": 358.967163, "rotY": 269.9894, "rotZ": 359.592, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0588d199-4260-46c3-b7a9-a0493d848fab\",\"type\":\"Minicard\",\"id\":\"Z1365-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606400, "SidewaysCard": false, "CustomDeck": { "6064": { "FaceURL": "https://i.ibb.co/4N6cWQW/e36750d4bfd7.png", "BackURL": "https://i.ibb.co/9nkdwsk/6c641cbd8d02.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "15740c", "Name": "Deck", "Transform": { "posX": 21.1723251, "posY": 3.589671, "posZ": 48.11851, "rotX": 0.602498055, "rotY": 269.998474, "rotZ": 359.706055, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 267100, 267300 ], "CustomDeck": { "2671": { "FaceURL": "https://i.ibb.co/K7XKmsW/02fd713bd953.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2673": { "FaceURL": "https://i.ibb.co/mRrvYP4/fb5b4ecf5252.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "3c7d82", "Name": "Card", "Transform": { "posX": 29.2975578, "posY": 1.49508774, "posZ": 61.3063278, "rotX": 0.000165161953, "rotY": 270.000061, "rotZ": -0.00107515638, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Empty Smile", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"48b5b81a-61c0-4b14-93da-6160c11f15cd\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267100, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "https://i.ibb.co/K7XKmsW/02fd713bd953.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2f0034", "Name": "Card", "Transform": { "posX": 28.9460125, "posY": 1.53663349, "posZ": 61.56115, "rotX": 0.006403368, "rotY": 270.000153, "rotZ": 359.991333, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ensnaring Bubble", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9c402147-a7eb-432a-b88f-2a537860c01b\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Spell\",\"agilityIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267300, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "https://i.ibb.co/mRrvYP4/fb5b4ecf5252.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "3cb7d2", "Name": "Bag", "Transform": { "posX": 51.6238, "posY": 1.29646611, "posZ": -14.8926, "rotX": -3.04774153E-06, "rotY": 270.002625, "rotZ": -9.026301E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "CQ Angel Hamuel", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7a3181", "Name": "Card", "Transform": { "posX": 26.0168953, "posY": 3.55862451, "posZ": -20.4573269, "rotX": 0.06111041, "rotY": 269.966766, "rotZ": 358.6509, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"179c4987-d7cc-45fe-83d1-4959749c3c3b\",\"type\":\"Minicard\",\"id\":\"Z3472-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 592200, "SidewaysCard": false, "CustomDeck": { "5922": { "FaceURL": "https://i.ibb.co/30hTWyw/d7e9e1d8eec0.png", "BackURL": "https://i.ibb.co/Chw08YP/b484663703a4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2f3ad1", "Name": "Deck", "Transform": { "posX": 50.7205048, "posY": 3.59057164, "posZ": -14.6228685, "rotX": 0.231714755, "rotY": 269.9994, "rotZ": 359.182, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100700, 592100 ], "CustomDeck": { "1007": { "FaceURL": "https://i.ibb.co/NWyTRFm/10f1b971b42f.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5921": { "FaceURL": "https://i.ibb.co/xMP1qyD/0ba0c376f7be.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0000a", "Name": "Card", "Transform": { "posX": 47.3917046, "posY": 1.49508655, "posZ": -16.3841782, "rotX": 0.0001759052, "rotY": 270.001068, "rotZ": -0.001155403, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rout", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"59f7da73-2430-42fa-babf-2c40e0d2a51c\",\"type\":\"Treachery\",\"traits\":\"Blunder\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100700, "SidewaysCard": false, "CustomDeck": { "1007": { "FaceURL": "https://i.ibb.co/NWyTRFm/10f1b971b42f.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3a5c8f", "Name": "Card", "Transform": { "posX": 47.26867, "posY": 1.53671134, "posZ": -16.3511219, "rotX": 0.004365562, "rotY": 270.008026, "rotZ": -0.00509212539, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Reinforcements", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"35b013ba-7c08-4b42-bc7c-82922dc05663\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Tactic\",\"agilityIcons\":1,\"intellectIcons\":1,\"wildIcons\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 592100, "SidewaysCard": false, "CustomDeck": { "5921": { "FaceURL": "https://i.ibb.co/xMP1qyD/0ba0c376f7be.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "410f52", "Name": "Bag", "Transform": { "posX": 51.7149, "posY": 1.29646587, "posZ": -22.4391, "rotX": 4.6305334E-07, "rotY": 270.001617, "rotZ": -1.97229133E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Clarissa Toothedge", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999753 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4e4403", "Name": "Card", "Transform": { "posX": 26.9991322, "posY": 3.57043266, "posZ": 38.74864, "rotX": 359.710632, "rotY": 270.00592, "rotZ": 1.20551336, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f56a969e-b2c6-4261-b503-b72f4669202f\",\"type\":\"Minicard\",\"id\":\"Z9984-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 269900, "SidewaysCard": false, "CustomDeck": { "2699": { "FaceURL": "https://i.ibb.co/sJQhcJs/3a874e51760f.png", "BackURL": "https://i.ibb.co/VTdYYTY/27d6d3981d3e.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "87b82e", "Name": "Deck", "Transform": { "posX": 50.8826, "posY": 3.58756828, "posZ": -22.7873821, "rotX": 0.553510666, "rotY": 270.0021, "rotZ": 0.447209835, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 269800, 606900 ], "CustomDeck": { "2698": { "FaceURL": "https://i.ibb.co/mcXZTPT/b6c0db473827.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "6069": { "FaceURL": "https://i.ibb.co/0Y3M2kB/a063b6058b74.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "ebf874", "Name": "Card", "Transform": { "posX": 49.89899, "posY": 1.49505222, "posZ": -38.8053055, "rotX": 0.000521748967, "rotY": 269.999969, "rotZ": -0.00343354372, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Navi-Ru", "Description": "Shifty Uncle", "GMNotes": "{\"TtsZoopGuid\":\"d80b93c6-dbb3-46e7-bf64-c54a30c17106\",\"type\":\"Asset\",\"traits\":\"Ally. Sorcerer\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 269800, "SidewaysCard": false, "CustomDeck": { "2698": { "FaceURL": "https://i.ibb.co/mcXZTPT/b6c0db473827.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c2c618", "Name": "Card", "Transform": { "posX": 49.7510223, "posY": 1.53079784, "posZ": -38.7413368, "rotX": 0.0204419158, "rotY": 270.000061, "rotZ": 359.974457, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hunter's Mark", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c6278be8-b537-40f9-9716-758d225b6a3e\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Talent\",\"agilityIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606900, "SidewaysCard": false, "CustomDeck": { "6069": { "FaceURL": "https://i.ibb.co/0Y3M2kB/a063b6058b74.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "50799a", "Name": "Bag", "Transform": { "posX": 54.9238, "posY": 1.29646564, "posZ": -30.1926, "rotX": 2.7930783E-08, "rotY": 270.001617, "rotZ": -2.79299961E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kurukuru", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0001f", "Name": "Card", "Transform": { "posX": 54.195694, "posY": 3.57357049, "posZ": -30.1322231, "rotX": 0.2266697, "rotY": 269.9969, "rotZ": 358.4374, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"913c0025-ca5f-46fb-b819-1723b7b99df4\",\"type\":\"Minicard\",\"id\":\"Z5841-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591200, "SidewaysCard": false, "CustomDeck": { "5912": { "FaceURL": "https://i.ibb.co/s1Q2B1J/e9477ff25a1c.png", "BackURL": "https://i.ibb.co/fVgb5CP/c18d487b4544.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "88b255", "Name": "Deck", "Transform": { "posX": 54.5376434, "posY": 3.58864379, "posZ": -29.81163, "rotX": 359.81424, "rotY": 270.0014, "rotZ": 359.139069, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 102300, 591100 ], "CustomDeck": { "1023": { "FaceURL": "https://i.ibb.co/VBmCCjF/60bd82d6f3e1.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5911": { "FaceURL": "https://i.ibb.co/5sGkCgY/2dd55c23f401.png", "BackURL": "https://i.ibb.co/cQrNxBR/d156e11fda24.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00022", "Name": "Card", "Transform": { "posX": 57.0080223, "posY": 1.49508548, "posZ": 16.4907265, "rotX": 0.0001841542, "rotY": 269.999969, "rotZ": -0.00121958053, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rumor", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3c4b4236-912c-4ef6-9473-6f583f2e165f\",\"type\":\"Treachery\",\"traits\":\"Scheme\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102300, "SidewaysCard": false, "CustomDeck": { "1023": { "FaceURL": "https://i.ibb.co/VBmCCjF/60bd82d6f3e1.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4c96df", "Name": "Card", "Transform": { "posX": 56.718708, "posY": 1.53668571, "posZ": 16.588171, "rotX": 0.005464893, "rotY": 270.0, "rotZ": 359.993774, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Self-Control", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f14f5c76-695b-4cc1-8708-622efe00101f\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Practiced. Expert\",\"wildIcons\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591100, "SidewaysCard": false, "CustomDeck": { "5911": { "FaceURL": "https://i.ibb.co/5sGkCgY/2dd55c23f401.png", "BackURL": "https://i.ibb.co/cQrNxBR/d156e11fda24.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "571dff", "Name": "Card", "Transform": { "posX": 51.7149, "posY": 1.49510384, "posZ": -18.6191, "rotX": -2.84907344E-07, "rotY": 269.9713, "rotZ": -9.636682E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Clarissa Toothedge", "Description": "The Tracker", "GMNotes": "{\"TtsZoopGuid\":\"58c9967a-fe65-47e5-b137-f84d74efd7e0\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Hunter. Wayfarer\",\"agilityIcons\":5,\"combatIcons\":1,\"intellectIcons\":4,\"willpowerIcons\":2,\"id\":\"Z9984\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 269700, "SidewaysCard": false, "CustomDeck": { "2697": { "FaceURL": "https://i.ibb.co/6BGQ649/5e966ce7c467.png", "BackURL": "https://i.ibb.co/9rdmb4Y/7cb34549ca0a.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5ebd9b", "Name": "Card", "Transform": { "posX": 58.2238, "posY": 1.495104, "posZ": -3.4126, "rotX": -8.032542E-08, "rotY": 270.009735, "rotZ": 7.133852E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Pfle", "Description": "The Heiress", "GMNotes": "{\"TtsZoopGuid\":\"a882f52a-92b4-49e0-88a4-3516f8f33be6\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Socialite. Conspirator\",\"agilityIcons\":1,\"combatIcons\":1,\"intellectIcons\":5,\"willpowerIcons\":4,\"id\":\"Z0201\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 590700, "SidewaysCard": false, "CustomDeck": { "5907": { "FaceURL": "https://i.ibb.co/y8pBLhH/c41f80e4a633.png", "BackURL": "https://i.ibb.co/D8Y496D/1d83c85770f0.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "67cd29", "Name": "Card", "Transform": { "posX": 51.6238, "posY": 1.49510384, "posZ": -11.0626, "rotX": 1.63393814E-08, "rotY": 270.0157, "rotZ": 6.794011E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "CQ Angel Hamuel", "Description": "The Strategist", "GMNotes": "{\"TtsZoopGuid\":\"2437065b-6fc6-418f-8bff-9ef15587266e\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Assistant\",\"agilityIcons\":2,\"combatIcons\":3,\"intellectIcons\":4,\"willpowerIcons\":3,\"id\":\"Z3472\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 592000, "SidewaysCard": false, "CustomDeck": { "5920": { "FaceURL": "https://i.ibb.co/HXSHpJP/eaa519d167a1.png", "BackURL": "https://i.ibb.co/JvB2Zh4/45a6f01d7bee.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "716d5b", "Name": "Bag", "Transform": { "posX": 54.9238, "posY": 1.2964642, "posZ": -14.8926, "rotX": 1.58561534E-06, "rotY": 270.0028, "rotZ": 2.255457E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "7753", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 21.8118248, "posY": 3.567221, "posZ": -20.93652, "rotX": 359.56723, "rotY": 269.995239, "rotZ": 1.2375201, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40764e15-66b5-4181-894b-fc72aec51752\",\"type\":\"Minicard\",\"id\":\"Z4360-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591900, "SidewaysCard": false, "CustomDeck": { "5919": { "FaceURL": "https://i.ibb.co/DLXgSVS/a4f02e4495f3.png", "BackURL": "https://i.ibb.co/QKQCwZG/909a51b18558.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "888335", "Name": "Deck", "Transform": { "posX": 54.53514, "posY": 3.5936017, "posZ": -14.7875967, "rotX": 359.725769, "rotY": 270.0016, "rotZ": 359.329346, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100200, 100300 ], "CustomDeck": { "1002": { "FaceURL": "https://i.ibb.co/NNtz5PD/ee40f496114f.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1003": { "FaceURL": "https://i.ibb.co/L65hfvB/b24c009e6a97.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00003", "Name": "Card", "Transform": { "posX": 50.0683136, "posY": 1.49508965, "posZ": -17.9450531, "rotX": 0.00014837335, "rotY": 270.0, "rotZ": -0.0009507271, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alcoholism", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a0cc57ad-052a-4d3a-85b7-269ce4a95c31\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100200, "SidewaysCard": false, "CustomDeck": { "1002": { "FaceURL": "https://i.ibb.co/NNtz5PD/ee40f496114f.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 50.03922, "posY": 1.53677428, "posZ": -18.29545, "rotX": -0.0005461718, "rotY": 270.0, "rotZ": -0.003948686, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Magical Goggles", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4c492be7-0cfa-4038-bf64-55fff8bcb753\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Tool\",\"intellectIcons\":2,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/L65hfvB/b24c009e6a97.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "7a3045", "Name": "Card", "Transform": { "posX": 54.9238, "posY": 1.49510384, "posZ": -3.4125998, "rotX": -2.7598395E-07, "rotY": 270.0, "rotZ": -4.63787551E-08, "scaleX": 0.7828432, "scaleY": 1.0, "scaleZ": 0.7828432 }, "Nickname": "Princess Deluge", "Description": "The Vengeful", "GMNotes": "{\"TtsZoopGuid\":\"57bd8593-02ed-493b-838e-f0311afaf953\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Hunter\",\"agilityIcons\":1,\"combatIcons\":4,\"intellectIcons\":3,\"willpowerIcons\":4,\"id\":\"Z2214\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607500, "SidewaysCard": false, "CustomDeck": { "6075": { "FaceURL": "https://i.ibb.co/hL5VVR1/fa791334fd08.png", "BackURL": "https://i.ibb.co/QdFXTkD/a55694e5d1bf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8eafd8", "Name": "Card", "Transform": { "posX": 58.2238, "posY": 1.49510384, "posZ": -18.7226, "rotX": -1.459712E-07, "rotY": 270.000031, "rotZ": -5.38011946E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Ruler", "Description": "The Office Lady", "GMNotes": "{\"TtsZoopGuid\":\"7ac7bfc5-52f6-4a4f-8a15-859f7169d295\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Assistant\",\"agilityIcons\":1,\"combatIcons\":3,\"intellectIcons\":4,\"willpowerIcons\":4,\"id\":\"Z0630\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102900, "SidewaysCard": false, "CustomDeck": { "1029": { "FaceURL": "https://i.ibb.co/mvgpbL6/1bd6308262ef.png", "BackURL": "https://i.ibb.co/NpBQRnD/a371ed3d0d49.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9652cd", "Name": "Card", "Transform": { "posX": 54.9238, "posY": 1.49510372, "posZ": -11.0626, "rotX": -5.347204E-08, "rotY": 270.009521, "rotZ": -4.28025437E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "7753", "Description": "The Analyst", "GMNotes": "{\"TtsZoopGuid\":\"c82da4af-e0b4-44ac-9617-d441b24dc618\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Civic\",\"agilityIcons\":2,\"combatIcons\":1,\"intellectIcons\":5,\"willpowerIcons\":4,\"id\":\"Z4360\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591800, "SidewaysCard": false, "CustomDeck": { "5918": { "FaceURL": "https://i.ibb.co/8jHh2B4/e66bd5b37f3e.png", "BackURL": "https://i.ibb.co/BL4p1cm/35615f2199b4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a3d610", "Name": "Card", "Transform": { "posX": 58.2238, "posY": 1.49510384, "posZ": -11.0626, "rotX": -1.11050113E-07, "rotY": 270.009521, "rotZ": 4.431609E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Detec Bell", "Description": "The Private Investigator", "GMNotes": "{\"TtsZoopGuid\":\"1b0f9bce-2697-47e1-aa69-8ee330f3a8c0\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Detective\",\"agilityIcons\":2,\"combatIcons\":2,\"intellectIcons\":5,\"willpowerIcons\":3,\"id\":\"Z6267\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101300, "SidewaysCard": false, "CustomDeck": { "1013": { "FaceURL": "https://i.ibb.co/wsBmRgN/f35cbc0e1ebf.png", "BackURL": "https://i.ibb.co/Lz9mbGT/1f34fe2bd97c.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cce98c", "Name": "Card", "Transform": { "posX": 54.9238, "posY": 1.49510407, "posZ": -26.3726, "rotX": -7.765518E-08, "rotY": 270.009644, "rotZ": -7.20869764E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Kuru-kuru Hime", "Description": "The Dancer", "GMNotes": "{\"TtsZoopGuid\":\"67a22d5d-7ab9-40a9-a863-eedfdc8ef63b\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Civic\",\"agilityIcons\":3,\"combatIcons\":1,\"intellectIcons\":4,\"willpowerIcons\":4,\"id\":\"Z5841\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102100, "SidewaysCard": false, "CustomDeck": { "1021": { "FaceURL": "https://i.ibb.co/Bs31xYt/a48cf7aea704.png", "BackURL": "https://i.ibb.co/878VYrF/9e200d86009e.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0000e", "Name": "Card", "Transform": { "posX": 58.2238, "posY": 1.495104, "posZ": -26.3726, "rotX": 2.215191E-06, "rotY": 270.009644, "rotZ": -4.680076E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Cannon Catherine", "Description": "The Cannoneer", "GMNotes": "{\"TtsZoopGuid\":\"f586f8b4-48e5-48f2-8588-d7de14f15a9f\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Construct\",\"agilityIcons\":1,\"combatIcons\":4,\"intellectIcons\":5,\"willpowerIcons\":2,\"id\":\"Z7675\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 592400, "SidewaysCard": false, "CustomDeck": { "5924": { "FaceURL": "https://i.ibb.co/GtFxVsx/a13376ade4cf.png", "BackURL": "https://i.ibb.co/Zmj8sgK/c9f37ca608aa.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00012", "Name": "Bag", "Transform": { "posX": 58.2238, "posY": 1.29646492, "posZ": -30.1926, "rotX": 8.580222E-08, "rotY": 270.0063, "rotZ": -3.876308E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cannon Catherine", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1fdcd2", "Name": "Card", "Transform": { "posX": 31.4762535, "posY": 3.578623, "posZ": -21.2506714, "rotX": 359.602142, "rotY": 270.003357, "rotZ": 359.016449, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"57eadbb1-4eb7-4375-a61b-4dc04125fdad\",\"type\":\"Minicard\",\"id\":\"Z7675-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100800, "SidewaysCard": false, "CustomDeck": { "1008": { "FaceURL": "https://i.ibb.co/0JxdKGB/f658e51f133d.png", "BackURL": "https://i.ibb.co/m0W550J/340a99a2cd1d.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "96a07b", "Name": "Deck", "Transform": { "posX": 58.3838577, "posY": 3.58952641, "posZ": -30.559866, "rotX": 359.392151, "rotY": 269.997, "rotZ": 0.208293721, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 101100, 592300 ], "CustomDeck": { "1011": { "FaceURL": "https://i.ibb.co/qy40XcG/0a0f99e01d93.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5923": { "FaceURL": "https://i.ibb.co/Vqh34H9/46d39ceb4e1a.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00010", "Name": "Card", "Transform": { "posX": 57.3827057, "posY": 1.495084, "posZ": 3.45055628, "rotX": 0.000197699614, "rotY": 269.999969, "rotZ": -0.00131269859, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cleaning Up", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d5a7441-139c-4a82-b335-ff11c97f228a\",\"type\":\"Treachery\",\"traits\":\"Task\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101100, "SidewaysCard": false, "CustomDeck": { "1011": { "FaceURL": "https://i.ibb.co/qy40XcG/0a0f99e01d93.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ceb04c", "Name": "Card", "Transform": { "posX": 56.9807358, "posY": 1.53664768, "posZ": 3.61292219, "rotX": 0.00667193858, "rotY": 269.999969, "rotZ": 359.992279, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cannon", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"14b5ae84-dc24-4256-8535-2b70cd5790fe\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Weapon. Firearm\",\"combatIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":5}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 592300, "SidewaysCard": false, "CustomDeck": { "5923": { "FaceURL": "https://i.ibb.co/Vqh34H9/46d39ceb4e1a.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0001a", "Name": "Bag", "Transform": { "posX": 54.9238, "posY": 1.29646468, "posZ": -7.2426, "rotX": -7.867062E-08, "rotY": 269.9893, "rotZ": 3.80568139E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Princess Deluge", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00014", "Name": "Card", "Transform": { "posX": 54.3406372, "posY": 3.57213664, "posZ": -7.77400446, "rotX": 359.8811, "rotY": 269.99707, "rotZ": 1.63225281, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"83a91fae-42cf-41d4-8ea9-61ca55256be1\",\"type\":\"Minicard\",\"id\":\"Z2214-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595400, "SidewaysCard": false, "CustomDeck": { "5954": { "FaceURL": "https://i.ibb.co/wQjxq81/b9e564a97732.png", "BackURL": "https://i.ibb.co/XW3Fgxh/f4ac3ea21518.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e42f1f", "Name": "Deck", "Transform": { "posX": 54.56427, "posY": 3.614567, "posZ": -7.26157665, "rotX": 359.658722, "rotY": 270.0019, "rotZ": 359.550476, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100500, 100500, 100500, 100300, 100400, 101400 ], "CustomDeck": { "1005": { "FaceURL": "https://i.ibb.co/1TwQw73/5a02d9bf5baa.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1003": { "FaceURL": "https://i.ibb.co/J3hSscD/c607fb41fec5.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1004": { "FaceURL": "https://i.ibb.co/zn03G9F/c75e93881ee7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1014": { "FaceURL": "https://i.ibb.co/MgvvSC4/9c68ae29cf72.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00006", "Name": "Card", "Transform": { "posX": 45.65554, "posY": 1.49506915, "posZ": -8.677349, "rotX": 0.000370932335, "rotY": 270.00058, "rotZ": -0.002337917, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vengeance", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7182481e-1943-4644-b8d7-3263ab1a222a\",\"type\":\"Treachery\",\"traits\":\"Task\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100500, "SidewaysCard": false, "CustomDeck": { "1005": { "FaceURL": "https://i.ibb.co/1TwQw73/5a02d9bf5baa.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "23c006", "Name": "Card", "Transform": { "posX": 45.8196678, "posY": 1.537328, "posZ": -8.750426, "rotX": 359.99408, "rotY": 270.00058, "rotZ": -0.00145500165, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vengeance", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7182481e-1943-4644-b8d7-3263ab1a222a\",\"type\":\"Treachery\",\"traits\":\"Task\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100500, "SidewaysCard": false, "CustomDeck": { "1005": { "FaceURL": "https://i.ibb.co/1TwQw73/5a02d9bf5baa.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "81dd8a", "Name": "Card", "Transform": { "posX": 45.8196678, "posY": 1.56788635, "posZ": -8.750426, "rotX": -0.00189779082, "rotY": 270.00058, "rotZ": -0.000414265844, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vengeance", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7182481e-1943-4644-b8d7-3263ab1a222a\",\"type\":\"Treachery\",\"traits\":\"Task\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100500, "SidewaysCard": false, "CustomDeck": { "1005": { "FaceURL": "https://i.ibb.co/1TwQw73/5a02d9bf5baa.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 44.79793, "posY": 1.49509144, "posZ": -11.559453, "rotX": 0.000137024021, "rotY": 269.998779, "rotZ": -0.0008441268, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Shufflin - Ace of Spades", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"61e741cc-2275-4abc-a4e0-78c04fd28999\",\"type\":\"Enemy\",\"traits\":\"Humanoid. Magical Girl. Construct\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/J3hSscD/c607fb41fec5.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00005", "Name": "Card", "Transform": { "posX": 44.732872, "posY": 1.536689, "posZ": -11.4256544, "rotX": -0.00225455, "rotY": 270.0, "rotZ": -0.00233254465, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Shufflin", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"314205eb-61cd-4963-803b-62cd59a80a01\",\"type\":\"Enemy\",\"traits\":\"Humanoid. Magical Girl. Construct\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100400, "SidewaysCard": false, "CustomDeck": { "1004": { "FaceURL": "https://i.ibb.co/zn03G9F/c75e93881ee7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00015", "Name": "Card", "Transform": { "posX": 45.64449, "posY": 1.59960473, "posZ": -8.513842, "rotX": -0.000413126661, "rotY": 270.000061, "rotZ": -0.00039869966, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hounded", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7cc8fd8c-a44f-4104-bbb1-4e949ae78fd4\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Tactic\",\"combatIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101400, "SidewaysCard": false, "CustomDeck": { "1014": { "FaceURL": "https://i.ibb.co/MgvvSC4/9c68ae29cf72.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0001b", "Name": "Card", "Transform": { "posX": 51.6238, "posY": 1.4951036, "posZ": -3.4126, "rotX": -2.13461732E-07, "rotY": 269.999939, "rotZ": 1.844029E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Glassiane", "Description": "The Observer", "GMNotes": "{\"TtsZoopGuid\":\"d5a0c2fa-3b8c-432c-9da2-15650f2de711\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl. Entrepreneur. Hunter\",\"agilityIcons\":4,\"combatIcons\":1,\"intellectIcons\":4,\"willpowerIcons\":3,\"id\":\"Z8959\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591400, "SidewaysCard": false, "CustomDeck": { "5914": { "FaceURL": "https://i.ibb.co/WBxWJVT/ccaa4a884319.png", "BackURL": "https://i.ibb.co/3Y65X1D/c5305e07768c.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0001e", "Name": "Bag", "Transform": { "posX": 51.6238, "posY": 1.29646623, "posZ": -7.242599, "rotX": 1.7711438E-05, "rotY": 270.0044, "rotZ": 4.928144E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Glassiane", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00019", "Name": "Card", "Transform": { "posX": 50.7048454, "posY": 3.57419634, "posZ": -7.26158667, "rotX": 0.7277121, "rotY": 269.992859, "rotZ": 358.862122, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c0102107-6910-49b6-a355-e1562e177c1f\",\"type\":\"Minicard\",\"id\":\"Z8959-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101600, "SidewaysCard": false, "CustomDeck": { "1016": { "FaceURL": "https://i.ibb.co/5RJP7RP/83529be32971.png", "BackURL": "https://i.ibb.co/Rbvp9qd/960264dec888.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "742c30", "Name": "Deck", "Transform": { "posX": 51.6288223, "posY": 3.59066343, "posZ": -7.230367, "rotX": 359.43457, "rotY": 270.001953, "rotZ": 359.623, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 591500, 591300 ], "CustomDeck": { "5915": { "FaceURL": "https://i.ibb.co/59G13dX/311a7bca83d3.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5913": { "FaceURL": "https://i.ibb.co/dDfRXnF/ce29af40bea5.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1abd6c", "Name": "Card", "Transform": { "posX": 44.71247, "posY": 1.49508238, "posZ": -8.062273, "rotX": 0.000216658038, "rotY": 270.000122, "rotZ": -0.00142813928, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Blinded", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7b3771fc-3081-43ab-a888-7a1c088d9658\",\"type\":\"Treachery\",\"traits\":\"Injury\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591500, "SidewaysCard": false, "CustomDeck": { "5915": { "FaceURL": "https://i.ibb.co/59G13dX/311a7bca83d3.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d5a3ed", "Name": "Card", "Transform": { "posX": 44.73577, "posY": 1.5367198, "posZ": -8.058201, "rotX": 0.00379560888, "rotY": 270.000122, "rotZ": -0.00194921449, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Magical Glasses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"fc713ae0-730e-4206-83a4-f012a2311838\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Tool\",\"agilityIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591300, "SidewaysCard": false, "CustomDeck": { "5913": { "FaceURL": "https://i.ibb.co/dDfRXnF/ce29af40bea5.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0002a", "Name": "Bag", "Transform": { "posX": 58.2238, "posY": 1.29646564, "posZ": -7.24259949, "rotX": -1.04639469E-06, "rotY": 269.9842, "rotZ": -1.06659024E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pfle", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e4a752", "Name": "Card", "Transform": { "posX": 21.713007, "posY": 3.56950331, "posZ": -5.81731033, "rotX": 0.160748929, "rotY": 270.0022, "rotZ": 1.58899188, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"500c351d-7b86-4c60-9645-0b68cfcd534c\",\"type\":\"Minicard\",\"id\":\"Z0201-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102400, "SidewaysCard": false, "CustomDeck": { "1024": { "FaceURL": "https://i.ibb.co/DpvChcp/7c3da0290e97.png", "BackURL": "https://i.ibb.co/1KBn6ch/7d1d5b413a1e.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "01864f", "Name": "Deck", "Transform": { "posX": 57.0145, "posY": 3.59259915, "posZ": -7.411764, "rotX": 0.5826085, "rotY": 269.999542, "rotZ": 359.914276, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 590600, 590800 ], "CustomDeck": { "5906": { "FaceURL": "https://i.ibb.co/jb9vHTB/3534000c45c1.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5908": { "FaceURL": "https://i.ibb.co/6t6BXL8/6ac53f797236.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "8ef989", "Name": "Card", "Transform": { "posX": 46.7553253, "posY": 1.49509931, "posZ": -10.2072439, "rotX": 6.10145544E-05, "rotY": 270.0, "rotZ": -0.0003213358, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Whistleblower", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e2786950-e513-4361-9fbb-aca7b7e5e645\",\"type\":\"Enemy\",\"traits\":\"Humanoid. Magical Girl\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 590600, "SidewaysCard": false, "CustomDeck": { "5906": { "FaceURL": "https://i.ibb.co/jb9vHTB/3534000c45c1.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c76d2b", "Name": "Card", "Transform": { "posX": 46.9660873, "posY": 1.53675652, "posZ": -10.1253605, "rotX": -0.00186686276, "rotY": 270.0, "rotZ": -0.00487397471, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Canary Wheelchair", "Description": "Shoots Lasers", "GMNotes": "{\"TtsZoopGuid\":\"febf85be-e12e-4e94-9ca6-3baf98be23c1\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Tool. Weapon. Ranged\",\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 590800, "SidewaysCard": false, "CustomDeck": { "5908": { "FaceURL": "https://i.ibb.co/6t6BXL8/6ac53f797236.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00036", "Name": "Bag", "Transform": { "posX": 54.9238, "posY": 1.29646492, "posZ": -22.5426025, "rotX": 2.47458024E-06, "rotY": 269.9901, "rotZ": 1.44944033E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wrappy Tip", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.905, "g": 0.898, "b": 0.171999127 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00034", "Name": "Card", "Transform": { "posX": 31.0569878, "posY": 3.57695174, "posZ": -5.39664555, "rotX": 359.776, "rotY": 269.997375, "rotZ": 1.33925188, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"12c71793-7f6f-4752-a8cd-a5acf93349ae\",\"type\":\"Minicard\",\"id\":\"Z6950-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103500, "SidewaysCard": false, "CustomDeck": { "1035": { "FaceURL": "https://i.ibb.co/q9wj6BH/ac731fa4b204.png", "BackURL": "https://i.ibb.co/DVY7pXt/97b5e6115313.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "362fd5", "Name": "Deck", "Transform": { "posX": 54.08301, "posY": 3.59741545, "posZ": -22.79221, "rotX": 0.2782368, "rotY": 270.000183, "rotZ": 0.0882438049, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 103200, 591000 ], "CustomDeck": { "1032": { "FaceURL": "https://i.ibb.co/4f5KtVH/999a39981b79.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5910": { "FaceURL": "https://i.ibb.co/ZdsnMRv/c6076ba0f4d8.png", "BackURL": "https://i.ibb.co/1J9svbx/4ff85a71ccb4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00031", "Name": "Card", "Transform": { "posX": 54.9543, "posY": 1.495068, "posZ": 30.4095116, "rotX": 0.000355693657, "rotY": 269.984, "rotZ": -0.00237584533, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Job Security", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1f35cb1b-86fc-43ff-905f-3611fa8db9a3\",\"type\":\"Treachery\",\"traits\":\"Terror\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103200, "SidewaysCard": false, "CustomDeck": { "1032": { "FaceURL": "https://i.ibb.co/4f5KtVH/999a39981b79.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d7db50", "Name": "Card", "Transform": { "posX": 54.921566, "posY": 1.53668654, "posZ": 30.1798515, "rotX": 0.004226782, "rotY": 269.982452, "rotZ": -0.0005591058, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Preservation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b51ff996-6fb1-444c-8ec7-f42a8614edc5\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591000, "SidewaysCard": false, "CustomDeck": { "5910": { "FaceURL": "https://i.ibb.co/ZdsnMRv/c6076ba0f4d8.png", "BackURL": "https://i.ibb.co/1J9svbx/4ff85a71ccb4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "ffb75e", "Name": "Card", "Transform": { "posX": 54.9238, "posY": 1.495104, "posZ": -18.7226, "rotX": 5.180951E-08, "rotY": 269.989044, "rotZ": 5.262535E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Rappy Taype", "Description": "The Embalmer", "GMNotes": "{\"TtsZoopGuid\":\"d7228478-6977-471a-80a0-a7bfd0210932\",\"type\":\"Investigator\",\"class\":\"Seeker\",\"traits\":\"Magical Girl\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":3,\"id\":\"Z6950\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103400, "SidewaysCard": false, "CustomDeck": { "1034": { "FaceURL": "https://i.ibb.co/9GDrY5m/d810333455f7.png", "BackURL": "https://i.ibb.co/R70mzj2/f8153fc6032b.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "3bd90c", "Name": "Bag", "Transform": { "posX": 64.2815, "posY": 1.29646492, "posZ": -1.40120018, "rotX": -1.40311374E-06, "rotY": 89.9938, "rotZ": 7.09905862E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mystic", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.124998845, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1d2d22\":{\"lock\":false,\"pos\":{\"x\":38.4383,\"y\":1.4951,\"z\":-26.3586},\"rot\":{\"x\":0,\"y\":270.0081,\"z\":0}},\"2f7b63\":{\"lock\":false,\"pos\":{\"x\":38.4383,\"y\":1.2965,\"z\":-22.5286},\"rot\":{\"x\":0,\"y\":270.0018,\"z\":0}},\"41e1a5\":{\"lock\":false,\"pos\":{\"x\":41.7383,\"y\":1.4951,\"z\":-3.3986},\"rot\":{\"x\":0,\"y\":270.0027,\"z\":0}},\"425e35\":{\"lock\":false,\"pos\":{\"x\":45.0383,\"y\":1.2965,\"z\":-7.2286},\"rot\":{\"x\":0,\"y\":270.0016,\"z\":0}},\"644c6a\":{\"lock\":false,\"pos\":{\"x\":38.4383,\"y\":1.4951,\"z\":-3.3986},\"rot\":{\"x\":0,\"y\":270.0024,\"z\":0}},\"6875a6\":{\"lock\":false,\"pos\":{\"x\":38.4383,\"y\":1.2965,\"z\":-7.2286},\"rot\":{\"x\":0,\"y\":270.0016,\"z\":0}},\"6d77c3\":{\"lock\":false,\"pos\":{\"x\":41.7383,\"y\":1.2965,\"z\":-22.5286},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"85bba5\":{\"lock\":false,\"pos\":{\"x\":41.7383,\"y\":1.4951,\"z\":-18.7086},\"rot\":{\"x\":0,\"y\":270.0024,\"z\":0}},\"85be3f\":{\"lock\":false,\"pos\":{\"x\":38.4383,\"y\":1.4951,\"z\":-18.7086},\"rot\":{\"x\":0,\"y\":270.0025,\"z\":0}},\"8a5d96\":{\"lock\":false,\"pos\":{\"x\":45.0383,\"y\":1.4951,\"z\":-26.3586},\"rot\":{\"x\":0,\"y\":270.0027,\"z\":0}},\"8f68b7\":{\"lock\":false,\"pos\":{\"x\":41.7383,\"y\":1.2965,\"z\":-7.2286},\"rot\":{\"x\":0,\"y\":270.002,\"z\":0}},\"b4c4f4\":{\"lock\":false,\"pos\":{\"x\":38.4383,\"y\":1.4951,\"z\":-11.0486},\"rot\":{\"x\":0,\"y\":270.0022,\"z\":0}},\"b90859\":{\"lock\":false,\"pos\":{\"x\":41.7383,\"y\":1.4951,\"z\":-26.3586},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"c01502\":{\"lock\":false,\"pos\":{\"x\":45.0383,\"y\":1.4951,\"z\":-11.0486},\"rot\":{\"x\":0,\"y\":270.0154,\"z\":0}},\"c275ec\":{\"lock\":false,\"pos\":{\"x\":45.0383,\"y\":1.4951,\"z\":-3.3986},\"rot\":{\"x\":0,\"y\":270.0024,\"z\":0}},\"c7eace\":{\"lock\":false,\"pos\":{\"x\":45.0383,\"y\":1.2965,\"z\":-22.5286},\"rot\":{\"x\":0,\"y\":270.0184,\"z\":0}},\"cb8439\":{\"lock\":false,\"pos\":{\"x\":45.0383,\"y\":1.2965,\"z\":-14.8786},\"rot\":{\"x\":0,\"y\":270.0081,\"z\":0}},\"d204d2\":{\"lock\":false,\"pos\":{\"x\":35.1383,\"y\":1.4951,\"z\":-3.3986},\"rot\":{\"x\":0,\"y\":269.9989,\"z\":0}},\"e00006\":{\"lock\":false,\"pos\":{\"x\":38.4383,\"y\":1.2965,\"z\":-30.1786},\"rot\":{\"x\":0,\"y\":270.0017,\"z\":0}},\"e00007\":{\"lock\":false,\"pos\":{\"x\":35.1383,\"y\":1.2965,\"z\":-7.2286},\"rot\":{\"x\":0,\"y\":270.0014,\"z\":0}},\"e00019\":{\"lock\":false,\"pos\":{\"x\":45.0383,\"y\":1.2965,\"z\":-30.1786},\"rot\":{\"x\":0,\"y\":270.0183,\"z\":0}},\"e0003a\":{\"lock\":false,\"pos\":{\"x\":41.7383,\"y\":1.4951,\"z\":-11.0486},\"rot\":{\"x\":0,\"y\":270.0023,\"z\":0}},\"e0003f\":{\"lock\":false,\"pos\":{\"x\":41.7383,\"y\":1.2965,\"z\":-14.8786},\"rot\":{\"x\":0,\"y\":270.0016,\"z\":0}},\"e54354\":{\"lock\":false,\"pos\":{\"x\":38.4383,\"y\":1.2965,\"z\":-14.8786},\"rot\":{\"x\":0,\"y\":270.0014,\"z\":0}},\"ed4a00\":{\"lock\":false,\"pos\":{\"x\":35.1383,\"y\":1.2965,\"z\":-14.8786},\"rot\":{\"x\":0,\"y\":270.0013,\"z\":0}},\"f29d13\":{\"lock\":false,\"pos\":{\"x\":35.1383,\"y\":1.4951,\"z\":-11.0486},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"f83488\":{\"lock\":false,\"pos\":{\"x\":45.0383,\"y\":1.4951,\"z\":-18.7086},\"rot\":{\"x\":0,\"y\":269.9802,\"z\":0}},\"fe911c\":{\"lock\":false,\"pos\":{\"x\":41.7383,\"y\":1.2965,\"z\":-30.1786},\"rot\":{\"x\":0,\"y\":270.0023,\"z\":0}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "1d2d22", "Name": "Card", "Transform": { "posX": 38.4383, "posY": 1.495104, "posZ": -26.3586, "rotX": 4.34021565E-08, "rotY": 270.008057, "rotZ": 1.45900663E-06, "scaleX": 0.805986166, "scaleY": 1.0, "scaleZ": 0.805986166 }, "Nickname": "Lady Proud", "Description": "The Vampire", "GMNotes": "{\"TtsZoopGuid\":\"8854f8d8-3278-4f3a-9bb3-d943eb7d5a20\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl\",\"agilityIcons\":2,\"combatIcons\":3,\"intellectIcons\":2,\"willpowerIcons\":5,\"id\":\"Z7053\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267000, "SidewaysCard": false, "CustomDeck": { "2670": { "FaceURL": "https://i.ibb.co/ry0JDtn/de68cc92dbe8.png", "BackURL": "https://i.ibb.co/k1DtbzT/a8ba2b1af549.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2f7b63", "Name": "Bag", "Transform": { "posX": 38.4383, "posY": 1.29646552, "posZ": -22.5286, "rotX": -9.634124E-08, "rotY": 270.001923, "rotZ": 1.30373553E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lethe", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e158aa", "Name": "Card", "Transform": { "posX": 27.6701469, "posY": 3.57911253, "posZ": 22.1808033, "rotX": 0.00174271211, "rotY": 270.000061, "rotZ": 1.06990135, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ca5342de-a70c-4040-8dfa-7a83e5e79b5b\",\"type\":\"Minicard\",\"id\":\"Z1084-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100800, "SidewaysCard": false, "CustomDeck": { "1008": { "FaceURL": "https://i.ibb.co/TBYkB2Y/6ed122b13797.png", "BackURL": "https://i.ibb.co/qm51qg0/e484fb9c60ad.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6954de", "Name": "Deck", "Transform": { "posX": 36.88213, "posY": 3.60861444, "posZ": -22.8731461, "rotX": 0.639664233, "rotY": 269.9999, "rotZ": 359.985474, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 597200, 597200, 100000, 100000, 100000, 597000 ], "CustomDeck": { "5972": { "FaceURL": "https://i.ibb.co/6sjqtdm/edd76320ddcb.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1000": { "FaceURL": "https://i.ibb.co/p4CM5WS/1ac3ca1d1c0d.png", "BackURL": "https://i.ibb.co/64mKVVV/4c8d8ce66edf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5970": { "FaceURL": "https://i.ibb.co/J2SQ76C/6fcfbe5c64d7.png", "BackURL": "https://i.ibb.co/64mKVVV/4c8d8ce66edf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "847a49", "Name": "Card", "Transform": { "posX": 31.9767342, "posY": 1.49508679, "posZ": -21.6733818, "rotX": 0.000174317189, "rotY": 270.0, "rotZ": -0.00113484345, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Puk Puck's Presence", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a8fd7c2e-0dc1-4d6b-a95a-037e825f7668\",\"type\":\"Treachery\",\"traits\":\"Power\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597200, "SidewaysCard": false, "CustomDeck": { "5972": { "FaceURL": "https://i.ibb.co/6sjqtdm/edd76320ddcb.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9be717", "Name": "Card", "Transform": { "posX": 32.09146, "posY": 1.53673708, "posZ": -21.6256981, "rotX": 0.00295501738, "rotY": 270.000031, "rotZ": -0.00192002964, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Puk Puck's Presence", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a8fd7c2e-0dc1-4d6b-a95a-037e825f7668\",\"type\":\"Treachery\",\"traits\":\"Power\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597200, "SidewaysCard": false, "CustomDeck": { "5972": { "FaceURL": "https://i.ibb.co/6sjqtdm/edd76320ddcb.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 31.97196, "posY": 1.49507833, "posZ": -16.1848164, "rotX": 0.000270863122, "rotY": 269.994751, "rotZ": -0.00171503366, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bewitched", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"167042e8-a1f4-47fc-9916-5d2bfd1906b9\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spell\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100000, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/p4CM5WS/1ac3ca1d1c0d.png", "BackURL": "https://i.ibb.co/64mKVVV/4c8d8ce66edf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "837926", "Name": "Card", "Transform": { "posX": 31.7952042, "posY": 1.53734624, "posZ": -16.1067181, "rotX": -0.003311275, "rotY": 269.994751, "rotZ": -0.00316141569, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bewitched", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"167042e8-a1f4-47fc-9916-5d2bfd1906b9\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spell\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100000, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/p4CM5WS/1ac3ca1d1c0d.png", "BackURL": "https://i.ibb.co/64mKVVV/4c8d8ce66edf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f997c6", "Name": "Card", "Transform": { "posX": 31.7952061, "posY": 1.56025755, "posZ": -16.1067162, "rotX": -0.00168046739, "rotY": 269.994751, "rotZ": -0.00130515546, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bewitched", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"167042e8-a1f4-47fc-9916-5d2bfd1906b9\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spell\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100000, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/p4CM5WS/1ac3ca1d1c0d.png", "BackURL": "https://i.ibb.co/64mKVVV/4c8d8ce66edf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c5b467", "Name": "Card", "Transform": { "posX": 32.04656, "posY": 1.58034909, "posZ": -16.2995071, "rotX": 0.000536544365, "rotY": 270.0, "rotZ": -0.000633576652, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ame-no-Habakiri", "Description": "Bewitching Blade", "GMNotes": "{\"TtsZoopGuid\":\"d078fd43-b1b5-44e6-9bac-2239d7350dd6\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Relic. Weapon. Melee\",\"combatIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597000, "SidewaysCard": false, "CustomDeck": { "5970": { "FaceURL": "https://i.ibb.co/J2SQ76C/6fcfbe5c64d7.png", "BackURL": "https://i.ibb.co/64mKVVV/4c8d8ce66edf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "41e1a5", "Name": "Card", "Transform": { "posX": 41.7383, "posY": 1.49510384, "posZ": -3.3986, "rotX": -7.896823E-08, "rotY": 270.002655, "rotZ": -7.743073E-08, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Pythie Frederica", "Description": "The Fortune Teller", "GMNotes": "{\"TtsZoopGuid\":\"40ef7f8f-3a5f-429b-8d65-e47e4f8a8aed\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Criminal. Conspirator\",\"agilityIcons\":2,\"combatIcons\":1,\"intellectIcons\":5,\"willpowerIcons\":4,\"id\":\"Z4615\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596500, "SidewaysCard": false, "CustomDeck": { "5965": { "FaceURL": "https://i.ibb.co/ydN9kyY/b8821e0aed19.png", "BackURL": "https://i.ibb.co/Kx2yz95/7a0e02ac4c12.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "425e35", "Name": "Bag", "Transform": { "posX": 45.0383, "posY": 1.29646516, "posZ": -7.2286, "rotX": -4.939213E-08, "rotY": 270.0015, "rotZ": 1.2567931E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mana", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "77e319", "Name": "Card", "Transform": { "posX": 39.0670967, "posY": 3.57504153, "posZ": 21.49813, "rotX": 0.966593564, "rotY": 269.996582, "rotZ": 359.58728, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b729ffca-4adb-4db5-978e-1e28731f0415\",\"type\":\"Minicard\",\"id\":\"Z0509-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597700, "SidewaysCard": false, "CustomDeck": { "5977": { "FaceURL": "https://i.ibb.co/m6FKCtK/012b1fbe2ed1.png", "BackURL": "https://i.ibb.co/6Zxrdpz/9dac973b039f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b8ac93", "Name": "Deck", "Transform": { "posX": 44.1539268, "posY": 3.60271478, "posZ": -7.6048274, "rotX": 0.2009555, "rotY": 270.000183, "rotZ": 0.08916325, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 597900, 597600, 597800 ], "CustomDeck": { "5979": { "FaceURL": "https://i.ibb.co/djNVPnc/cd81ba180bf3.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5976": { "FaceURL": "https://i.ibb.co/DpCxSVw/a9b4cef9d96d.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5978": { "FaceURL": "https://i.ibb.co/ZWphrTw/2a2042db3089.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e5f9ac", "Name": "Card", "Transform": { "posX": 39.6446037, "posY": 1.49508059, "posZ": 15.06299, "rotX": 0.000294766563, "rotY": 270.055634, "rotZ": -0.0016331072, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Overdose", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0a874f5b-c76a-440d-a5b6-a0c5cb60b734\",\"type\":\"Treachery\",\"traits\":\"Injury\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597900, "SidewaysCard": false, "CustomDeck": { "5979": { "FaceURL": "https://i.ibb.co/djNVPnc/cd81ba180bf3.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f2ae71", "Name": "Card", "Transform": { "posX": 39.9708481, "posY": 1.49501145, "posZ": 17.3593025, "rotX": 0.000870837, "rotY": 270.000336, "rotZ": 359.993958, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mage's Staff", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e5fe21ea-a77b-4d90-832b-6f2762e92ac3\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Tool\",\"wildIcons\":2,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597600, "SidewaysCard": false, "CustomDeck": { "5976": { "FaceURL": "https://i.ibb.co/DpCxSVw/a9b4cef9d96d.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1e84e7", "Name": "Card", "Transform": { "posX": 49.18182, "posY": 1.5707227, "posZ": -7.733491, "rotX": 0.000467417325, "rotY": 270.0, "rotZ": -0.0005534384, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Enchanting Drugs", "Description": "Highly Addictive", "GMNotes": "{\"TtsZoopGuid\":\"a2d41c76-1bf0-47e4-a012-c2b6e86f6168\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item\",\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597800, "SidewaysCard": false, "CustomDeck": { "5978": { "FaceURL": "https://i.ibb.co/ZWphrTw/2a2042db3089.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "644c6a", "Name": "Card", "Transform": { "posX": 38.4383, "posY": 1.49510384, "posZ": -3.39860034, "rotX": 4.45679433E-07, "rotY": 270.002441, "rotZ": -5.672939E-09, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Weddin", "Description": "The Bride", "GMNotes": "{\"TtsZoopGuid\":\"f6b4dd76-51bb-4a35-93d9-155c1396c4ad\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":1,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":5,\"id\":\"Z6138\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595400, "SidewaysCard": false, "CustomDeck": { "5954": { "FaceURL": "https://i.ibb.co/9swfcKJ/9d3bf7f53516.png", "BackURL": "https://i.ibb.co/W2krDTV/a3f5590f1a86.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6875a6", "Name": "Bag", "Transform": { "posX": 38.4383, "posY": 1.29646552, "posZ": -7.2286, "rotX": -1.22547715E-06, "rotY": 270.001343, "rotZ": 3.19895548E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Weddin", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00049", "Name": "Card", "Transform": { "posX": 51.5827675, "posY": 3.573307, "posZ": 39.2801552, "rotX": 359.171844, "rotY": 270.0073, "rotZ": 358.9978, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6f10903e-472b-4270-a934-43ddb6ae976c\",\"type\":\"Minicard\",\"id\":\"Z6138-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105000, "SidewaysCard": false, "CustomDeck": { "1050": { "FaceURL": "https://i.ibb.co/CnRb6Cb/e29696226552.png", "BackURL": "https://i.ibb.co/pJTc46z/c4b5a7fa217a.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "315e7b", "Name": "Deck", "Transform": { "posX": 37.52745, "posY": 3.59524941, "posZ": -7.32219744, "rotX": 0.2002279, "rotY": 269.998962, "rotZ": 359.4008, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 104800, 595500 ], "CustomDeck": { "1048": { "FaceURL": "https://i.ibb.co/wLdp6qh/f9c3b79a48cf.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5955": { "FaceURL": "https://i.ibb.co/DKsGsQR/353a87f7746f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e1c0a4", "Name": "Card", "Transform": { "posX": 34.88304, "posY": 1.49510431, "posZ": -7.921754, "rotX": 8.597687E-06, "rotY": 270.000031, "rotZ": 1.35763712E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Broken Vows", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d1247ec8-76ea-4fb2-aa7f-97734c2a5732\",\"type\":\"Treachery\",\"traits\":\"Scheme\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104800, "SidewaysCard": false, "CustomDeck": { "1048": { "FaceURL": "https://i.ibb.co/wLdp6qh/f9c3b79a48cf.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6b3c14", "Name": "Card", "Transform": { "posX": 34.9010963, "posY": 1.53689, "posZ": -7.74127674, "rotX": 0.00105310685, "rotY": 269.999847, "rotZ": 359.9929, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Till Death Do Us Part", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1ffa7926-5d59-4287-93b9-948bdf2b249c\",\"type\":\"Event\",\"victory\":1,\"class\":\"Neutral\",\"traits\":\"Pact\",\"intellectIcons\":1,\"willpowerIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595500, "SidewaysCard": false, "CustomDeck": { "5955": { "FaceURL": "https://i.ibb.co/DKsGsQR/353a87f7746f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "6d77c3", "Name": "Bag", "Transform": { "posX": 41.7383, "posY": 1.29646575, "posZ": -22.5286, "rotX": 6.799051E-07, "rotY": 269.999451, "rotZ": -9.817675E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swim Swim", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00043", "Name": "Card", "Transform": { "posX": 45.7995949, "posY": 3.57825, "posZ": 39.17896, "rotX": 359.264343, "rotY": 270.00296, "rotZ": 359.5484, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3e945b8d-3aa4-4260-b219-4d1271ac77fb\",\"type\":\"Minicard\",\"id\":\"Z0532-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104600, "SidewaysCard": false, "CustomDeck": { "1046": { "FaceURL": "https://i.ibb.co/kmmX8TP/961b95be024e.png", "BackURL": "https://i.ibb.co/YPMLQKB/0151a372bc17.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2ff30a", "Name": "Deck", "Transform": { "posX": 40.53271, "posY": 3.58746457, "posZ": -22.2626286, "rotX": 0.300155759, "rotY": 269.997925, "rotZ": 359.211334, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 595600, 595700 ], "CustomDeck": { "5956": { "FaceURL": "https://i.ibb.co/JHX7ZvJ/5202a00e3f8e.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5957": { "FaceURL": "https://i.ibb.co/MhH119S/8586508c268f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "07a3f9", "Name": "Card", "Transform": { "posX": 33.86699, "posY": 1.4950943, "posZ": -27.7115479, "rotX": 0.000103598504, "rotY": 270.0, "rotZ": -0.000647426466, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Regicide", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3e1abcae-83f7-43c9-a3ec-6a0f068e67bc\",\"type\":\"Treachery\",\"traits\":\"Scheme\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595600, "SidewaysCard": false, "CustomDeck": { "5956": { "FaceURL": "https://i.ibb.co/JHX7ZvJ/5202a00e3f8e.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "43cca7", "Name": "Card", "Transform": { "posX": 34.0201569, "posY": 1.53674722, "posZ": -27.5014725, "rotX": 0.00203752052, "rotY": 270.0, "rotZ": -0.00271410146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Royal Ambition", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"2ae5398c-9388-47ac-a440-19fc00a49c3b\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Secret\"}],\"class\":\"Neutral\",\"traits\":\"Talent\",\"combatIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595700, "SidewaysCard": false, "CustomDeck": { "5957": { "FaceURL": "https://i.ibb.co/MhH119S/8586508c268f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "85bba5", "Name": "Card", "Transform": { "posX": 41.7383, "posY": 1.495104, "posZ": -18.7086, "rotX": 8.16067143E-08, "rotY": 270.00238, "rotZ": -5.25355439E-08, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Swim Swim", "Description": "The Savant", "GMNotes": "{\"TtsZoopGuid\":\"af43327d-5a31-4b75-961f-333955f8566a\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":1,\"combatIcons\":4,\"intellectIcons\":3,\"willpowerIcons\":4,\"id\":\"Z0532\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595800, "SidewaysCard": false, "CustomDeck": { "5958": { "FaceURL": "https://i.ibb.co/7y9mBrj/975d6fd57b9f.png", "BackURL": "https://i.ibb.co/BfvbC3w/0f7a7c918b9c.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "85be3f", "Name": "Card", "Transform": { "posX": 38.4383, "posY": 1.49510384, "posZ": -18.7086, "rotX": -6.82634536E-08, "rotY": 270.0025, "rotZ": -7.174703E-08, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Lethe", "Description": "The Duchess", "GMNotes": "{\"TtsZoopGuid\":\"7256a49f-d556-4399-885b-40ad6b49d8c7\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Socialite\",\"agilityIcons\":1,\"combatIcons\":5,\"intellectIcons\":2,\"willpowerIcons\":4,\"id\":\"Z1084\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597100, "SidewaysCard": false, "CustomDeck": { "5971": { "FaceURL": "https://i.ibb.co/vx2jtSC/3bab0fe40d77.png", "BackURL": "https://i.ibb.co/bRM0GrS/bebc566d47bf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8a5d96", "Name": "Card", "Transform": { "posX": 45.0383, "posY": 1.49510384, "posZ": -26.3586, "rotX": -5.81438371E-07, "rotY": 270.002716, "rotZ": -1.44840112E-06, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Love Me Ren-Ren", "Description": "The Matchmaker", "GMNotes": "{\"TtsZoopGuid\":\"14525b54-23a1-45fd-b995-b187642a0239\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":2,\"willpowerIcons\":4,\"id\":\"Z8746\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597400, "SidewaysCard": false, "CustomDeck": { "5974": { "FaceURL": "https://i.ibb.co/ChVL0Z4/7b5fab86869c.png", "BackURL": "https://i.ibb.co/NmmRnk7/c76cfe75cbba.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8f68b7", "Name": "Bag", "Transform": { "posX": 41.7383, "posY": 1.2964654, "posZ": -7.2286, "rotX": 1.54795271E-06, "rotY": 270.002, "rotZ": 5.650463E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pythie Frederica", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "053af7", "Name": "Card", "Transform": { "posX": 34.3220444, "posY": 3.57837319, "posZ": 38.85558, "rotX": 359.239777, "rotY": 269.9983, "rotZ": 0.2674249, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1c34ff8d-c605-4610-868d-121df290fb46\",\"type\":\"Minicard\",\"id\":\"Z4615-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596700, "SidewaysCard": false, "CustomDeck": { "5967": { "FaceURL": "https://i.ibb.co/khgSf5b/1c7356da6199.png", "BackURL": "https://i.ibb.co/jRyLqmV/3e3d61c94ddc.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "03292b", "Name": "Deck", "Transform": { "posX": 40.5236969, "posY": 3.588702, "posZ": -8.099453, "rotX": 0.344224036, "rotY": 270.0023, "rotZ": 0.756642342, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 103500, 596600 ], "CustomDeck": { "1035": { "FaceURL": "https://i.ibb.co/RTzTXys/177d09fdd108.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5966": { "FaceURL": "https://i.ibb.co/2c37MrT/b73e25369357.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00034", "Name": "Card", "Transform": { "posX": 34.4758949, "posY": 1.49509847, "posZ": 33.3827553, "rotX": 7.25874852E-05, "rotY": 270.000031, "rotZ": -0.000386013882, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Atrophy", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"80a1baf5-e34e-46ff-8425-cfd7a7341088\",\"type\":\"Treachery\",\"traits\":\"Injury\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103500, "SidewaysCard": false, "CustomDeck": { "1035": { "FaceURL": "https://i.ibb.co/RTzTXys/177d09fdd108.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "16fe8a", "Name": "Card", "Transform": { "posX": 34.75051, "posY": 1.5367434, "posZ": 33.468235, "rotX": -0.00233787042, "rotY": 270.000031, "rotZ": -0.005245848, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crystal Ball", "Description": "Through the Looking Glass", "GMNotes": "{\"TtsZoopGuid\":\"1a1f7a6e-33b0-4c3a-b955-4179fef7741a\",\"type\":\"Asset\",\"uses\":[{\"count\":5,\"token\":\"resource\",\"type\":\"Charge\"}],\"class\":\"Neutral\",\"traits\":\"Item. Tool\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596600, "SidewaysCard": false, "CustomDeck": { "5966": { "FaceURL": "https://i.ibb.co/2c37MrT/b73e25369357.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "b4c4f4", "Name": "Card", "Transform": { "posX": 38.4383, "posY": 1.49510384, "posZ": -11.0486, "rotX": 1.814823E-08, "rotY": 270.0022, "rotZ": -1.19646E-07, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Funny Trick", "Description": "The Magician", "GMNotes": "{\"TtsZoopGuid\":\"bd36dfcf-0d0e-4742-bb38-bf7e3620f437\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":5,\"combatIcons\":1,\"intellectIcons\":2,\"willpowerIcons\":4,\"id\":\"Z2098\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598700, "SidewaysCard": false, "CustomDeck": { "5987": { "FaceURL": "https://i.ibb.co/ZNFGYzC/49f6f22ee53b.png", "BackURL": "https://i.ibb.co/f8F4rD8/2ef1207d07f0.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b90859", "Name": "Card", "Transform": { "posX": 41.7383, "posY": 1.49510384, "posZ": -26.3586, "rotX": -9.73007346E-08, "rotY": 270.0, "rotZ": -3.62778474E-09, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Calkoro", "Description": "The Teacher", "GMNotes": "{\"TtsZoopGuid\":\"0527ed28-9743-438e-b131-34b85a1b9838\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Sorcerer. Civic\",\"agilityIcons\":1,\"combatIcons\":2,\"intellectIcons\":4,\"willpowerIcons\":5,\"id\":\"Z9095\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605500, "SidewaysCard": false, "CustomDeck": { "6055": { "FaceURL": "https://i.ibb.co/sCvyKy9/d17c237c0979.png", "BackURL": "https://i.ibb.co/Jq8xss5/5b2a06ad5094.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c01502", "Name": "Card", "Transform": { "posX": 45.0383, "posY": 1.49510384, "posZ": -11.0486, "rotX": 2.3634886E-08, "rotY": 270.015381, "rotZ": -5.948498E-08, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Premium Sachiko", "Description": "The Lucky", "GMNotes": "{\"TtsZoopGuid\":\"0ca6349c-346c-4e53-9911-1fef89ef5d63\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Servitor\",\"agilityIcons\":3,\"combatIcons\":2,\"intellectIcons\":2,\"willpowerIcons\":5,\"id\":\"Z3416\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102800, "SidewaysCard": false, "CustomDeck": { "1028": { "FaceURL": "https://i.ibb.co/0mnzmfg/8794e36cff2b.png", "BackURL": "https://i.ibb.co/X88B0Vn/08b9f37fb965.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c275ec", "Name": "Card", "Transform": { "posX": 45.0383, "posY": 1.49510372, "posZ": -3.3986, "rotX": 1.00456596E-07, "rotY": 270.0024, "rotZ": 3.951076E-09, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Mana", "Description": "The Mage", "GMNotes": "{\"TtsZoopGuid\":\"0621408c-ac54-4fcf-9741-a1fa4ca92a4a\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Sorcerer\",\"agilityIcons\":2,\"combatIcons\":2,\"intellectIcons\":2,\"willpowerIcons\":2,\"id\":\"Z0509\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598000, "SidewaysCard": false, "CustomDeck": { "5980": { "FaceURL": "https://i.ibb.co/jRKN348/b51953d7cf2c.png", "BackURL": "https://i.ibb.co/1sVvMqp/012020c2c1ff.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c7eace", "Name": "Bag", "Transform": { "posX": 45.0383, "posY": 1.29646623, "posZ": -22.5286, "rotX": -2.135011E-06, "rotY": 270.019043, "rotZ": -1.02396807E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Princess Lightning", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7269e3", "Name": "Card", "Transform": { "posX": 28.0723324, "posY": 3.58142662, "posZ": 39.135273, "rotX": 0.0272299256, "rotY": 270.000122, "rotZ": 0.341824859, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4c5514e2-10bd-4768-b12d-8dfc97def693\",\"type\":\"Minicard\",\"id\":\"Z7306-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596900, "SidewaysCard": false, "CustomDeck": { "5969": { "FaceURL": "https://i.ibb.co/G2X9586/4fa5b1d2ac90.png", "BackURL": "https://i.ibb.co/02nvN5G/89399210932c.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c90d27", "Name": "Deck", "Transform": { "posX": 43.44631, "posY": 3.586045, "posZ": -22.32027, "rotX": 0.448096544, "rotY": 269.997467, "rotZ": 359.410339, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 103200, 103100 ], "CustomDeck": { "1032": { "FaceURL": "https://i.ibb.co/StjGQGf/26c6047bc3bb.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1031": { "FaceURL": "https://i.ibb.co/80XCyQ0/50d08824dabc.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "15b06e", "Name": "Card", "Transform": { "posX": 29.4695148, "posY": 1.4950614, "posZ": 32.79485, "rotX": 0.000346159039, "rotY": 269.8244, "rotZ": -0.00290235, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Power Surge", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"30de0393-372e-4327-a8c3-98f147e40d47\",\"type\":\"Treachery\",\"traits\":\"Hazard\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103200, "SidewaysCard": false, "CustomDeck": { "1032": { "FaceURL": "https://i.ibb.co/StjGQGf/26c6047bc3bb.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0002e", "Name": "Card", "Transform": { "posX": 29.3143978, "posY": 1.53933227, "posZ": 32.67571, "rotX": 0.01569813, "rotY": 270.02832, "rotZ": 359.8575, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Arc Lightning", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9b397f46-4f4b-4a5a-862e-144b02a1cb32\",\"type\":\"Asset\",\"uses\":[{\"count\":3,\"token\":\"resource\",\"type\":\"Charge\"}],\"class\":\"Neutral\",\"traits\":\"Spell\",\"combatIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103100, "SidewaysCard": false, "CustomDeck": { "1031": { "FaceURL": "https://i.ibb.co/80XCyQ0/50d08824dabc.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "cb8439", "Name": "Bag", "Transform": { "posX": 45.0383, "posY": 1.296465, "posZ": -14.8786, "rotX": -6.044682E-08, "rotY": 270.008179, "rotZ": 1.26777013E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Premium Sachiko", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "2e0651", "Name": "Card", "Transform": { "posX": 51.5203133, "posY": 3.574112, "posZ": 19.9286137, "rotX": 0.0107028531, "rotY": 269.9999, "rotZ": 358.4096, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f59f1c12-f4cb-4e03-91bf-41ab4471b577\",\"type\":\"Minicard\",\"id\":\"Z3416-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598400, "SidewaysCard": false, "CustomDeck": { "5984": { "FaceURL": "https://i.ibb.co/WybQhf6/d22436d1e1eb.png", "BackURL": "https://i.ibb.co/wRLB3Qg/7819490e7d19.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9483f3", "Name": "Deck", "Transform": { "posX": 44.2556419, "posY": 3.59702373, "posZ": -15.0301685, "rotX": 0.05112868, "rotY": 270.008423, "rotZ": 359.530884, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 598500, 598300 ], "CustomDeck": { "5985": { "FaceURL": "https://i.ibb.co/C1fqb9w/125eaa98d2d4.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5983": { "FaceURL": "https://i.ibb.co/P5q2D03/6e56d3931b3d.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d43a66", "Name": "Card", "Transform": { "posX": 51.2975769, "posY": 1.49507868, "posZ": 15.0718994, "rotX": 0.000247503951, "rotY": 270.0, "rotZ": -0.00166736555, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Karmic Balance", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"89a3207d-c66a-430f-84c6-557c0ad1bf3a\",\"type\":\"Treachery\",\"traits\":\"Curse\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598500, "SidewaysCard": false, "CustomDeck": { "5985": { "FaceURL": "https://i.ibb.co/C1fqb9w/125eaa98d2d4.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8fa192", "Name": "Card", "Transform": { "posX": 51.0372734, "posY": 1.53703892, "posZ": 15.0663023, "rotX": 0.00541083049, "rotY": 270.0, "rotZ": -0.001559238, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lady Luck's Contract", "Description": "Read the Fine Print", "GMNotes": "{\"TtsZoopGuid\":\"2023f09c-827a-4ceb-8956-db078c3db59a\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Pact. Blessed. Cursed\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598300, "SidewaysCard": false, "CustomDeck": { "5983": { "FaceURL": "https://i.ibb.co/P5q2D03/6e56d3931b3d.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "d204d2", "Name": "Card", "Transform": { "posX": 35.1383, "posY": 1.495104, "posZ": -3.3986, "rotX": 4.14054625E-07, "rotY": 269.9989, "rotZ": 4.02990281E-08, "scaleX": 0.805986166, "scaleY": 1.0, "scaleZ": 0.805986166 }, "Nickname": "Tepsekemei", "Description": "The Genie", "GMNotes": "{\"TtsZoopGuid\":\"5ab5805d-e7b3-4148-b867-955c9cfb1370\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Creature\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":1,\"willpowerIcons\":5,\"id\":\"Z5512\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266500, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "https://i.ibb.co/9gHqtxt/da8bf4aadf97.png", "BackURL": "https://i.ibb.co/Vw7cyVK/fbd90cefd123.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00006", "Name": "Bag", "Transform": { "posX": 38.4383, "posY": 1.2964654, "posZ": -30.1786, "rotX": 1.48060508E-06, "rotY": 270.001526, "rotZ": 2.86869213E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lady Proud", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.124999486, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "dcc2a2", "Name": "Card", "Transform": { "posX": 20.0509129, "posY": 3.571627, "posZ": -13.6444588, "rotX": 0.225935727, "rotY": 270.002838, "rotZ": 1.43613434, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d0783c82-88a5-4bfa-a538-3de2a39b561a\",\"type\":\"Minicard\",\"id\":\"Z7053-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266700, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "https://i.ibb.co/n1VcKSy/e78ce36267fd.png", "BackURL": "https://i.ibb.co/DLwP67J/7e438274a458.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0abab8", "Name": "Deck", "Transform": { "posX": 44.47856, "posY": 3.59321618, "posZ": 10.0414867, "rotX": 359.857544, "rotY": 269.969818, "rotZ": 0.8160081, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266900, 266800 ], "CustomDeck": { "2669": { "FaceURL": "https://i.ibb.co/FqyWfm3/e82fec097306.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2668": { "FaceURL": "https://i.ibb.co/F5SDq1j/14ff2bcc2bee.png", "BackURL": "https://i.ibb.co/c2mSHsc/a1bf21748df1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "881787", "Name": "Card", "Transform": { "posX": 24.3804512, "posY": 1.49509406, "posZ": -11.5790176, "rotX": 0.000108885033, "rotY": 270.0, "rotZ": -0.0006625051, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frenzied Demon", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1319511c-4a5f-47e5-978a-00e8c489de7f\",\"type\":\"Enemy\",\"traits\":\"Monster. Abomination\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266900, "SidewaysCard": false, "CustomDeck": { "2669": { "FaceURL": "https://i.ibb.co/FqyWfm3/e82fec097306.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "002330", "Name": "Card", "Transform": { "posX": 24.1965714, "posY": 1.53673339, "posZ": -11.3383942, "rotX": -0.0015819564, "rotY": 269.985046, "rotZ": -0.002928791, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Blood Vial", "Description": "Fluid Properties", "GMNotes": "{\"TtsZoopGuid\":\"cb1e15c8-1b40-4e40-a172-c33a1ba9917d\",\"type\":\"Asset\",\"uses\":[{\"count\":1,\"token\":\"resource\",\"type\":\"Supply\"}],\"class\":\"Neutral\",\"traits\":\"Item\",\"combatIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266800, "SidewaysCard": false, "CustomDeck": { "2668": { "FaceURL": "https://i.ibb.co/F5SDq1j/14ff2bcc2bee.png", "BackURL": "https://i.ibb.co/c2mSHsc/a1bf21748df1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00007", "Name": "Bag", "Transform": { "posX": 35.138298, "posY": 1.29646564, "posZ": -7.22859955, "rotX": -2.11081033E-06, "rotY": 270.001434, "rotZ": -2.7188546E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tepsekemei", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.124999486, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f7f513", "Name": "Card", "Transform": { "posX": 33.9543571, "posY": 3.57015371, "posZ": -7.35323524, "rotX": 1.06562185, "rotY": 269.9993, "rotZ": 359.925781, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e1ce77cc-e553-4e91-9b5c-fbabc78ff6c5\",\"type\":\"Minicard\",\"id\":\"Z5512-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606100, "SidewaysCard": false, "CustomDeck": { "6061": { "FaceURL": "https://i.ibb.co/RvbtwnP/cae42b0e788b.png", "BackURL": "https://i.ibb.co/1qfPzQ1/ff2da2d98a20.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c5c24b", "Name": "Deck", "Transform": { "posX": 33.8799248, "posY": 3.58639264, "posZ": -6.745898, "rotX": 0.381228328, "rotY": 269.9977, "rotZ": 359.306976, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266600, 606000 ], "CustomDeck": { "2666": { "FaceURL": "https://i.ibb.co/ZYNF7Sc/dc440317f644.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "6060": { "FaceURL": "https://i.ibb.co/zmHnnh3/26ab976d99c5.png", "BackURL": "https://i.ibb.co/c2mSHsc/a1bf21748df1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "269719", "Name": "Card", "Transform": { "posX": 24.0528831, "posY": 1.49509716, "posZ": -25.7417316, "rotX": 7.852636E-05, "rotY": 270.0, "rotZ": -0.000462820521, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lethargy", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3a76b2ca-ccd1-4182-abc5-f1050a0ab57d\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266600, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "https://i.ibb.co/ZYNF7Sc/dc440317f644.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 24.25971, "posY": 1.53674436, "posZ": -25.4459114, "rotX": 0.00152169936, "rotY": 270.0, "rotZ": -0.00309945177, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mini Tepsekemei", "Description": "Vaporous Clone", "GMNotes": "{\"TtsZoopGuid\":\"36444683-1c09-4a28-8eff-931ca29787d6\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Magical Girl\",\"agilityIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606000, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/zmHnnh3/26ab976d99c5.png", "BackURL": "https://i.ibb.co/c2mSHsc/a1bf21748df1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00019", "Name": "Bag", "Transform": { "posX": 45.0383, "posY": 1.29646492, "posZ": -30.1786, "rotX": -2.82887277E-06, "rotY": 270.018524, "rotZ": 1.11706257E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Love Me Ren-Ren", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00017", "Name": "Card", "Transform": { "posX": 33.1560936, "posY": 3.57668614, "posZ": 21.2377357, "rotX": 0.627360642, "rotY": 270.005676, "rotZ": 1.02922833, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e7fba7a3-71b4-4b47-8e7e-4ad3ea01b422\",\"type\":\"Minicard\",\"id\":\"Z8746-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101600, "SidewaysCard": false, "CustomDeck": { "1016": { "FaceURL": "https://i.ibb.co/xL8qQyM/500623905c11.png", "BackURL": "https://i.ibb.co/GJcRFK6/edb550ce67e8.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0e7086", "Name": "Deck", "Transform": { "posX": 44.049202, "posY": 3.59809518, "posZ": -30.86447, "rotX": 0.264692426, "rotY": 270.001526, "rotZ": 0.696419358, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 101200, 597300, 597500 ], "CustomDeck": { "1012": { "FaceURL": "https://i.ibb.co/Scx4qjs/3d4840b20bbb.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5973": { "FaceURL": "https://i.ibb.co/QnJpmqN/70acef0b4450.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5975": { "FaceURL": "https://i.ibb.co/w4cMfZJ/ea0ad936833f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d0c232", "Name": "Card", "Transform": { "posX": 44.2296371, "posY": 1.49507332, "posZ": -34.9624634, "rotX": 0.000314530538, "rotY": 269.999939, "rotZ": -0.00203954987, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Longing", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"92d0eb64-0a4a-4e3a-96d8-4870fca13c76\",\"type\":\"Event\",\"traits\":\"Bold. Fated\",\"weakness\":true,\"cost\":0,\"level\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101200, "SidewaysCard": false, "CustomDeck": { "1012": { "FaceURL": "https://i.ibb.co/Scx4qjs/3d4840b20bbb.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00015", "Name": "Card", "Transform": { "posX": 44.26305, "posY": 1.53669119, "posZ": -35.17057, "rotX": -0.002960625, "rotY": 269.999939, "rotZ": -0.000244902767, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Compassionate Love", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"14abc616-eb88-4356-a9ef-dc1c835fdc99\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spell. Fated\",\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597300, "SidewaysCard": false, "CustomDeck": { "5973": { "FaceURL": "https://i.ibb.co/QnJpmqN/70acef0b4450.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d658c8", "Name": "Card", "Transform": { "posX": 43.7387962, "posY": 1.570704, "posZ": -34.9141769, "rotX": -0.000340694562, "rotY": 269.999939, "rotZ": -0.00052088697, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Passionate Love", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"299d8db4-cbc4-4be4-97f5-1fcf4364c632\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spell. Bold\",\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 597500, "SidewaysCard": false, "CustomDeck": { "5975": { "FaceURL": "https://i.ibb.co/w4cMfZJ/ea0ad936833f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0003a", "Name": "Card", "Transform": { "posX": 41.7383, "posY": 1.49510372, "posZ": -11.0486, "rotX": -5.159143E-07, "rotY": 270.0023, "rotZ": -1.818977E-08, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Sorami Nakano", "Description": "The Clairvoyant", "GMNotes": "{\"TtsZoopGuid\":\"8986a896-319d-4933-9972-e266601dd348\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Clairvoyant. Servitor\",\"agilityIcons\":2,\"combatIcons\":2,\"intellectIcons\":4,\"willpowerIcons\":4,\"id\":\"Z0863\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596300, "SidewaysCard": false, "CustomDeck": { "5963": { "FaceURL": "https://i.ibb.co/hK2JcPP/120ccb767ef1.png", "BackURL": "https://i.ibb.co/2ZxphR9/5089ed28ba05.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0003f", "Name": "Bag", "Transform": { "posX": 41.7383, "posY": 1.296465, "posZ": -14.8786, "rotX": -1.72720593E-06, "rotY": 270.0017, "rotZ": 1.12345344E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sorami Nakano", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0003d", "Name": "Card", "Transform": { "posX": 39.17926, "posY": 3.57795763, "posZ": 38.69209, "rotX": 0.8194616, "rotY": 270.0003, "rotZ": 0.0357549749, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"43733000-0434-4a29-b01a-253041ace662\",\"type\":\"Minicard\",\"id\":\"Z0863-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104200, "SidewaysCard": false, "CustomDeck": { "1042": { "FaceURL": "https://i.ibb.co/h7jCn1Q/b66dd563d2d0.png", "BackURL": "https://i.ibb.co/m9JhHMx/8b8b43e50a5a.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "36d737", "Name": "Deck", "Transform": { "posX": 39.64723, "posY": 3.59637737, "posZ": 39.1383438, "rotX": 359.7922, "rotY": 270.001, "rotZ": 359.199, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 596200, 596400, 596100 ], "CustomDeck": { "5962": { "FaceURL": "https://i.ibb.co/yRSthkM/884e6b0c86fb.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5964": { "FaceURL": "https://i.ibb.co/BCwsH75/c3e49a23a765.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5961": { "FaceURL": "https://i.ibb.co/cJN1Q98/f5c71bc85fe4.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5cfcba", "Name": "Card", "Transform": { "posX": 39.82211, "posY": 1.4948858, "posZ": 32.8129845, "rotX": 0.00218148925, "rotY": 269.9997, "rotZ": 359.985535, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Laziness", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"423bbb11-ca08-473d-805d-3116f210e072\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596200, "SidewaysCard": false, "CustomDeck": { "5962": { "FaceURL": "https://i.ibb.co/yRSthkM/884e6b0c86fb.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6ca519", "Name": "Card", "Transform": { "posX": 39.9963264, "posY": 1.49508667, "posZ": 35.6158447, "rotX": 0.000178668663, "rotY": 269.9996, "rotZ": -0.00114832888, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Perfect Seal", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c2674644-57fe-4273-bb31-f848483cf3b7\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Talent. Augury\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596400, "SidewaysCard": false, "CustomDeck": { "5964": { "FaceURL": "https://i.ibb.co/BCwsH75/c3e49a23a765.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0003c", "Name": "Card", "Transform": { "posX": 39.5611572, "posY": 1.53669047, "posZ": 35.81573, "rotX": -0.0008950784, "rotY": 270.001251, "rotZ": -0.00320617668, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Inner Workings", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3a22dae9-a768-48e5-884a-34e83d5e4925\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent. Augury\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596100, "SidewaysCard": false, "CustomDeck": { "5961": { "FaceURL": "https://i.ibb.co/cJN1Q98/f5c71bc85fe4.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e54354", "Name": "Bag", "Transform": { "posX": 38.4383, "posY": 1.29646516, "posZ": -14.8786, "rotX": 7.595882E-08, "rotY": 270.001648, "rotZ": 1.4332943E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Funny Trick", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b4e7ac", "Name": "Card", "Transform": { "posX": 51.65512, "posY": 3.57530832, "posZ": 7.89140034, "rotX": 359.3267, "rotY": 269.9934, "rotZ": 1.12773132, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4255d760-d045-4991-8d4c-f4f8f0bde182\",\"type\":\"Minicard\",\"id\":\"Z2098-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598800, "SidewaysCard": false, "CustomDeck": { "5988": { "FaceURL": "https://i.ibb.co/LYzxDQy/a50b9520862a.png", "BackURL": "https://i.ibb.co/Hq3D68p/19581a917f97.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a55b7e", "Name": "Deck", "Transform": { "posX": 37.5141869, "posY": 3.60240149, "posZ": -15.2335215, "rotX": 0.261357337, "rotY": 270.0, "rotZ": 0.0193489529, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100700, 598600, 598600 ], "CustomDeck": { "1007": { "FaceURL": "https://i.ibb.co/rxhPR8D/73a2c16d55e8.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5986": { "FaceURL": "https://i.ibb.co/hZszC6C/fb1eb88205a9.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0000a", "Name": "Card", "Transform": { "posX": 33.87351, "posY": 1.49506652, "posZ": -15.3563967, "rotX": 0.000381842459, "rotY": 269.999969, "rotZ": -0.002491654, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Browbeaten", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"485db654-0622-430a-9ce4-4d53581e8374\",\"type\":\"Event\",\"traits\":\"Terror\",\"weakness\":true,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100700, "SidewaysCard": false, "CustomDeck": { "1007": { "FaceURL": "https://i.ibb.co/rxhPR8D/73a2c16d55e8.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7debb7", "Name": "Card", "Transform": { "posX": 33.9384422, "posY": 1.53667009, "posZ": -15.6374283, "rotX": -0.003201609, "rotY": 269.999969, "rotZ": 0.000554226746, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Metamorphosis", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5415b0e6-5c45-412c-a916-dd3684152951\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spell. Trick\",\"agilityIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598600, "SidewaysCard": false, "CustomDeck": { "5986": { "FaceURL": "https://i.ibb.co/hZszC6C/fb1eb88205a9.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a60327", "Name": "Card", "Transform": { "posX": 33.6647949, "posY": 1.5707134, "posZ": -15.3494778, "rotX": -0.0005090442, "rotY": 269.999939, "rotZ": -0.0003103064, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Metamorphosis", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5415b0e6-5c45-412c-a916-dd3684152951\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spell. Trick\",\"agilityIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598600, "SidewaysCard": false, "CustomDeck": { "5986": { "FaceURL": "https://i.ibb.co/hZszC6C/fb1eb88205a9.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "ed4a00", "Name": "Bag", "Transform": { "posX": 35.1383, "posY": 1.29646492, "posZ": -14.8786, "rotX": 2.8195285E-07, "rotY": 270.001465, "rotZ": 3.21755749E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Nephilia", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.124999441, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "115453", "Name": "Card", "Transform": { "posX": 28.9155617, "posY": 3.569261, "posZ": -14.7361965, "rotX": 359.9798, "rotY": 269.9997, "rotZ": 1.5987035, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"2fbb871e-c12d-4ba7-a91f-d592d7189b77\",\"type\":\"Minicard\",\"id\":\"Z8283-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605600, "SidewaysCard": false, "CustomDeck": { "6056": { "FaceURL": "https://i.ibb.co/K5DYnJZ/d29d5dd6e3a2.png", "BackURL": "https://i.ibb.co/x2RK11p/8f1b269ddaaa.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f83413", "Name": "Deck", "Transform": { "posX": 34.80399, "posY": 3.597884, "posZ": -14.5834007, "rotX": 0.3672731, "rotY": 269.998047, "rotZ": 359.387665, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100100, 100300, 100000 ], "CustomDeck": { "1001": { "FaceURL": "https://i.ibb.co/KjFRF77/ccdc4284bdcf.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1003": { "FaceURL": "https://i.ibb.co/hRnHzWw/25d704a971a5.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1000": { "FaceURL": "https://i.ibb.co/zG2fkFc/fea42ffb59cf.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00002", "Name": "Card", "Transform": { "posX": 26.0238228, "posY": 1.49505222, "posZ": -21.1741982, "rotX": 0.000567868468, "rotY": 269.999664, "rotZ": -0.003500864, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Necrophobia", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c82a4bb0-e701-4830-9acf-a6809c9500f0\",\"type\":\"Treachery\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100100, "SidewaysCard": false, "CustomDeck": { "1001": { "FaceURL": "https://i.ibb.co/KjFRF77/ccdc4284bdcf.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 24.4759064, "posY": 1.49506664, "posZ": -17.7846775, "rotX": 0.000367618253, "rotY": 270.000061, "rotZ": -0.00246113585, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "S�ance", "Description": "Speak Their Last Words", "GMNotes": "{\"TtsZoopGuid\":\"d6f6e2fc-6faa-44f4-b836-4ee6ea7af126\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ritual\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/hRnHzWw/25d704a971a5.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 24.4224358, "posY": 1.53668356, "posZ": -18.0294666, "rotX": 0.00444271136, "rotY": 269.999847, "rotZ": -0.000474930974, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Silent Dead", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b0b50d2e-17da-4d3e-a4c4-7da56abb2f4e\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Mystery\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100000, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/zG2fkFc/fea42ffb59cf.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "f29d13", "Name": "Card", "Transform": { "posX": 35.1383, "posY": 1.49510384, "posZ": -11.0486, "rotX": -5.63010332E-08, "rotY": 269.999969, "rotZ": -1.68482558E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Nephilia", "Description": "The Medium", "GMNotes": "{\"TtsZoopGuid\":\"cd658911-7778-4e86-8a29-27a3cc242c40\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Freelancer\",\"agilityIcons\":2,\"combatIcons\":2,\"intellectIcons\":3,\"willpowerIcons\":5,\"id\":\"Z8283\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606000, "SidewaysCard": false, "CustomDeck": { "6060": { "FaceURL": "https://i.ibb.co/CW9dWBH/27f92eb50cfe.png", "BackURL": "https://i.ibb.co/7vcgggG/61112e861317.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f83488", "Name": "Card", "Transform": { "posX": 45.0383, "posY": 1.49510384, "posZ": -18.7086, "rotX": 8.6866855E-08, "rotY": 269.980225, "rotZ": -1.20853414E-07, "scaleX": 0.805717766, "scaleY": 1.0, "scaleZ": 0.805717766 }, "Nickname": "Princess Lightning", "Description": "The Experiment", "GMNotes": "{\"TtsZoopGuid\":\"468ac2cb-ee78-4ffa-a7cc-c96d6d23f9c8\",\"type\":\"Investigator\",\"class\":\"Mystic\",\"traits\":\"Magical Girl. Construct\",\"agilityIcons\":1,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":5,\"id\":\"Z7306\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 596800, "SidewaysCard": false, "CustomDeck": { "5968": { "FaceURL": "https://i.ibb.co/zH91n7S/3100802e6fec.png", "BackURL": "https://i.ibb.co/qmDt8bs/f761a7673859.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fe911c", "Name": "Bag", "Transform": { "posX": 41.7383, "posY": 1.29646575, "posZ": -30.1786, "rotX": 1.73379362E-07, "rotY": 270.002747, "rotZ": 1.03401817E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Calcolo", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.1249992, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 45.3358154, "posY": 3.56476068, "posZ": 8.194528, "rotX": 359.563263, "rotY": 269.979462, "rotZ": 0.951855361, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"857779ef-96f6-4011-9bcb-6097703b6506\",\"type\":\"Minicard\",\"id\":\"Z9095-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 598900, "SidewaysCard": false, "CustomDeck": { "5989": { "FaceURL": "https://i.ibb.co/pPdpznC/e21e0f42c5bd.png", "BackURL": "https://i.ibb.co/LJhyFgv/1a59d6b9e0f0.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "24d774", "Name": "Deck", "Transform": { "posX": 34.31457, "posY": 3.59256744, "posZ": 22.4715, "rotX": 0.4253991, "rotY": 270.002075, "rotZ": 0.5657575, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100300, 599000 ], "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/zP7DJz8/ed18a6bd33a7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5990": { "FaceURL": "https://i.ibb.co/nf1D0zY/397f1493d384.png", "BackURL": "https://i.ibb.co/1J9svbx/4ff85a71ccb4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 45.3437843, "posY": 1.4950949, "posZ": 2.1874404, "rotX": 0.000102134916, "rotY": 269.994751, "rotZ": -0.000615411554, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Self Doubt", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f8989a32-54de-4404-8932-419ad64dc03c\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/zP7DJz8/ed18a6bd33a7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "30fc49", "Name": "Card", "Transform": { "posX": 45.5904236, "posY": 1.53962708, "posZ": 2.10441232, "rotX": 359.897217, "rotY": 270.0035, "rotZ": 359.9799, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abacus", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8b46b7f0-ed03-4a99-903d-5aefa4d6f9b2\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Tool\",\"willpowerIcons\":2,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 599000, "SidewaysCard": false, "CustomDeck": { "5990": { "FaceURL": "https://i.ibb.co/nf1D0zY/397f1493d384.png", "BackURL": "https://i.ibb.co/1J9svbx/4ff85a71ccb4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] } ] }, { "GUID": "6db1e9", "Name": "Bag", "Transform": { "posX": 64.2956, "posY": 1.29646468, "posZ": 10.0573, "rotX": 4.88162243E-07, "rotY": 89.99583, "rotZ": 1.86283074E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guardian", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799892, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0de565\":{\"lock\":false,\"pos\":{\"x\":51.6856,\"y\":1.4951,\"z\":14.1753},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"3ca997\":{\"lock\":false,\"pos\":{\"x\":48.3856,\"y\":1.2965,\"z\":25.6553},\"rot\":{\"x\":0,\"y\":-0.0002,\"z\":0}},\"46e780\":{\"lock\":false,\"pos\":{\"x\":48.3856,\"y\":1.4951,\"z\":29.4853},\"rot\":{\"x\":0,\"y\":270.0003,\"z\":0}},\"4b8c2e\":{\"lock\":false,\"pos\":{\"x\":51.6856,\"y\":1.4951,\"z\":6.5253},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"5aa03c\":{\"lock\":false,\"pos\":{\"x\":58.2856,\"y\":1.4951,\"z\":21.8353},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"621628\":{\"lock\":false,\"pos\":{\"x\":54.9856,\"y\":1.4951,\"z\":29.4853},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"8bfe16\":{\"lock\":false,\"pos\":{\"x\":51.6856,\"y\":1.4951,\"z\":21.8353},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"9785ac\":{\"lock\":false,\"pos\":{\"x\":54.9856,\"y\":1.4951,\"z\":14.1753},\"rot\":{\"x\":0,\"y\":269.9997,\"z\":0}},\"b27a3c\":{\"lock\":false,\"pos\":{\"x\":54.9856,\"y\":1.2965,\"z\":25.6553},\"rot\":{\"x\":0,\"y\":270.0037,\"z\":0}},\"b8ea14\":{\"lock\":false,\"pos\":{\"x\":51.6856,\"y\":1.4951,\"z\":29.4853},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"c36e06\":{\"lock\":false,\"pos\":{\"x\":54.9856,\"y\":1.4951,\"z\":6.5253},\"rot\":{\"x\":0,\"y\":269.9998,\"z\":0}},\"e0000d\":{\"lock\":false,\"pos\":{\"x\":51.6856,\"y\":1.2965,\"z\":18.0053},\"rot\":{\"x\":0,\"y\":269.9963,\"z\":0}},\"e00010\":{\"lock\":false,\"pos\":{\"x\":58.2856,\"y\":1.4951,\"z\":14.1753},\"rot\":{\"x\":0,\"y\":269.9998,\"z\":0}},\"e00013\":{\"lock\":false,\"pos\":{\"x\":58.2856,\"y\":1.2965,\"z\":10.3553},\"rot\":{\"x\":0,\"y\":270.0059,\"z\":0}},\"e00021\":{\"lock\":false,\"pos\":{\"x\":54.9856,\"y\":1.2965,\"z\":18.0053},\"rot\":{\"x\":0,\"y\":269.9788,\"z\":0}},\"e00029\":{\"lock\":false,\"pos\":{\"x\":51.6856,\"y\":1.2965,\"z\":25.6553},\"rot\":{\"x\":0,\"y\":270.0117,\"z\":0}},\"e0002f\":{\"lock\":false,\"pos\":{\"x\":54.9856,\"y\":1.2965,\"z\":10.3553},\"rot\":{\"x\":0,\"y\":269.9885,\"z\":0}},\"e00035\":{\"lock\":false,\"pos\":{\"x\":51.6856,\"y\":1.2965,\"z\":2.7053},\"rot\":{\"x\":0,\"y\":270.0029,\"z\":0}},\"e0003b\":{\"lock\":false,\"pos\":{\"x\":58.2856,\"y\":1.2965,\"z\":18.0053},\"rot\":{\"x\":0,\"y\":269.986,\"z\":0}},\"e00041\":{\"lock\":false,\"pos\":{\"x\":54.9856,\"y\":1.2965,\"z\":2.7053},\"rot\":{\"x\":0,\"y\":359.9851,\"z\":0}},\"e00047\":{\"lock\":false,\"pos\":{\"x\":51.6856,\"y\":1.2965,\"z\":10.3553},\"rot\":{\"x\":0,\"y\":269.9987,\"z\":0}},\"e0004b\":{\"lock\":false,\"pos\":{\"x\":58.2856,\"y\":1.4951,\"z\":29.4853},\"rot\":{\"x\":0,\"y\":270.0001,\"z\":0}},\"e0004e\":{\"lock\":false,\"pos\":{\"x\":58.2856,\"y\":1.2965,\"z\":25.6553},\"rot\":{\"x\":0,\"y\":270.0054,\"z\":0}},\"e0004f\":{\"lock\":false,\"pos\":{\"x\":58.2856,\"y\":1.4951,\"z\":6.5253},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"e00054\":{\"lock\":false,\"pos\":{\"x\":58.2856,\"y\":1.2965,\"z\":2.7053},\"rot\":{\"x\":0,\"y\":270.0076,\"z\":0}},\"ecc081\":{\"lock\":false,\"pos\":{\"x\":54.9856,\"y\":1.4951,\"z\":21.8353},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "0de565", "Name": "Card", "Transform": { "posX": 51.6856, "posY": 1.49510384, "posZ": 14.1753, "rotX": 1.32992E-07, "rotY": 270.0, "rotZ": -1.4065607E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Sister Nana", "Description": "The Nun", "GMNotes": "{\"TtsZoopGuid\":\"a2dde019-20d6-4353-8d34-a8719c172396\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Believer\",\"agilityIcons\":1,\"combatIcons\":3,\"intellectIcons\":4,\"willpowerIcons\":4,\"id\":\"Z1405\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104700, "SidewaysCard": false, "CustomDeck": { "1047": { "FaceURL": "https://i.ibb.co/x2Hp5d8/3a56ce972155.png", "BackURL": "https://i.ibb.co/Cswt8mB/db1f4ae74c47.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3ca997", "Name": "Bag", "Transform": { "posX": 48.3856049, "posY": 1.29646635, "posZ": 25.6553, "rotX": -6.00474868E-06, "rotY": -0.000423685124, "rotZ": 3.77863739E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Thunder General Adelheid", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.117999382, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "3b41ff", "Name": "Card", "Transform": { "posX": 51.1147232, "posY": 3.57838631, "posZ": -6.79112864, "rotX": 359.340576, "rotY": 270.687683, "rotZ": 0.6343234, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"fac0f860-762d-48f5-9133-d1a17e3ad709\",\"type\":\"Minicard\",\"id\":\"Z0871-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267300, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "https://i.ibb.co/Cbtk4QQ/a099014ba1a5.png", "BackURL": "https://i.ibb.co/6yX6f4r/3f75f27de428.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7f715e", "Name": "Deck", "Transform": { "posX": 50.7459641, "posY": 3.59698176, "posZ": -6.3113246, "rotX": 0.186947331, "rotY": 270.0056, "rotZ": 359.205383, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 267200, 267400, 267100 ], "CustomDeck": { "2672": { "FaceURL": "https://i.ibb.co/sQcM5F6/28f40cf8bf6d.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2674": { "FaceURL": "https://i.ibb.co/xzTGHng/1cc4570beb18.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "2671": { "FaceURL": "https://i.ibb.co/gw2KHgr/2415e270156c.png", "BackURL": "https://i.ibb.co/c2mSHsc/a1bf21748df1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "701d0f", "Name": "Card", "Transform": { "posX": 50.5456848, "posY": 1.4950943, "posZ": -11.66408, "rotX": 0.000103751918, "rotY": 270.223633, "rotZ": -0.0006450963, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Warrior's Pride", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d700e690-f5be-458f-a84e-ae207c36aabf\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267200, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "https://i.ibb.co/sQcM5F6/28f40cf8bf6d.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e39c7e", "Name": "Card", "Transform": { "posX": 50.7676163, "posY": 1.53675318, "posZ": -11.4632711, "rotX": 0.00184033683, "rotY": 270.010284, "rotZ": -0.00231419457, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kaiserschlacht", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"638b65a0-f55a-411b-9773-af7ef02f22bc\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Weapon. Melee\",\"combatIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267400, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "https://i.ibb.co/xzTGHng/1cc4570beb18.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7de76c", "Name": "Card", "Transform": { "posX": 50.641655, "posY": 1.57071972, "posZ": -11.74363, "rotX": 0.000564317452, "rotY": 270.007233, "rotZ": -0.0007007786, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Blitzkrieg", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6ebe7e91-fd4a-4780-bf8e-eaab9cede625\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267100, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "https://i.ibb.co/gw2KHgr/2415e270156c.png", "BackURL": "https://i.ibb.co/c2mSHsc/a1bf21748df1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "46e780", "Name": "Card", "Transform": { "posX": 48.3856, "posY": 1.49510384, "posZ": 29.4853, "rotX": 1.67281424E-08, "rotY": 270.0003, "rotZ": 3.9867178E-08, "scaleX": 0.7828432, "scaleY": 1.0, "scaleZ": 0.7828432 }, "Nickname": "Thunder General Adelheid", "Description": "The General", "GMNotes": "{\"TtsZoopGuid\":\"0126826a-fda0-4c38-88a3-2360a5cc965a\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl\",\"agilityIcons\":2,\"combatIcons\":5,\"intellectIcons\":1,\"willpowerIcons\":4,\"id\":\"Z0871\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267500, "SidewaysCard": false, "CustomDeck": { "2675": { "FaceURL": "https://i.ibb.co/TvfQjSK/85b48da4ee54.png", "BackURL": "https://i.ibb.co/Cb88ffp/bf35669d8200.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4b8c2e", "Name": "Card", "Transform": { "posX": 51.6856, "posY": 1.49510384, "posZ": 6.5253, "rotX": -1.0104209E-07, "rotY": 269.999939, "rotZ": -2.481243E-09, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Miss Marguerite", "Description": "The Fencer ", "GMNotes": "{\"TtsZoopGuid\":\"c6a01fee-7301-4d3a-9de0-567c4b459bb1\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Freelancer\",\"agilityIcons\":3,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":3,\"id\":\"Z9050\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594700, "SidewaysCard": false, "CustomDeck": { "5947": { "FaceURL": "https://i.ibb.co/q77r32x/8e10c00a10ea.png", "BackURL": "https://i.ibb.co/HHqCxYj/1ab3e1681532.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5aa03c", "Name": "Card", "Transform": { "posX": 58.2856, "posY": 1.49510384, "posZ": 21.8353, "rotX": 1.50684585E-07, "rotY": 269.999969, "rotZ": -4.12205168E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Patricia", "Description": "The Cop", "GMNotes": "{\"TtsZoopGuid\":\"b785d1a1-301a-4e89-98ca-8609b31ec79c\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Freelancer\",\"agilityIcons\":4,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":2,\"id\":\"Z3007\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103900, "SidewaysCard": false, "CustomDeck": { "1039": { "FaceURL": "https://i.ibb.co/RTz4H5k/f7178c9a9371.png", "BackURL": "https://i.ibb.co/55wQ87s/6d1871b282c1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "621628", "Name": "Card", "Transform": { "posX": 54.9856, "posY": 1.495104, "posZ": 29.4853, "rotX": -1.21193537E-07, "rotY": 269.999878, "rotZ": -4.30400462E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "@NyanNyan", "Description": "The Martial Artist", "GMNotes": "{\"TtsZoopGuid\":\"ddb8c195-6847-4961-b4cb-67e2d9e6e5a7\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Warden\",\"agilityIcons\":2,\"combatIcons\":5,\"intellectIcons\":2,\"willpowerIcons\":3,\"id\":\"Z8532\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594500, "SidewaysCard": false, "CustomDeck": { "5945": { "FaceURL": "https://i.ibb.co/TwYw9fD/7aa360c9ce62.png", "BackURL": "https://i.ibb.co/HnNyhYw/1d4a2bd9f866.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8bfe16", "Name": "Card", "Transform": { "posX": 51.6856, "posY": 1.4951036, "posZ": 21.8353, "rotX": 8.015699E-08, "rotY": 269.999939, "rotZ": -9.708105E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Armor Arlie", "Description": "The Sentinel", "GMNotes": "{\"TtsZoopGuid\":\"e0e4deed-d37d-4683-8412-b190fe9b3ea2\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Construct\",\"agilityIcons\":1,\"combatIcons\":4,\"intellectIcons\":3,\"willpowerIcons\":4,\"id\":\"Z3249\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595100, "SidewaysCard": false, "CustomDeck": { "5951": { "FaceURL": "https://i.ibb.co/j8FZGVS/ea13ffbc6837.png", "BackURL": "https://i.ibb.co/9WgcHv3/faade7cf6748.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9785ac", "Name": "Card", "Transform": { "posX": 54.9856, "posY": 1.49510384, "posZ": 14.1753, "rotX": -2.0160175E-07, "rotY": 269.999725, "rotZ": 1.2176173E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Masked Wonder", "Description": "The Superhero", "GMNotes": "{\"TtsZoopGuid\":\"167e7181-7b89-4357-812e-207171db30d3\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Warden\",\"agilityIcons\":5,\"combatIcons\":3,\"intellectIcons\":2,\"willpowerIcons\":3,\"id\":\"Z8517\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595200, "SidewaysCard": false, "CustomDeck": { "5952": { "FaceURL": "https://i.ibb.co/fnTKrTw/207092d42970.png", "BackURL": "https://i.ibb.co/Fqg7pKV/c71f5ff829d0.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b27a3c", "Name": "Bag", "Transform": { "posX": 54.9856, "posY": 1.2964648, "posZ": 25.6553, "rotX": -1.03712773E-06, "rotY": 270.004883, "rotZ": 4.3335578E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "@NyanNyan", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 24.00719, "posY": 3.569152, "posZ": 39.7629852, "rotX": 359.499054, "rotY": 269.9938, "rotZ": 1.41838825, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"37f85d23-072b-48a9-b91e-727c77e5d6ef\",\"type\":\"Minicard\",\"id\":\"Z8532-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100000, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/3f0RTpc/534a66e4f374.png", "BackURL": "https://i.ibb.co/CMyrJ8R/85844325e669.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1941d8", "Name": "Deck", "Transform": { "posX": 53.3746529, "posY": 3.59237647, "posZ": 25.728159, "rotX": 0.63899827, "rotY": 270.001556, "rotZ": 0.0114328461, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100300, 100200, 595300 ], "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/KxPHRsv/56b01137d5e5.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1002": { "FaceURL": "https://i.ibb.co/MDLtgc1/631dea52bd31.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5953": { "FaceURL": "https://i.ibb.co/48pYL38/b387df8533de.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 63.43455, "posY": 1.495086, "posZ": 25.7808418, "rotX": 0.0001827687, "rotY": 270.0, "rotZ": -0.00119361468, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lost Memories", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6a0534eb-5c3f-4770-8873-6159aba51eb5\",\"type\":\"Event\",\"traits\":\"Madness\",\"weakness\":true,\"wildIcons\":2,\"cost\":2,\"level\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/KxPHRsv/56b01137d5e5.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00003", "Name": "Card", "Transform": { "posX": 63.5474319, "posY": 1.5367347, "posZ": 25.8135433, "rotX": 0.00305805868, "rotY": 270.0, "rotZ": -0.00185062946, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Determination", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c9450cd5-2d5a-4b89-9067-3ce8a6a0692e\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Innate. Developed\",\"combatIcons\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100200, "SidewaysCard": false, "CustomDeck": { "1002": { "FaceURL": "https://i.ibb.co/MDLtgc1/631dea52bd31.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00005", "Name": "Card", "Transform": { "posX": 63.5459442, "posY": 1.60399938, "posZ": 25.6598377, "rotX": -1.71288339E-05, "rotY": 269.996, "rotZ": 358.257233, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fu", "Description": "Sealing Talisman", "GMNotes": "{\"TtsZoopGuid\":\"06cc9e14-82a4-4b77-a6af-e02e160502e0\",\"type\":\"Asset\",\"uses\":[{\"count\":3,\"token\":\"resource\",\"type\":\"Talismans\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Item. Charm\",\"uses\": [\r\n {\r\n \"count\": 3,\r\n \"type\": \"Talismans\",\r\n \"token\": \"resource\"\r\n }\r\n ]}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595300, "SidewaysCard": false, "CustomDeck": { "5953": { "FaceURL": "https://i.ibb.co/48pYL38/b387df8533de.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "b8ea14", "Name": "Card", "Transform": { "posX": 51.6856, "posY": 1.49510372, "posZ": 29.4853, "rotX": 4.18620729E-08, "rotY": 269.999939, "rotZ": 1.38511762E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Lapis Lazuline", "Description": "The Dropout", "GMNotes": "{\"TtsZoopGuid\":\"0f15bea2-d054-47e4-a625-a7a3e1044348\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Warden\",\"agilityIcons\":4,\"combatIcons\":3,\"intellectIcons\":2,\"willpowerIcons\":1,\"id\":\"Z5304\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594400, "SidewaysCard": false, "CustomDeck": { "5944": { "FaceURL": "https://i.ibb.co/jRXP4J1/9d9dad491725.png", "BackURL": "https://i.ibb.co/dDBwf5z/21e0ee56d48c.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c36e06", "Name": "Card", "Transform": { "posX": 54.9856, "posY": 1.49510372, "posZ": 6.5253, "rotX": -2.66931366E-08, "rotY": 269.999817, "rotZ": -1.70707537E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Princess Quake", "Description": "The Sketch Artist", "GMNotes": "{\"TtsZoopGuid\":\"5a73f50c-24e8-4f78-8643-fc5271ea2460\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Artist. Scholar\",\"agilityIcons\":1,\"combatIcons\":5,\"intellectIcons\":3,\"willpowerIcons\":3,\"id\":\"Z0121\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104300, "SidewaysCard": false, "CustomDeck": { "1043": { "FaceURL": "https://i.ibb.co/Ks9r6r6/64399bab710c.png", "BackURL": "https://i.ibb.co/tsKzKm5/dd69ebb35847.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0000d", "Name": "Bag", "Transform": { "posX": 51.6856041, "posY": 1.2964648, "posZ": 18.0053, "rotX": -1.38746725E-06, "rotY": 269.9967, "rotZ": -4.23632343E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Armor Arlie", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6951dd", "Name": "Card", "Transform": { "posX": 45.7856255, "posY": 3.57519865, "posZ": 12.7299776, "rotX": 359.850952, "rotY": 269.998779, "rotZ": 0.9400573, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"00da9869-91f6-4710-a4e0-fb3bce3171ed\",\"type\":\"Minicard\",\"id\":\"Z3249-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595000, "SidewaysCard": false, "CustomDeck": { "5950": { "FaceURL": "https://i.ibb.co/y5gZC7V/d438615ee6e7.png", "BackURL": "https://i.ibb.co/bsw7dYB/3d31761c8bdb.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "565886", "Name": "Deck", "Transform": { "posX": 45.2419624, "posY": 3.595313, "posZ": 13.117713, "rotX": 0.44817695, "rotY": 270.000641, "rotZ": 0.192239881, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100700, 100800 ], "CustomDeck": { "1007": { "FaceURL": "https://i.ibb.co/3SHJhBx/20dc811bff5c.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1008": { "FaceURL": "https://i.ibb.co/hWPVNg5/e9ddebfb1bef.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0000a", "Name": "Card", "Transform": { "posX": 16.17111, "posY": 1.49508238, "posZ": 31.4765911, "rotX": 0.000228870224, "rotY": 270.008728, "rotZ": -0.00144426792, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Homunculi", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6e570208-f032-4a55-ba94-33c1ba5135af\",\"type\":\"Enemy\",\"traits\":\"Construct. Abomination\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100700, "SidewaysCard": false, "CustomDeck": { "1007": { "FaceURL": "https://i.ibb.co/3SHJhBx/20dc811bff5c.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0000b", "Name": "Card", "Transform": { "posX": 16.4169827, "posY": 1.53672051, "posZ": 31.3641376, "rotX": -0.00367284287, "rotY": 270.008728, "rotZ": -0.000486358447, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Reactive Armor", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3074aa13-13b7-4059-bd0d-8863bb835bdb\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Upgrade\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100800, "SidewaysCard": false, "CustomDeck": { "1008": { "FaceURL": "https://i.ibb.co/hWPVNg5/e9ddebfb1bef.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00010", "Name": "Card", "Transform": { "posX": 58.2856, "posY": 1.4951036, "posZ": 14.1753, "rotX": -4.74429243E-08, "rotY": 269.999756, "rotZ": -1.07187262E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Magical Daisy", "Description": "The Celebrity", "GMNotes": "{\"TtsZoopGuid\":\"1d9560b6-68f3-420d-a001-2461d665407a\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Performer\",\"agilityIcons\":2,\"combatIcons\":4,\"intellectIcons\":3,\"willpowerIcons\":3,\"id\":\"Z9540\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101100, "SidewaysCard": false, "CustomDeck": { "1011": { "FaceURL": "https://i.ibb.co/WBM36Yb/c33cb04b4b0c.png", "BackURL": "https://i.ibb.co/LNB5DD0/392a112f7124.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00013", "Name": "Bag", "Transform": { "posX": 58.2856, "posY": 1.29646516, "posZ": 10.3553, "rotX": 9.28177258E-07, "rotY": 270.005859, "rotZ": -1.22992162E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Magical Daisy", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0000e", "Name": "Card", "Transform": { "posX": 26.18883, "posY": 3.57297778, "posZ": 12.4472122, "rotX": 358.802277, "rotY": 270.0418, "rotZ": 359.1899, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"daf0e297-3d28-4de1-98a3-97fce896b50b\",\"type\":\"Minicard\",\"id\":\"Z9540-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100900, "SidewaysCard": false, "CustomDeck": { "1009": { "FaceURL": "https://i.ibb.co/ZYk4cKj/9549bae9d30e.png", "BackURL": "https://i.ibb.co/K29W9Dt/070457ef0c93.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e4d33b", "Name": "Deck", "Transform": { "posX": 57.7021828, "posY": 3.59509468, "posZ": 10.7036572, "rotX": 359.963, "rotY": 270.000183, "rotZ": 359.3279, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 595300, 101200 ], "CustomDeck": { "5953": { "FaceURL": "https://i.ibb.co/xGdkMYT/6dbfba8dca5d.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1012": { "FaceURL": "https://i.ibb.co/SdRD624/d732f4f28ecd.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0000f", "Name": "Card", "Transform": { "posX": 61.2005348, "posY": 1.49508536, "posZ": 14.8911266, "rotX": 0.000183398966, "rotY": 270.0, "rotZ": -0.0012241886, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crimson Skeleton", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1bb05d2a-ccd0-4075-a765-0d5ca9476a61\",\"type\":\"Enemy\",\"traits\":\"Monster\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595300, "SidewaysCard": false, "CustomDeck": { "5953": { "FaceURL": "https://i.ibb.co/xGdkMYT/6dbfba8dca5d.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00011", "Name": "Card", "Transform": { "posX": 60.74376, "posY": 1.53673244, "posZ": 14.758049, "rotX": 0.00228245673, "rotY": 269.999939, "rotZ": -0.00458790548, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Palette", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"56a40ccb-832a-4c39-93ea-98a2a61ed3c6\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Fairy. Creature\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101200, "SidewaysCard": false, "CustomDeck": { "1012": { "FaceURL": "https://i.ibb.co/SdRD624/d732f4f28ecd.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00021", "Name": "Bag", "Transform": { "posX": 54.9856, "posY": 1.296465, "posZ": 18.0053, "rotX": -9.83645947E-08, "rotY": 269.978821, "rotZ": 9.840095E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hana Gekokujou", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0001f", "Name": "Card", "Transform": { "posX": 54.54562, "posY": 3.57932949, "posZ": 18.1216488, "rotX": 359.374176, "rotY": 270.001984, "rotZ": 359.641541, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"785559b5-1d1b-46a0-9d86-bd6ee19d5f72\",\"type\":\"Minicard\",\"id\":\"Z0769-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102200, "SidewaysCard": false, "CustomDeck": { "1022": { "FaceURL": "https://i.ibb.co/bKvJS6d/f4ee2357942e.png", "BackURL": "https://i.ibb.co/2ZfWzzV/51139df34047.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ee525f", "Name": "Deck", "Transform": { "posX": 54.2666931, "posY": 3.60762668, "posZ": 18.0189114, "rotX": 0.148830563, "rotY": 270.0036, "rotZ": 0.16822353, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 102100, 101800, 101800, 101900 ], "CustomDeck": { "1021": { "FaceURL": "https://i.ibb.co/hMqVTTj/7e91bed876ce.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1018": { "FaceURL": "https://i.ibb.co/KFHbQrS/5504b2a4ba7f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1019": { "FaceURL": "https://i.ibb.co/rKhNCKt/cd390164f73f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0001e", "Name": "Card", "Transform": { "posX": 63.50149, "posY": 1.49509454, "posZ": 18.4158669, "rotX": 0.00017833653, "rotY": 269.667175, "rotZ": -0.000738122733, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sensory Overload", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ce944532-5270-4e50-9649-0a4eb12e6f84\",\"type\":\"Treachery\",\"traits\":\"Hazard\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102100, "SidewaysCard": false, "CustomDeck": { "1021": { "FaceURL": "https://i.ibb.co/hMqVTTj/7e91bed876ce.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f04448", "Name": "Card", "Transform": { "posX": 65.9611, "posY": 1.50931489, "posZ": 20.61475, "rotX": 359.883453, "rotY": 270.3796, "rotZ": 359.4187, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Enhanced Senses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"95722a20-b261-4606-a353-fa531eaa0709\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Spell. Practiced\",\"intellectIcons\":1,\"wildIcons\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101800, "SidewaysCard": false, "CustomDeck": { "1018": { "FaceURL": "https://i.ibb.co/KFHbQrS/5504b2a4ba7f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0001b", "Name": "Card", "Transform": { "posX": 66.3133, "posY": 1.55271864, "posZ": 20.584898, "rotX": 359.894653, "rotY": 269.9956, "rotZ": 359.5316, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Enhanced Senses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"95722a20-b261-4606-a353-fa531eaa0709\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Spell. Practiced\",\"intellectIcons\":1,\"wildIcons\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101800, "SidewaysCard": false, "CustomDeck": { "1018": { "FaceURL": "https://i.ibb.co/KFHbQrS/5504b2a4ba7f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0001c", "Name": "Card", "Transform": { "posX": 63.49538, "posY": 1.5803597, "posZ": 18.4544582, "rotX": 1.18864818E-05, "rotY": 269.999878, "rotZ": -0.000392999442, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ace's Intuition", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"bae692f3-1408-48e4-8fdf-34b93c789c9a\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Evidence\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101900, "SidewaysCard": false, "CustomDeck": { "1019": { "FaceURL": "https://i.ibb.co/rKhNCKt/cd390164f73f.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00029", "Name": "Bag", "Transform": { "posX": 51.6856, "posY": 1.2964654, "posZ": 25.6553, "rotX": 1.558584E-06, "rotY": 270.011536, "rotZ": -1.55827081E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lapis Lazuline", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00027", "Name": "Card", "Transform": { "posX": 50.9888725, "posY": 3.57985139, "posZ": 25.8084526, "rotX": 0.3643779, "rotY": 269.997742, "rotZ": 359.295868, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c724d98f-b0fa-4642-8f98-ae571e06e3ed\",\"type\":\"Minicard\",\"id\":\"Z5304-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102800, "SidewaysCard": false, "CustomDeck": { "1028": { "FaceURL": "https://i.ibb.co/7KVktGJ/7ca38fd7f5e8.png", "BackURL": "https://i.ibb.co/PGcmbHV/d4adeb43c4f6.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "915556", "Name": "Deck", "Transform": { "posX": 50.71712, "posY": 3.59799743, "posZ": 25.4430561, "rotX": 0.3753076, "rotY": 270.0019, "rotZ": 0.5915209, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 595300, 102300, 102400 ], "CustomDeck": { "5953": { "FaceURL": "https://i.ibb.co/9WjY7wH/8f49976718a1.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1023": { "FaceURL": "https://i.ibb.co/KmvxK60/33241f789a0b.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1024": { "FaceURL": "https://i.ibb.co/mq9rr5K/5fc2e5721ab3.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00025", "Name": "Card", "Transform": { "posX": 47.4668, "posY": 1.49494421, "posZ": 26.8689251, "rotX": 0.00155125675, "rotY": 270.0, "rotZ": 359.989471, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mermaid's Tear", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"cee3f3b6-9538-4425-b895-cc803cc08016\",\"type\":\"Asset\",\"traits\":\"Item. Relic. Cursed\",\"weakness\":true,\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 595300, "SidewaysCard": false, "CustomDeck": { "5953": { "FaceURL": "https://i.ibb.co/9WjY7wH/8f49976718a1.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00022", "Name": "Card", "Transform": { "posX": 47.0716934, "posY": 1.495085, "posZ": 32.041687, "rotX": 0.00020243472, "rotY": 270.015747, "rotZ": -0.00127301889, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gemstones", "Description": "Always Together", "GMNotes": "{\"TtsZoopGuid\":\"88421f56-9706-4cbd-96b4-59797198557f\",\"type\":\"Asset\",\"uses\":[{\"count\":4,\"token\":\"resource\",\"type\":\"Supply\"}],\"class\":\"Neutral\",\"traits\":\"Item. Charm\",\"agilityIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102300, "SidewaysCard": false, "CustomDeck": { "1023": { "FaceURL": "https://i.ibb.co/KmvxK60/33241f789a0b.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00023", "Name": "Card", "Transform": { "posX": 47.15664, "posY": 1.53672349, "posZ": 32.0138741, "rotX": -0.00323048444, "rotY": 269.9985, "rotZ": -0.00120535458, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Jewelry Box", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f08f213d-582c-433c-9f72-fc872af5230b\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Item\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102400, "SidewaysCard": false, "CustomDeck": { "1024": { "FaceURL": "https://i.ibb.co/mq9rr5K/5fc2e5721ab3.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0002f", "Name": "Bag", "Transform": { "posX": 54.9856, "posY": 1.29646444, "posZ": 10.3553, "rotX": 2.95622357E-07, "rotY": 269.988159, "rotZ": 3.080881E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Masked Wonder", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0002d", "Name": "Card", "Transform": { "posX": 35.9289551, "posY": 3.57292747, "posZ": 26.8104744, "rotX": 358.951, "rotY": 269.999023, "rotZ": 0.108293258, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b1b998ec-4438-4843-8a19-a8d3c0b420b7\",\"type\":\"Minicard\",\"id\":\"Z8517-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103200, "SidewaysCard": false, "CustomDeck": { "1032": { "FaceURL": "https://i.ibb.co/r39KVdc/dd55455f7508.png", "BackURL": "https://i.ibb.co/1T9N9Wp/0f87e05f72da.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e6e656", "Name": "Deck", "Transform": { "posX": 54.5076447, "posY": 3.63270426, "posZ": 10.5024509, "rotX": 21.7744827, "rotY": 269.807922, "rotZ": 358.88562, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 605000, 103100, 103100, 103100 ], "CustomDeck": { "6050": { "FaceURL": "https://i.ibb.co/L5cczWR/8b7f9525a248.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1031": { "FaceURL": "https://i.ibb.co/BNHgrjm/d98f2370b745.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "248873", "Name": "Card", "Transform": { "posX": 48.1439743, "posY": 1.495101, "posZ": 10.6005936, "rotX": 1.41389064E-05, "rotY": 270.000427, "rotZ": -0.000253824634, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ostracism", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a7d65db0-c73d-4183-a819-873cb82cba31\",\"type\":\"Treachery\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605000, "SidewaysCard": false, "CustomDeck": { "6050": { "FaceURL": "https://i.ibb.co/L5cczWR/8b7f9525a248.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0002c", "Name": "Card", "Transform": { "posX": 36.19137, "posY": 1.49508572, "posZ": 19.5512085, "rotX": 0.000239687317, "rotY": 269.999939, "rotZ": -0.00128320931, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Weighted Blow", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e9056b8c-85dd-44fa-8605-3b238a20529e\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Innate. Developed\",\"agilityIcons\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103100, "SidewaysCard": false, "CustomDeck": { "1031": { "FaceURL": "https://i.ibb.co/BNHgrjm/d98f2370b745.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fa227d", "Name": "Card", "Transform": { "posX": 36.60227, "posY": 1.53721344, "posZ": 19.6514816, "rotX": 359.9907, "rotY": 269.999939, "rotZ": 359.985565, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Weighted Blow", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e9056b8c-85dd-44fa-8605-3b238a20529e\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Innate. Developed\",\"agilityIcons\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103100, "SidewaysCard": false, "CustomDeck": { "1031": { "FaceURL": "https://i.ibb.co/BNHgrjm/d98f2370b745.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2d53eb", "Name": "Card", "Transform": { "posX": 36.60227, "posY": 1.56825686, "posZ": 19.6514816, "rotX": 0.000870630553, "rotY": 269.999939, "rotZ": -0.0007273564, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Weighted Blow", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e9056b8c-85dd-44fa-8605-3b238a20529e\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Innate. Developed\",\"agilityIcons\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103100, "SidewaysCard": false, "CustomDeck": { "1031": { "FaceURL": "https://i.ibb.co/BNHgrjm/d98f2370b745.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00035", "Name": "Bag", "Transform": { "posX": 51.6856, "posY": 1.29646492, "posZ": 2.70529985, "rotX": 6.396398E-07, "rotY": 270.0043, "rotZ": 8.696246E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Miss Margarite", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "50428a", "Name": "Card", "Transform": { "posX": 45.4357719, "posY": 3.57147527, "posZ": 22.0431175, "rotX": 359.316223, "rotY": 269.992859, "rotZ": 1.26838744, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c65547db-3ed0-4d21-9626-edd7499f6a0d\",\"type\":\"Minicard\",\"id\":\"Z9050-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594800, "SidewaysCard": false, "CustomDeck": { "5948": { "FaceURL": "https://i.ibb.co/L0s3vg5/de015f789a71.png", "BackURL": "https://i.ibb.co/jbpvf6d/914d3f9b82b3.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7c8d91", "Name": "Deck", "Transform": { "posX": 50.8379669, "posY": 3.58953142, "posZ": 3.31645, "rotX": 0.187207118, "rotY": 269.998535, "rotZ": 359.144836, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 103500, 594600 ], "CustomDeck": { "1035": { "FaceURL": "https://i.ibb.co/kgK4xj2/b4e2ec932ed2.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5946": { "FaceURL": "https://i.ibb.co/S6zQwh9/118b0813771b.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9ba17c", "Name": "Card", "Transform": { "posX": 47.41138, "posY": 1.49509966, "posZ": 0.152672023, "rotX": 5.543991E-05, "rotY": 269.999939, "rotZ": -0.0002966349, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Reclusive", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8d363b1d-59f9-44aa-b9d0-150584cd18cf\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103500, "SidewaysCard": false, "CustomDeck": { "1035": { "FaceURL": "https://i.ibb.co/kgK4xj2/b4e2ec932ed2.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00031", "Name": "Card", "Transform": { "posX": 47.5571671, "posY": 1.53680563, "posZ": 0.545025647, "rotX": 0.00168146892, "rotY": 270.010742, "rotZ": -0.000683705031, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rose Rapier", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"733da1db-616c-4179-bf16-8c82e96f4844\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Weapon. Melee\",\"agilityIcons\":1,\"combatIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594600, "SidewaysCard": false, "CustomDeck": { "5946": { "FaceURL": "https://i.ibb.co/S6zQwh9/118b0813771b.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0003b", "Name": "Bag", "Transform": { "posX": 58.2856, "posY": 1.2964642, "posZ": 18.0053, "rotX": 2.94865927E-08, "rotY": 269.987152, "rotZ": -1.23704706E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Patricia", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00039", "Name": "Card", "Transform": { "posX": 57.85886, "posY": 3.578841, "posZ": 18.0328655, "rotX": 359.31842, "rotY": 269.99765, "rotZ": 0.396998733, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9806776b-03ba-4a2b-acb8-2ae42c0bda2d\",\"type\":\"Minicard\",\"id\":\"Z3007-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104000, "SidewaysCard": false, "CustomDeck": { "1040": { "FaceURL": "https://i.ibb.co/HDsJDWn/70690f232bf9.png", "BackURL": "https://i.ibb.co/hDRWy5t/6fc4b06d07cd.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d34be5", "Name": "Deck", "Transform": { "posX": 58.8527145, "posY": 3.590551, "posZ": 18.1909, "rotX": 359.3931, "rotY": 270.000549, "rotZ": 359.8873, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 103700, 103800, 103800 ], "CustomDeck": { "1037": { "FaceURL": "https://i.ibb.co/GTrFGPx/68813fc30a00.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1038": { "FaceURL": "https://i.ibb.co/93Rrpdy/66b974494a84.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00036", "Name": "Card", "Transform": { "posX": 63.02175, "posY": 1.49506807, "posZ": 17.688961, "rotX": 0.000422124373, "rotY": 269.999969, "rotZ": -0.00246567349, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "False Arrest", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"85d2aebd-c66f-49e6-8569-8edf0b87b16f\",\"type\":\"Treachery\",\"traits\":\"Blunder\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103700, "SidewaysCard": false, "CustomDeck": { "1037": { "FaceURL": "https://i.ibb.co/GTrFGPx/68813fc30a00.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e5fd15", "Name": "Card", "Transform": { "posX": 66.87917, "posY": 1.4950645, "posZ": 16.182682, "rotX": 0.000383932173, "rotY": 269.999939, "rotZ": -0.00260213716, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Magical Handcuffs", "Description": "One Size Fits All", "GMNotes": "{\"TtsZoopGuid\":\"b694be3b-b4d4-4f83-ad49-ef4630b6ca05\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Police\",\"agilityIcons\":1,\"combatIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103800, "SidewaysCard": false, "CustomDeck": { "1038": { "FaceURL": "https://i.ibb.co/93Rrpdy/66b974494a84.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00037", "Name": "Card", "Transform": { "posX": 66.5426559, "posY": 1.53666651, "posZ": 15.9899654, "rotX": 0.006326688, "rotY": 269.999969, "rotZ": -0.0007469692, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Magical Handcuffs", "Description": "One Size Fits All", "GMNotes": "{\"TtsZoopGuid\":\"b694be3b-b4d4-4f83-ad49-ef4630b6ca05\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Police\",\"agilityIcons\":1,\"combatIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103800, "SidewaysCard": false, "CustomDeck": { "1038": { "FaceURL": "https://i.ibb.co/93Rrpdy/66b974494a84.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00041", "Name": "Bag", "Transform": { "posX": 54.9856033, "posY": 1.29646468, "posZ": 2.70530033, "rotX": 2.57297279E-06, "rotY": 359.985077, "rotZ": -1.60417656E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Princess Quake", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0003f", "Name": "Card", "Transform": { "posX": 33.5949, "posY": 3.58472753, "posZ": 39.81157, "rotX": 359.5465, "rotY": 270.003967, "rotZ": 0.492081, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d9240462-ab82-4a29-af8f-226b06258013\",\"type\":\"Minicard\",\"id\":\"Z0121-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104400, "SidewaysCard": false, "CustomDeck": { "1044": { "FaceURL": "https://i.ibb.co/FXJKr55/aba47f654feb.png", "BackURL": "https://i.ibb.co/DV83y2C/0c640acd36c5.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1b1c1d", "Name": "Deck", "Transform": { "posX": 54.16484, "posY": 3.59487414, "posZ": 2.495331, "rotX": 0.2316298, "rotY": 270.001221, "rotZ": 0.6105195, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 104200, 104100 ], "CustomDeck": { "1042": { "FaceURL": "https://i.ibb.co/r64Km54/6febffbd107a.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1041": { "FaceURL": "https://i.ibb.co/27sGJJL/35692399d0c7.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0003d", "Name": "Card", "Transform": { "posX": 34.0756836, "posY": 1.49509382, "posZ": 35.50747, "rotX": 0.000110802874, "rotY": 269.9935, "rotZ": -0.0006796994, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lost Child", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"28021198-a2f2-457d-937e-6c03cb503194\",\"type\":\"Asset\",\"traits\":\"Ally. Bystander\",\"weakness\":true,\"level\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104200, "SidewaysCard": false, "CustomDeck": { "1042": { "FaceURL": "https://i.ibb.co/r64Km54/6febffbd107a.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0003c", "Name": "Card", "Transform": { "posX": 33.69823, "posY": 1.53675056, "posZ": 35.8528366, "rotX": -0.0007075149, "rotY": 269.9935, "rotZ": -0.00412261765, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Earthquake", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a3562eb9-f290-4342-a565-86fc099944dd\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Talent\",\"combatIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104100, "SidewaysCard": false, "CustomDeck": { "1041": { "FaceURL": "https://i.ibb.co/27sGJJL/35692399d0c7.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00047", "Name": "Bag", "Transform": { "posX": 51.6856, "posY": 1.29646492, "posZ": 10.3553, "rotX": 4.05383673E-07, "rotY": 269.998016, "rotZ": -7.072575E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sister Nana", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "3c018a", "Name": "Card", "Transform": { "posX": 39.57221, "posY": 3.57290936, "posZ": 22.0090885, "rotX": 359.5775, "rotY": 269.978241, "rotZ": 1.49582851, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"54df7496-ab59-4905-9566-7a43daff1dc3\",\"type\":\"Minicard\",\"id\":\"Z1405-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104800, "SidewaysCard": false, "CustomDeck": { "1048": { "FaceURL": "https://i.ibb.co/JCrZYkg/bc2a3aae3681.png", "BackURL": "https://i.ibb.co/p3TKWcv/04a1b11d9cb2.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2324ba", "Name": "Deck", "Transform": { "posX": 50.72007, "posY": 3.60409641, "posZ": 10.6073933, "rotX": 0.413920343, "rotY": 269.998444, "rotZ": 359.5738, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 104600, 594600, 594600, 594600 ], "CustomDeck": { "1046": { "FaceURL": "https://i.ibb.co/GTQWSFS/8d8c7ec38f71.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5946": { "FaceURL": "https://i.ibb.co/1s0Xx6h/759e419dc573.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00043", "Name": "Card", "Transform": { "posX": 24.48751, "posY": 1.49505806, "posZ": 18.48714, "rotX": 0.000492836465, "rotY": 269.998444, "rotZ": -0.00308939884, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lost Light", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"79f2b9a2-b582-409f-b37d-bda94b881bad\",\"type\":\"Treachery\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104600, "SidewaysCard": false, "CustomDeck": { "1046": { "FaceURL": "https://i.ibb.co/GTQWSFS/8d8c7ec38f71.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00042", "Name": "Card", "Transform": { "posX": 25.19923, "posY": 1.495082, "posZ": 21.7739372, "rotX": 0.000236090622, "rotY": 270.0, "rotZ": -0.00147449377, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Holy Blessing", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"11245b2a-cf1a-482d-adfe-62d74562a38b\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Spirit. Blessed\",\"agilityIcons\":1,\"intellectIcons\":1,\"willpowerIcons\":1,\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594600, "SidewaysCard": false, "CustomDeck": { "1045": { "FaceURL": "https://i.ibb.co/1s0Xx6h/759e419dc573.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ba5acc", "Name": "Card", "Transform": { "posX": 25.08039, "posY": 1.5373584, "posZ": 21.8802547, "rotX": -0.00342144538, "rotY": 270.0, "rotZ": -0.00336184888, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Holy Blessing", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"11245b2a-cf1a-482d-adfe-62d74562a38b\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Spirit. Blessed\",\"agilityIcons\":1,\"intellectIcons\":1,\"willpowerIcons\":1,\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594600, "SidewaysCard": false, "CustomDeck": { "1045": { "FaceURL": "https://i.ibb.co/1s0Xx6h/759e419dc573.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "151ee9", "Name": "Card", "Transform": { "posX": 25.0803928, "posY": 1.56173491, "posZ": 21.8802567, "rotX": -0.00147022342, "rotY": 270.0, "rotZ": -0.001212192, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Holy Blessing", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"11245b2a-cf1a-482d-adfe-62d74562a38b\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Spirit. Blessed\",\"agilityIcons\":1,\"intellectIcons\":1,\"willpowerIcons\":1,\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594600, "SidewaysCard": false, "CustomDeck": { "1045": { "FaceURL": "https://i.ibb.co/1s0Xx6h/759e419dc573.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0004b", "Name": "Card", "Transform": { "posX": 58.2856, "posY": 1.49510372, "posZ": 29.4853, "rotX": -1.42205536E-07, "rotY": 270.000061, "rotZ": -1.04619204E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Snow White", "Description": "The Magical Girl Hunter", "GMNotes": "{\"TtsZoopGuid\":\"df8e4c6c-943e-4d42-823f-7bae69e0a15d\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Hunter. Warden\",\"agilityIcons\":2,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":4,\"id\":\"Z1515\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105200, "SidewaysCard": false, "CustomDeck": { "1052": { "FaceURL": "https://i.ibb.co/Csg1y14/195c4f46185c.png", "BackURL": "https://i.ibb.co/kQ46ZD6/42eac1619ad1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0004e", "Name": "Bag", "Transform": { "posX": 58.2856, "posY": 1.29646516, "posZ": 25.6553, "rotX": 3.02901633E-08, "rotY": 270.0058, "rotZ": -3.02871E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Snow White", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0004c", "Name": "Card", "Transform": { "posX": 18.1435585, "posY": 3.574104, "posZ": 26.8916416, "rotX": 359.03537, "rotY": 270.004883, "rotZ": 359.4223, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9bf52651-3a4a-4ed1-85e0-4c7d6f2e6be3\",\"type\":\"Minicard\",\"id\":\"Z1515-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105300, "SidewaysCard": false, "CustomDeck": { "1053": { "FaceURL": "https://i.ibb.co/59D7xvb/f4270f5c9e60.png", "BackURL": "https://i.ibb.co/tZQwkny/02a50be90332.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7c4830", "Name": "Deck", "Transform": { "posX": 57.4086533, "posY": 3.594479, "posZ": 25.4777222, "rotX": 0.309985667, "rotY": 270.001556, "rotZ": 0.573990464, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 105000, 105100 ], "CustomDeck": { "1050": { "FaceURL": "https://i.ibb.co/sQVd8VX/efca535a743d.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1051": { "FaceURL": "https://i.ibb.co/YP11Rh4/179f1d46e8f0.png", "BackURL": "https://i.ibb.co/64mKVVV/4c8d8ce66edf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00049", "Name": "Card", "Transform": { "posX": 63.18249, "posY": 1.49507439, "posZ": 25.6152611, "rotX": 0.000294470665, "rotY": 269.999939, "rotZ": -0.00195570244, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pythie", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3976360c-3aa2-4427-b755-90d6a3a152ff\",\"type\":\"Enemy\",\"hidden\":true,\"traits\":\"Humanoid. Magical Girl. Criminal. Conspirator\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105000, "SidewaysCard": false, "CustomDeck": { "1050": { "FaceURL": "https://i.ibb.co/sQVd8VX/efca535a743d.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0004a", "Name": "Card", "Transform": { "posX": 63.32259, "posY": 1.5367322, "posZ": 25.1677952, "rotX": 0.002119841, "rotY": 270.0, "rotZ": -0.001367629, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ruler (Weapon)", "Description": "Unbreakable Naginata", "GMNotes": "{\"TtsZoopGuid\":\"3a494b86-684f-49cf-971c-d8968fb04b79\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Relic. Weapon. Melee\",\"agilityIcons\":1,\"combatIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105100, "SidewaysCard": false, "CustomDeck": { "1051": { "FaceURL": "https://i.ibb.co/YP11Rh4/179f1d46e8f0.png", "BackURL": "https://i.ibb.co/64mKVVV/4c8d8ce66edf.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0004f", "Name": "Card", "Transform": { "posX": 58.2856, "posY": 1.495104, "posZ": 6.5253, "rotX": -3.07261274E-07, "rotY": 269.999878, "rotZ": -6.339177E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Genopsyko Yumenoshima", "Description": "The Mangaka", "GMNotes": "{\"TtsZoopGuid\":\"cb1799ab-5bf9-4d01-a564-33a7798b461c\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Artist\",\"agilityIcons\":3,\"combatIcons\":4,\"intellectIcons\":1,\"willpowerIcons\":4,\"id\":\"Z6821\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105400, "SidewaysCard": false, "CustomDeck": { "1054": { "FaceURL": "https://i.ibb.co/zJ4XFPd/ca2ea554f9fa.png", "BackURL": "https://i.ibb.co/yWLMJbt/d364691f83e0.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00054", "Name": "Bag", "Transform": { "posX": 58.2856, "posY": 1.29646611, "posZ": 2.70530033, "rotX": -2.15233717E-06, "rotY": 270.006256, "rotZ": 3.92356263E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Yumenoshima Genopsycho", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.11799898, "g": 0.53, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00052", "Name": "Card", "Transform": { "posX": 27.099741, "posY": 3.578521, "posZ": -5.52115059, "rotX": 0.197249159, "rotY": 269.998047, "rotZ": 358.865173, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7fa4088f-c93e-460a-9895-7f721338edc1\",\"type\":\"Minicard\",\"id\":\"Z6821-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105700, "SidewaysCard": false, "CustomDeck": { "1057": { "FaceURL": "https://i.ibb.co/kcTxjt4/3413b5d27d2b.png", "BackURL": "https://i.ibb.co/DD1kGSX/1f13c60b633c.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "266822", "Name": "Deck", "Transform": { "posX": 57.7624168, "posY": 3.5946002, "posZ": 3.09088373, "rotX": 359.891174, "rotY": 270.000671, "rotZ": 359.308167, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 105500, 105600 ], "CustomDeck": { "1055": { "FaceURL": "https://i.ibb.co/p1ch1Zs/1a37c1a66c82.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1056": { "FaceURL": "https://i.ibb.co/JzqLLN3/53e03cafd7cc.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00050", "Name": "Card", "Transform": { "posX": 27.9381561, "posY": 1.49508882, "posZ": -18.058672, "rotX": 0.000156681854, "rotY": 270.000031, "rotZ": -0.00100923714, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Audacious", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"eaec5cf1-d2bd-41e1-926b-95541dac3c79\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105500, "SidewaysCard": false, "CustomDeck": { "1055": { "FaceURL": "https://i.ibb.co/p1ch1Zs/1a37c1a66c82.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00051", "Name": "Card", "Transform": { "posX": 28.1599751, "posY": 1.53674364, "posZ": -17.9927368, "rotX": 0.00239714421, "rotY": 270.0, "rotZ": -0.00178521674, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Space Suit", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f86f4efc-275d-47c5-9e5d-7048231432b6\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Armor\",\"agilityIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105600, "SidewaysCard": false, "CustomDeck": { "1056": { "FaceURL": "https://i.ibb.co/JzqLLN3/53e03cafd7cc.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "ecc081", "Name": "Card", "Transform": { "posX": 54.9856, "posY": 1.495104, "posZ": 21.8353, "rotX": -5.06730764E-08, "rotY": 269.999878, "rotZ": -5.16868255E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Hana Gekokujou", "Description": "The Ace Inspector", "GMNotes": "{\"TtsZoopGuid\":\"d5db8b84-de11-49cd-849e-cc3416465439\",\"type\":\"Investigator\",\"class\":\"Guardian\",\"traits\":\"Magical Girl. Agency\",\"agilityIcons\":3,\"combatIcons\":2,\"intellectIcons\":4,\"willpowerIcons\":3,\"id\":\"Z0769\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 594900, "SidewaysCard": false, "CustomDeck": { "5949": { "FaceURL": "https://i.ibb.co/tYjbGwQ/9f25ced69320.png", "BackURL": "https://i.ibb.co/8g6j5Bc/a45acecdbc32.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "6e8ff2", "Name": "Bag", "Transform": { "posX": 64.3056, "posY": 1.29646492, "posZ": -5.2381, "rotX": -2.77082137E-07, "rotY": 89.99616, "rotZ": 3.266253E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Survivor", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"337a78\":{\"lock\":false,\"pos\":{\"x\":31.2896,\"y\":1.2965,\"z\":18.137},\"rot\":{\"x\":0,\"y\":270.0021,\"z\":0}},\"6d7852\":{\"lock\":false,\"pos\":{\"x\":24.6896,\"y\":1.2965,\"z\":18.137},\"rot\":{\"x\":0,\"y\":270.0016,\"z\":0}},\"722c64\":{\"lock\":false,\"pos\":{\"x\":27.9896,\"y\":1.2965,\"z\":2.837},\"rot\":{\"x\":0,\"y\":270.005,\"z\":0}},\"7d940f\":{\"lock\":false,\"pos\":{\"x\":24.6896,\"y\":1.4951,\"z\":14.307},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"84e1f9\":{\"lock\":false,\"pos\":{\"x\":31.2895,\"y\":1.2965,\"z\":25.787},\"rot\":{\"x\":0,\"y\":270.0016,\"z\":0}},\"9a05b6\":{\"lock\":false,\"pos\":{\"x\":21.3895,\"y\":1.2965,\"z\":18.137},\"rot\":{\"x\":0,\"y\":270.0021,\"z\":0}},\"a0f16e\":{\"lock\":false,\"pos\":{\"x\":24.6896,\"y\":1.4951,\"z\":6.657},\"rot\":{\"x\":0,\"y\":269.9926,\"z\":0}},\"b17e36\":{\"lock\":false,\"pos\":{\"x\":21.3895,\"y\":1.2965,\"z\":25.787},\"rot\":{\"x\":0,\"y\":270.0068,\"z\":0}},\"d38e02\":{\"lock\":false,\"pos\":{\"x\":21.3895,\"y\":1.4951,\"z\":29.617},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"e00001\":{\"lock\":false,\"pos\":{\"x\":21.3895,\"y\":1.4951,\"z\":21.967},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"e00018\":{\"lock\":false,\"pos\":{\"x\":31.2896,\"y\":1.4951,\"z\":21.967},\"rot\":{\"x\":0,\"y\":269.9851,\"z\":0}},\"e0001d\":{\"lock\":false,\"pos\":{\"x\":24.6896,\"y\":1.4951,\"z\":21.967},\"rot\":{\"x\":0,\"y\":270.0191,\"z\":0}},\"e00025\":{\"lock\":false,\"pos\":{\"x\":27.9896,\"y\":1.4951,\"z\":21.967},\"rot\":{\"x\":0,\"y\":270.0227,\"z\":0}},\"e00027\":{\"lock\":false,\"pos\":{\"x\":27.9896,\"y\":1.2965,\"z\":18.137},\"rot\":{\"x\":0,\"y\":270.0044,\"z\":0}},\"e0002b\":{\"lock\":false,\"pos\":{\"x\":27.9896,\"y\":1.4951,\"z\":6.657},\"rot\":{\"x\":0,\"y\":269.9925,\"z\":0}},\"e00030\":{\"lock\":false,\"pos\":{\"x\":27.9997,\"y\":1.4951,\"z\":14.3274},\"rot\":{\"x\":0,\"y\":269.9927,\"z\":0}},\"e00033\":{\"lock\":false,\"pos\":{\"x\":27.9896,\"y\":1.2965,\"z\":10.4869},\"rot\":{\"x\":0,\"y\":225.0016,\"z\":0}},\"e00037\":{\"lock\":false,\"pos\":{\"x\":31.3835,\"y\":1.4951,\"z\":29.6209},\"rot\":{\"x\":0,\"y\":270.0087,\"z\":0}},\"e00040\":{\"lock\":false,\"pos\":{\"x\":24.6896,\"y\":1.2965,\"z\":2.837},\"rot\":{\"x\":0,\"y\":270.0019,\"z\":0}},\"e00042\":{\"lock\":false,\"pos\":{\"x\":27.9896,\"y\":1.4951,\"z\":29.617},\"rot\":{\"x\":0,\"y\":269.9998,\"z\":0}},\"e00046\":{\"lock\":false,\"pos\":{\"x\":27.9896,\"y\":1.2965,\"z\":25.787},\"rot\":{\"x\":0,\"y\":270.0018,\"z\":0}},\"e00048\":{\"lock\":false,\"pos\":{\"x\":31.2896,\"y\":1.4951,\"z\":6.657},\"rot\":{\"x\":0,\"y\":269.9927,\"z\":0}},\"e0004c\":{\"lock\":false,\"pos\":{\"x\":31.2896,\"y\":1.2965,\"z\":2.837},\"rot\":{\"x\":0,\"y\":270.0018,\"z\":0}},\"e00050\":{\"lock\":false,\"pos\":{\"x\":24.6896,\"y\":1.4951,\"z\":29.617},\"rot\":{\"x\":0,\"y\":270.0117,\"z\":0}},\"e00053\":{\"lock\":false,\"pos\":{\"x\":24.6896,\"y\":1.2965,\"z\":25.787},\"rot\":{\"x\":0,\"y\":270.0025,\"z\":0}},\"e00056\":{\"lock\":false,\"pos\":{\"x\":31.2896,\"y\":1.4951,\"z\":14.307},\"rot\":{\"x\":0,\"y\":270.0217,\"z\":0}},\"e00059\":{\"lock\":false,\"pos\":{\"x\":31.2896,\"y\":1.2965,\"z\":10.4869},\"rot\":{\"x\":0,\"y\":270.0026,\"z\":0}},\"fbb9b9\":{\"lock\":false,\"pos\":{\"x\":24.6896,\"y\":1.2965,\"z\":10.4869},\"rot\":{\"x\":0,\"y\":270.0031,\"z\":0}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "337a78", "Name": "Bag", "Transform": { "posX": 31.2896, "posY": 1.29646468, "posZ": 18.137, "rotX": 3.49936272E-07, "rotY": 270.0024, "rotZ": -1.55731436E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Nokko", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00015", "Name": "Card", "Transform": { "posX": 43.30886, "posY": 3.577325, "posZ": 20.4443684, "rotX": 359.3605, "rotY": 270.005066, "rotZ": 359.085632, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"dd5237d9-cecd-4783-a669-1e02eec9cb2c\",\"type\":\"Minicard\",\"id\":\"Z6407-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587600, "SidewaysCard": false, "CustomDeck": { "5876": { "FaceURL": "https://i.ibb.co/0Xcccgy/8d4c2490d371.png", "BackURL": "https://i.ibb.co/MZ0P9hs/2be04b3e542d.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c01f13", "Name": "Deck", "Transform": { "posX": 30.9031925, "posY": 3.59147382, "posZ": 18.4397335, "rotX": 0.449909568, "rotY": 269.997681, "rotZ": 359.416321, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 587700, 101600 ], "CustomDeck": { "5877": { "FaceURL": "https://i.ibb.co/yYZk5HP/f9b79076ab35.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1016": { "FaceURL": "https://i.ibb.co/TbgnC11/b4bfe793b818.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "40a93c", "Name": "Card", "Transform": { "posX": 40.01705, "posY": 1.49508643, "posZ": 14.0800409, "rotX": 0.0001771609, "rotY": 270.0, "rotZ": -0.00116194889, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gaslighting", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0b794389-0fd2-431e-a6fc-aa62bb7ba5d9\",\"type\":\"Treachery\",\"hidden\":true,\"traits\":\"Scheme. Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587700, "SidewaysCard": false, "CustomDeck": { "5877": { "FaceURL": "https://i.ibb.co/yYZk5HP/f9b79076ab35.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00017", "Name": "Card", "Transform": { "posX": 40.1591263, "posY": 1.53675425, "posZ": 13.8741522, "rotX": 0.00228893361, "rotY": 270.0, "rotZ": -0.00267277821, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Moral Support", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b1bf63cd-8b88-467d-bd47-d748a3e691ad\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Talent\",\"agilityIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101600, "SidewaysCard": false, "CustomDeck": { "1016": { "FaceURL": "https://i.ibb.co/TbgnC11/b4bfe793b818.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "6d7852", "Name": "Bag", "Transform": { "posX": 24.6895981, "posY": 1.29646564, "posZ": 18.137, "rotX": -1.63748268E-07, "rotY": 270.001617, "rotZ": -1.38106685E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Nonako", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0001b", "Name": "Card", "Transform": { "posX": 52.2200127, "posY": 3.57130241, "posZ": 20.4039879, "rotX": 359.553, "rotY": 270.00592, "rotZ": 358.478668, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"43c688fd-dc01-42c3-8efc-1ff59c7da76f\",\"type\":\"Minicard\",\"id\":\"Z7387-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587300, "SidewaysCard": false, "CustomDeck": { "5873": { "FaceURL": "https://i.ibb.co/7VtdMVH/347acaff012b.png", "BackURL": "https://i.ibb.co/s5Q25tj/1667d028377a.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0ee45f", "Name": "Deck", "Transform": { "posX": 24.2468872, "posY": 3.59522748, "posZ": 18.5041943, "rotX": 0.442875564, "rotY": 269.99762, "rotZ": 359.3948, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 587400, 102100, 587500 ], "CustomDeck": { "5874": { "FaceURL": "https://i.ibb.co/zRkNRDZ/a1871a0fa089.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1021": { "FaceURL": "https://i.ibb.co/jrkyf4P/52e5c25ea777.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5875": { "FaceURL": "https://i.ibb.co/vVtsz0C/c5e6ffd58401.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0001f", "Name": "Card", "Transform": { "posX": 51.18418, "posY": 1.49506342, "posZ": 13.8962, "rotX": 0.0003967785, "rotY": 270.011383, "rotZ": -0.00267439522, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ravenous Beasts", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b7d0fc39-a7f1-42c8-bda2-bc53286f9a87\",\"type\":\"Treachery\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587400, "SidewaysCard": false, "CustomDeck": { "5874": { "FaceURL": "https://i.ibb.co/zRkNRDZ/a1871a0fa089.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0001e", "Name": "Card", "Transform": { "posX": 47.79224, "posY": 1.49507725, "posZ": 14.4729567, "rotX": 0.000275834434, "rotY": 269.99707, "rotZ": -0.00177882682, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Voracious Dragon", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8207ff8a-9747-4a65-af3e-9afa10d8646e\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Creature\",\"agilityIcons\":1,\"combatIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102100, "SidewaysCard": false, "CustomDeck": { "1021": { "FaceURL": "https://i.ibb.co/jrkyf4P/52e5c25ea777.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ec78c6", "Name": "Card", "Transform": { "posX": 20.7958717, "posY": 1.5707171, "posZ": 17.3678513, "rotX": 0.000643680338, "rotY": 269.999969, "rotZ": -0.000831800164, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Enthralled", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0b7f93c9-0590-4131-b099-5a0b8bb2b346\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587500, "SidewaysCard": false, "CustomDeck": { "5875": { "FaceURL": "https://i.ibb.co/vVtsz0C/c5e6ffd58401.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "722c64", "Name": "Bag", "Transform": { "posX": 27.9895973, "posY": 1.2964648, "posZ": 2.837, "rotX": -2.85280123E-07, "rotY": 270.005, "rotZ": -1.525793E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Postarie", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "247c61", "Name": "Card", "Transform": { "posX": 34.5163536, "posY": 3.57620049, "posZ": 29.9026566, "rotX": 0.4477365, "rotY": 270.005066, "rotZ": 1.29030228, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7543831d-4ccd-4c2a-9bc2-df7d2a809a3a\",\"type\":\"Minicard\",\"id\":\"Z7769-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586500, "SidewaysCard": false, "CustomDeck": { "5865": { "FaceURL": "https://i.ibb.co/chtc3yb/fb0efc8f7bf3.png", "BackURL": "https://i.ibb.co/gPFZxx3/a283734df3b2.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "af2624", "Name": "Deck", "Transform": { "posX": 27.2608967, "posY": 3.58288884, "posZ": 3.9085412, "rotX": 0.2514847, "rotY": 269.998566, "rotZ": 359.352081, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 102800, 102900 ], "CustomDeck": { "1028": { "FaceURL": "https://i.ibb.co/6gHRTPx/fe706175f7f4.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1029": { "FaceURL": "https://i.ibb.co/vk7M1pZ/0be12beadd6d.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6ddc97", "Name": "Card", "Transform": { "posX": 31.4670982, "posY": 1.495096, "posZ": 22.7045135, "rotX": 0.000117745934, "rotY": 270.0358, "rotZ": -0.000580117863, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Desolation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7009e028-88a8-456a-a22d-6b230aff8361\",\"type\":\"Event\",\"traits\":\"Madness\",\"weakness\":true,\"cost\":0,\"level\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102800, "SidewaysCard": false, "CustomDeck": { "1028": { "FaceURL": "https://i.ibb.co/6gHRTPx/fe706175f7f4.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0002a", "Name": "Card", "Transform": { "posX": 31.57733, "posY": 1.53915262, "posZ": 22.72356, "rotX": 359.9863, "rotY": 270.01, "rotZ": 0.1048226, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Express Delivery", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1b8cf6f4-6c52-4912-b1ab-b8ef415b0db9\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Supply\",\"agilityIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102900, "SidewaysCard": false, "CustomDeck": { "1029": { "FaceURL": "https://i.ibb.co/vk7M1pZ/0be12beadd6d.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "7d940f", "Name": "Card", "Transform": { "posX": 24.6896, "posY": 1.49510384, "posZ": 14.307, "rotX": -5.57808981E-08, "rotY": 269.999939, "rotZ": 1.41593759E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Hardgore Alice", "Description": "The Undying", "GMNotes": "{\"TtsZoopGuid\":\"c864070b-9c2a-47f9-b2f0-8008c0d859e3\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Cursed\",\"agilityIcons\":1,\"combatIcons\":5,\"intellectIcons\":2,\"willpowerIcons\":4,\"id\":\"Z3538\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587800, "SidewaysCard": false, "CustomDeck": { "5878": { "FaceURL": "https://i.ibb.co/TTGMYqm/f5a265b2f4ae.png", "BackURL": "https://i.ibb.co/c8Z8Cx7/4440b99df417.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "84e1f9", "Name": "Bag", "Transform": { "posX": 31.2895, "posY": 1.29646635, "posZ": 25.787, "rotX": 9.74203249E-06, "rotY": 270.001831, "rotZ": -8.25287145E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ripple", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00034", "Name": "Card", "Transform": { "posX": 52.41035, "posY": 3.5688746, "posZ": 29.4139957, "rotX": 359.0306, "rotY": 270.005219, "rotZ": 359.38858, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"2b498813-9044-48d9-b312-04c67b069768\",\"type\":\"Minicard\",\"id\":\"Z8300-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103500, "SidewaysCard": false, "CustomDeck": { "1035": { "FaceURL": "https://i.ibb.co/kxx7g6W/5e732c3e452a.png", "BackURL": "https://i.ibb.co/gvfsgYz/31c275f52738.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5dc93d", "Name": "Deck", "Transform": { "posX": 31.3963, "posY": 3.60771251, "posZ": 25.865284, "rotX": 359.967621, "rotY": 270.000061, "rotZ": 359.763336, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 586800, 586700, 586700, 586700 ], "CustomDeck": { "5868": { "FaceURL": "https://i.ibb.co/GQKQVfd/668f6f9f1399.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5867": { "FaceURL": "https://i.ibb.co/9WnF2XD/1b2ff308bdf6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00036", "Name": "Card", "Transform": { "posX": 51.967495, "posY": 1.4950943, "posZ": 23.0206261, "rotX": 0.000118267555, "rotY": 270.0, "rotZ": -0.000667993154, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Phantom Pain", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"49a762f3-5062-4142-a4c8-bd9893916118\",\"type\":\"Treachery\",\"traits\":\"Madness. Curse\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586800, "SidewaysCard": false, "CustomDeck": { "5868": { "FaceURL": "https://i.ibb.co/GQKQVfd/668f6f9f1399.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1f3d0c", "Name": "Card", "Transform": { "posX": 48.6091728, "posY": 1.494686, "posZ": 22.6097088, "rotX": 0.00408475148, "rotY": 269.999817, "rotZ": 359.972443, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Storm of Blades", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"16d8d6ff-c4c8-47b8-9d62-a32e9171e244\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Tactic\",\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586700, "SidewaysCard": false, "CustomDeck": { "5867": { "FaceURL": "https://i.ibb.co/9WnF2XD/1b2ff308bdf6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8ead56", "Name": "Card", "Transform": { "posX": 48.61003, "posY": 1.52717376, "posZ": 22.6104889, "rotX": 0.118058018, "rotY": 269.999268, "rotZ": 359.921143, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Storm of Blades", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"16d8d6ff-c4c8-47b8-9d62-a32e9171e244\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Tactic\",\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586700, "SidewaysCard": false, "CustomDeck": { "5867": { "FaceURL": "https://i.ibb.co/9WnF2XD/1b2ff308bdf6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "345423", "Name": "Card", "Transform": { "posX": 48.610157, "posY": 1.56364918, "posZ": 22.6104183, "rotX": 0.00345441652, "rotY": 269.9999, "rotZ": -0.0015795565, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Storm of Blades", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"16d8d6ff-c4c8-47b8-9d62-a32e9171e244\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Tactic\",\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586700, "SidewaysCard": false, "CustomDeck": { "5867": { "FaceURL": "https://i.ibb.co/9WnF2XD/1b2ff308bdf6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "9a05b6", "Name": "Bag", "Transform": { "posX": 21.3895, "posY": 1.29646587, "posZ": 18.137, "rotX": 8.573391E-06, "rotY": 270.001953, "rotZ": -9.47864646E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kumi-Kumi", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.856, "g": 0.099999465, "b": 0.09399945 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "23e258", "Name": "Card", "Transform": { "posX": 14.3329248, "posY": 3.57660484, "posZ": 16.3948536, "rotX": 0.922125, "rotY": 269.991058, "rotZ": 0.0601418242, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"975862b4-25c1-4465-b712-33d95570cd14\",\"type\":\"Minicard\",\"id\":\"Z2981-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605000, "SidewaysCard": false, "CustomDeck": { "6050": { "FaceURL": "https://i.ibb.co/StXsW2J/d357c18070f1.png", "BackURL": "https://i.ibb.co/8dsFCPZ/c542c82d4b69.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3236db", "Name": "Deck", "Transform": { "posX": 20.5623436, "posY": 3.59766126, "posZ": 17.7228737, "rotX": 359.513763, "rotY": 269.998138, "rotZ": 0.438118666, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100300, 100400, 605100 ], "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/9Hj12Cn/3b28458685f7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1004": { "FaceURL": "https://i.ibb.co/qWDxN1m/2af24e9c2701.png", "BackURL": "https://i.ibb.co/MGkXSXR/8751c0f4b0fc.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "6051": { "FaceURL": "https://i.ibb.co/R3yCtH1/e286e48440b9.png", "BackURL": "https://i.ibb.co/1LPft9G/f974ad631166.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 9.226941, "posY": 1.49510133, "posZ": 13.8275976, "rotX": 3.915439E-05, "rotY": 270.0, "rotZ": -0.000186206991, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Analysis Paralysis", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1b66bb76-d9f5-4de3-853c-17d85e7250ce\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/9Hj12Cn/3b28458685f7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00005", "Name": "Card", "Transform": { "posX": 9.35438, "posY": 1.53677058, "posZ": 13.9407663, "rotX": -0.00143771851, "rotY": 270.000031, "rotZ": -0.00460799877, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Powered Kumi-Kumi Fortress Mode", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"93c22742-ce18-44ad-a91b-dc7d042af346\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Armor. Construct\",\"combatIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":15}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100400, "SidewaysCard": false, "CustomDeck": { "1004": { "FaceURL": "https://i.ibb.co/qWDxN1m/2af24e9c2701.png", "BackURL": "https://i.ibb.co/MGkXSXR/8751c0f4b0fc.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e91e47", "Name": "Card", "Transform": { "posX": 9.268218, "posY": 1.57073009, "posZ": 13.8902149, "rotX": -0.000149322048, "rotY": 270.0, "rotZ": -0.0005718159, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scrap", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40a2ef55-4679-4c3c-aebf-1834e4b87fa6\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Supply\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Item\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605100, "SidewaysCard": false, "CustomDeck": { "6051": { "FaceURL": "https://i.ibb.co/R3yCtH1/e286e48440b9.png", "BackURL": "https://i.ibb.co/1LPft9G/f974ad631166.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "a0f16e", "Name": "Card", "Transform": { "posX": 24.6896, "posY": 1.49510372, "posZ": 6.657, "rotX": -2.32185172E-07, "rotY": 269.9926, "rotZ": -7.90316648E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Sally Raven", "Description": "The Raven Whisperer", "GMNotes": "{\"TtsZoopGuid\":\"cc1113a0-436c-4b46-a34f-5854df870d10\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl\",\"agilityIcons\":3,\"combatIcons\":2,\"intellectIcons\":3,\"willpowerIcons\":4,\"id\":\"Z8615\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104000, "SidewaysCard": false, "CustomDeck": { "1040": { "FaceURL": "https://i.ibb.co/pZ7d5gx/a90410fd58b4.png", "BackURL": "https://i.ibb.co/ymCBK22/6aa28a9f80b9.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b17e36", "Name": "Bag", "Transform": { "posX": 21.3895, "posY": 1.29646444, "posZ": 25.787, "rotX": -2.70108E-07, "rotY": 270.006775, "rotZ": 2.700761E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bluebell Candy", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 52.6143646, "posY": 3.57004666, "posZ": 10.7771845, "rotX": 359.986816, "rotY": 269.913147, "rotZ": 1.62880027, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a7cc91d7-fccd-4255-b2e4-4585f48ecd92\",\"type\":\"Minicard\",\"id\":\"Z5211-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 588000, "SidewaysCard": false, "CustomDeck": { "5880": { "FaceURL": "https://i.ibb.co/BgyM4MH/96474830dbfa.png", "BackURL": "https://i.ibb.co/K9DsS7V/efa9ca0d29a1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b078dd", "Name": "Deck", "Transform": { "posX": 19.58936, "posY": 3.589709, "posZ": 25.339138, "rotX": 0.530380845, "rotY": 270.001129, "rotZ": 0.41399923, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 605400, 100300 ], "CustomDeck": { "6054": { "FaceURL": "https://i.ibb.co/X4rp2Bb/24a1ca4163b3.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1003": { "FaceURL": "https://i.ibb.co/FbS4J3S/dec52ce6d89c.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00003", "Name": "Card", "Transform": { "posX": 54.50517, "posY": 1.49509239, "posZ": 1.96976483, "rotX": 0.000118376985, "rotY": 269.997131, "rotZ": -0.0007657149, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dissociation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"09501aa7-914c-457c-a4b8-2b88c6ba8c25\",\"type\":\"Treachery\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605400, "SidewaysCard": false, "CustomDeck": { "1002": { "FaceURL": "https://i.ibb.co/X4rp2Bb/24a1ca4163b3.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 54.3123932, "posY": 1.53678584, "posZ": 1.69306111, "rotX": 0.000228093675, "rotY": 269.999084, "rotZ": -0.00375270541, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Memory Extraction", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1ad39a14-f988-4310-995e-31b42897c88b\",\"type\":\"Asset\",\"uses\":[{\"count\":5,\"token\":\"resource\",\"type\":\"Extracts\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Ritual\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/FbS4J3S/dec52ce6d89c.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "d38e02", "Name": "Card", "Transform": { "posX": 21.3895, "posY": 1.49510372, "posZ": 29.617, "rotX": 9.406595E-08, "rotY": 269.999939, "rotZ": -5.89783866E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Bluebell Candy", "Description": "The Confectioner", "GMNotes": "{\"TtsZoopGuid\":\"99dd370c-f88d-4b09-bdd5-3a7254647230\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Assistant\",\"agilityIcons\":4,\"combatIcons\":3,\"intellectIcons\":2,\"willpowerIcons\":3,\"id\":\"Z5211\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 588100, "SidewaysCard": false, "CustomDeck": { "5881": { "FaceURL": "https://i.ibb.co/dDcn41R/b455a842c9ef.png", "BackURL": "https://i.ibb.co/3Twpwwv/82ae1fbd4495.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 21.3895, "posY": 1.49510372, "posZ": 21.967, "rotX": -2.52089709E-08, "rotY": 270.0, "rotZ": -1.11588349E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Kumi-Kumi", "Description": "The Scavenger", "GMNotes": "{\"TtsZoopGuid\":\"16f087e1-5caa-4398-a341-0547e188bdf0\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl\",\"agilityIcons\":4,\"combatIcons\":2,\"intellectIcons\":4,\"willpowerIcons\":2,\"id\":\"Z2981\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100000, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/bNChRdh/54d2dede7f78.png", "BackURL": "https://i.ibb.co/ByfVRw7/659fe360f885.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00018", "Name": "Card", "Transform": { "posX": 31.2896, "posY": 1.49510372, "posZ": 21.967, "rotX": 1.21420641E-07, "rotY": 269.985077, "rotZ": -1.07916236E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Nokko", "Description": "The Maid", "GMNotes": "{\"TtsZoopGuid\":\"2e38ba55-c160-4884-8193-d5cf7e23502a\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Assistant\",\"agilityIcons\":4,\"combatIcons\":1,\"intellectIcons\":2,\"willpowerIcons\":5,\"id\":\"Z6407\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101700, "SidewaysCard": false, "CustomDeck": { "1017": { "FaceURL": "https://i.ibb.co/RSKhKh2/808a331b93b3.png", "BackURL": "https://i.ibb.co/JdpFgH1/28f795e5d580.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0001d", "Name": "Card", "Transform": { "posX": 24.6896, "posY": 1.49510384, "posZ": 21.967, "rotX": -2.84902635E-09, "rotY": 270.0191, "rotZ": -5.45720837E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Nonako Miyokata", "Description": "The Shrine Maiden", "GMNotes": "{\"TtsZoopGuid\":\"0a2ad4fd-d923-475c-90d1-e1d17401613a\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":2,\"combatIcons\":2,\"intellectIcons\":2,\"willpowerIcons\":2,\"id\":\"Z7387\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102000, "SidewaysCard": false, "CustomDeck": { "1020": { "FaceURL": "https://i.ibb.co/SmZ6KjT/d38624b1b855.png", "BackURL": "https://i.ibb.co/DMBkhMx/be52cf863542.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00025", "Name": "Card", "Transform": { "posX": 27.9896, "posY": 1.49510384, "posZ": 21.967, "rotX": 1.97984846E-07, "rotY": 270.022736, "rotZ": -4.95674257E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Pechka", "Description": "The Chef", "GMNotes": "{\"TtsZoopGuid\":\"63581028-2ec1-424d-aeb8-54d5f1a530f2\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":3,\"combatIcons\":1,\"intellectIcons\":4,\"willpowerIcons\":4,\"id\":\"Z4576\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587100, "SidewaysCard": false, "CustomDeck": { "5871": { "FaceURL": "https://i.ibb.co/pJKy7SB/a12a6556ecdb.png", "BackURL": "https://i.ibb.co/hRdKQny/d67ca352b3ba.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00027", "Name": "Bag", "Transform": { "posX": 27.9896, "posY": 1.296466, "posZ": 18.137, "rotX": -9.222082E-07, "rotY": 270.0042, "rotZ": 5.75163676E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pechka", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00022", "Name": "Card", "Transform": { "posX": 57.7437477, "posY": 3.574817, "posZ": 18.9668732, "rotX": 359.308044, "rotY": 269.9931, "rotZ": 1.13522041, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c45b3a19-7967-458c-828d-a841693134cb\",\"type\":\"Minicard\",\"id\":\"Z4576-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102300, "SidewaysCard": false, "CustomDeck": { "1023": { "FaceURL": "https://i.ibb.co/jZgtkQM/391fdbffcce3.png", "BackURL": "https://i.ibb.co/6wq8Krc/3e36f27608f1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b36b84", "Name": "Deck", "Transform": { "posX": 27.9959469, "posY": 3.598193, "posZ": 18.1333637, "rotX": 0.143560857, "rotY": 269.999939, "rotZ": 359.9689, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 587200, 102400 ], "CustomDeck": { "5872": { "FaceURL": "https://i.ibb.co/XD4PyYT/cf97fdd57b34.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1024": { "FaceURL": "https://i.ibb.co/yFq7dBQ/8c44109cfb8e.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "678694", "Name": "Card", "Transform": { "posX": 62.0872459, "posY": 1.49510515, "posZ": 15.6557646, "rotX": 7.109526E-06, "rotY": 270.0, "rotZ": 5.78711952E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cowardice", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"80f5a537-3027-4636-bf84-0088a8e9550a\",\"type\":\"Treachery\",\"traits\":\"Madness. Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587200, "SidewaysCard": false, "CustomDeck": { "5872": { "FaceURL": "https://i.ibb.co/XD4PyYT/cf97fdd57b34.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00023", "Name": "Card", "Transform": { "posX": 62.28134, "posY": 1.536752, "posZ": 15.9527531, "rotX": -0.00230135326, "rotY": 269.999969, "rotZ": 359.994171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Chef's Special", "Description": "Catch of the Day", "GMNotes": "{\"TtsZoopGuid\":\"94a50bb5-6f76-4b69-99b0-f7f0d1b43198\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Talent\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102400, "SidewaysCard": false, "CustomDeck": { "1024": { "FaceURL": "https://i.ibb.co/yFq7dBQ/8c44109cfb8e.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0002b", "Name": "Card", "Transform": { "posX": 27.9896, "posY": 1.49510384, "posZ": 6.657, "rotX": 2.09911676E-07, "rotY": 269.9925, "rotZ": 7.116443E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Postarie", "Description": "The Postwoman", "GMNotes": "{\"TtsZoopGuid\":\"97046e49-9582-483b-b988-ca2695ec8612\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":5,\"combatIcons\":2,\"intellectIcons\":3,\"willpowerIcons\":2,\"id\":\"Z7769\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586400, "SidewaysCard": false, "CustomDeck": { "5864": { "FaceURL": "https://i.ibb.co/6Njj9Bz/3013e4401e03.png", "BackURL": "https://i.ibb.co/yBGfphp/d2afcc76d254.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00030", "Name": "Card", "Transform": { "posX": 27.9997, "posY": 1.49510407, "posZ": 14.3274, "rotX": -1.48289189E-07, "rotY": 269.992676, "rotZ": 1.17497784E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Prism Cherry", "Description": "The Ordinary", "GMNotes": "{\"TtsZoopGuid\":\"0c902b24-7190-48b0-bb4c-d08588bcaffb\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Warden\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":2,\"willpowerIcons\":4,\"id\":\"Z4201\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586600, "SidewaysCard": false, "CustomDeck": { "5866": { "FaceURL": "https://i.ibb.co/1vttT9S/cbab0dd39699.png", "BackURL": "https://i.ibb.co/xs0RTfW/88a292aafe08.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00033", "Name": "Bag", "Transform": { "posX": 27.9896, "posY": 1.29646444, "posZ": 10.4869, "rotX": 2.9993366E-08, "rotY": 225.001617, "rotZ": -7.240749E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Prism Cherry", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0002e", "Name": "Card", "Transform": { "posX": 43.0458946, "posY": 3.57022333, "posZ": 29.74188, "rotX": 359.2328, "rotY": 270.007629, "rotZ": 358.8689, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9a98969d-f33f-430e-a406-cd4d88a09b90\",\"type\":\"Minicard\",\"id\":\"Z4201-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103100, "SidewaysCard": false, "CustomDeck": { "1031": { "FaceURL": "https://i.ibb.co/smfC9X3/e2c0f3d61f2d.png", "BackURL": "https://i.ibb.co/2YRxpXV/48b1f8423627.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7b8133", "Name": "Deck", "Transform": { "posX": 27.5824451, "posY": 3.59362054, "posZ": 10.5329819, "rotX": 0.543359339, "rotY": 269.999359, "rotZ": 359.869019, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 103200, 103400 ], "CustomDeck": { "1032": { "FaceURL": "https://i.ibb.co/gTGkcBV/cd6773252e37.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1034": { "FaceURL": "https://i.ibb.co/0G9d1K1/5c88f74acdc1.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "39a219", "Name": "Card", "Transform": { "posX": 39.95697, "posY": 1.49508989, "posZ": 22.6670933, "rotX": 0.000145188111, "rotY": 269.9965, "rotZ": -0.000936333439, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mediocrity", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"65347407-1d01-43fe-ba4f-d78ff608a95a\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103200, "SidewaysCard": false, "CustomDeck": { "1032": { "FaceURL": "https://i.ibb.co/gTGkcBV/cd6773252e37.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00031", "Name": "Card", "Transform": { "posX": 40.075676, "posY": 1.536743, "posZ": 22.780447, "rotX": 0.00261019566, "rotY": 270.000061, "rotZ": -0.002198073, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Prism Mirror", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4f98ecd6-fc31-4506-b730-90972c41cc9f\",\"type\":\"Asset\",\"uses\":[{\"count\":2,\"token\":\"resource\",\"type\":\"Charge\"}],\"class\":\"Neutral\",\"traits\":\"Item. Charm\",\"agilityIcons\":1,\"combatIcons\":1,\"intellectIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103400, "SidewaysCard": false, "CustomDeck": { "1034": { "FaceURL": "https://i.ibb.co/0G9d1K1/5c88f74acdc1.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00037", "Name": "Card", "Transform": { "posX": 31.3835, "posY": 1.49510372, "posZ": 29.6209, "rotX": 2.42188651E-08, "rotY": 270.008728, "rotZ": 1.18771531E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Ripple", "Description": "The Ninja", "GMNotes": "{\"TtsZoopGuid\":\"724e14dc-703c-4187-9d88-bdffe6c8e03f\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Drifter\",\"agilityIcons\":5,\"combatIcons\":4,\"intellectIcons\":1,\"willpowerIcons\":2,\"id\":\"Z8300\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586900, "SidewaysCard": false, "CustomDeck": { "5869": { "FaceURL": "https://i.ibb.co/LgBdcM3/2c3e5575e7c4.png", "BackURL": "https://i.ibb.co/vd5khXz/e91d6d395fce.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00040", "Name": "Bag", "Transform": { "posX": 24.6896, "posY": 1.2964654, "posZ": 2.837, "rotX": -7.54255552E-07, "rotY": 270.0019, "rotZ": -7.550175E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sally Raven", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "bbdbe5", "Name": "Card", "Transform": { "posX": 57.1741333, "posY": 3.5801096, "posZ": 29.1153545, "rotX": 359.5398, "rotY": 269.99826, "rotZ": 0.444702536, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c6316458-5c1d-4a21-b411-19833052517d\",\"type\":\"Minicard\",\"id\":\"Z8615-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104300, "SidewaysCard": false, "CustomDeck": { "1043": { "FaceURL": "https://i.ibb.co/qFVF0YX/fb240c2ab0bb.png", "BackURL": "https://i.ibb.co/MMJyQxZ/5d369078901b.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7ba4d6", "Name": "Deck", "Transform": { "posX": 24.578249, "posY": 3.6156652, "posZ": 2.974069, "rotX": 0.26260522, "rotY": 269.999084, "rotZ": 359.594971, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 104200, 103900, 103900, 103900, 103900, 587000 ], "CustomDeck": { "1042": { "FaceURL": "https://i.ibb.co/qspHSsX/8bc9801d8e0a.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1039": { "FaceURL": "https://i.ibb.co/Bf8WSch/7fcfd7432be6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "5870": { "FaceURL": "https://i.ibb.co/3ydBnk9/c8abee3ff161.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0003d", "Name": "Card", "Transform": { "posX": 61.95575, "posY": 1.49499631, "posZ": 23.14441, "rotX": 0.00107181864, "rotY": 269.982666, "rotZ": 359.992859, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Nevermore", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"2649f2e8-a747-48f3-8298-2a869eb32276\",\"type\":\"Treachery\",\"traits\":\"Omen\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104200, "SidewaysCard": false, "CustomDeck": { "1042": { "FaceURL": "https://i.ibb.co/qspHSsX/8bc9801d8e0a.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0a2ff0", "Name": "Card", "Transform": { "posX": 57.84697, "posY": 1.50163817, "posZ": 27.1273155, "rotX": 0.1625244, "rotY": 269.974854, "rotZ": 0.8661134, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Raven Familiar", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"49a524ec-4262-4152-8508-444fdc6beb5a\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Creature. Summon\",\"wildIcons\":2,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103900, "SidewaysCard": false, "CustomDeck": { "1039": { "FaceURL": "https://i.ibb.co/Bf8WSch/7fcfd7432be6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0003a", "Name": "Card", "Transform": { "posX": 57.4927635, "posY": 1.49001312, "posZ": 26.5177917, "rotX": 0.0521778353, "rotY": 270.003662, "rotZ": 359.659576, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Raven Familiar", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"49a524ec-4262-4152-8508-444fdc6beb5a\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Creature. Summon\",\"wildIcons\":2,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103900, "SidewaysCard": false, "CustomDeck": { "1039": { "FaceURL": "https://i.ibb.co/Bf8WSch/7fcfd7432be6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "44ff5c", "Name": "Card", "Transform": { "posX": 57.84805, "posY": 1.56902742, "posZ": 27.1296024, "rotX": -0.0009843891, "rotY": 270.000244, "rotZ": -0.00357330986, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Raven Familiar", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"49a524ec-4262-4152-8508-444fdc6beb5a\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Creature. Summon\",\"wildIcons\":2,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103900, "SidewaysCard": false, "CustomDeck": { "1039": { "FaceURL": "https://i.ibb.co/Bf8WSch/7fcfd7432be6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2687ce", "Name": "Card", "Transform": { "posX": 57.8478851, "posY": 1.61910427, "posZ": 27.0935326, "rotX": 0.0138618033, "rotY": 269.999329, "rotZ": 0.00413141539, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Raven Familiar", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"49a524ec-4262-4152-8508-444fdc6beb5a\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Creature. Summon\",\"wildIcons\":2,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103900, "SidewaysCard": false, "CustomDeck": { "1039": { "FaceURL": "https://i.ibb.co/Bf8WSch/7fcfd7432be6.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0003c", "Name": "Card", "Transform": { "posX": 23.7205067, "posY": 1.59960067, "posZ": -0.193425223, "rotX": 0.00037521898, "rotY": 270.0, "rotZ": -0.0006948994, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Unkindness", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b817f2a5-572c-4af9-9303-67bef2d5fb6c\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Ritual\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 587000, "SidewaysCard": false, "CustomDeck": { "5870": { "FaceURL": "https://i.ibb.co/3ydBnk9/c8abee3ff161.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00042", "Name": "Card", "Transform": { "posX": 27.9896, "posY": 1.49510372, "posZ": 29.617, "rotX": 2.76049E-08, "rotY": 269.999817, "rotZ": -1.20403072E-07, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Shadow Gale", "Description": "The Mechanic", "GMNotes": "{\"TtsZoopGuid\":\"b5d9499b-5a82-443d-b62c-cc2de7ba9dcb\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Assistant\",\"agilityIcons\":2,\"combatIcons\":4,\"intellectIcons\":3,\"willpowerIcons\":3,\"id\":\"Z1689\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586200, "SidewaysCard": false, "CustomDeck": { "5862": { "FaceURL": "https://i.ibb.co/TcCpZcW/4e87e217321d.png", "BackURL": "https://i.ibb.co/j5QtVDp/8552179c2389.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00046", "Name": "Bag", "Transform": { "posX": 27.9896, "posY": 1.29646611, "posZ": 25.787, "rotX": -1.68676263E-06, "rotY": 270.0018, "rotZ": 6.818157E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Shadow Gale", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "da4948", "Name": "Card", "Transform": { "posX": 35.104435, "posY": 3.56783223, "posZ": 39.4659042, "rotX": 359.453033, "rotY": 270.006134, "rotZ": 358.712158, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1a1d8156-def7-430c-8aaa-0969f2718b32\",\"type\":\"Minicard\",\"id\":\"Z1689-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104700, "SidewaysCard": false, "CustomDeck": { "1047": { "FaceURL": "https://i.ibb.co/TMdzBcX/820d8e0a542b.png", "BackURL": "https://i.ibb.co/N9V4MmT/34c322e802b7.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "34c29a", "Name": "Deck", "Transform": { "posX": 27.2293968, "posY": 3.588611, "posZ": 25.6291485, "rotX": 0.624963, "rotY": 270.001129, "rotZ": 0.207017958, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 586300, 104600 ], "CustomDeck": { "5863": { "FaceURL": "https://i.ibb.co/GHkRPHg/ce16ea317d30.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1046": { "FaceURL": "https://i.ibb.co/F8JmMhH/9fc8f305f163.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6354b0", "Name": "Card", "Transform": { "posX": 34.8119965, "posY": 1.49508631, "posZ": 36.1611824, "rotX": 0.000182300166, "rotY": 269.9922, "rotZ": -0.00117357657, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Critical Malfunction", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"569cc903-f748-4066-b3b6-17c50758e345\",\"type\":\"Treachery\",\"traits\":\"Hazard\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 586300, "SidewaysCard": false, "CustomDeck": { "5863": { "FaceURL": "https://i.ibb.co/GHkRPHg/ce16ea317d30.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00043", "Name": "Card", "Transform": { "posX": 35.2072144, "posY": 1.536747, "posZ": 35.95972, "rotX": 0.00137810933, "rotY": 269.999939, "rotZ": -0.002551353, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Toolkit", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"efc23833-b82b-432a-ada9-0dda6d1077c3\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Uses\",\"combatIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104600, "SidewaysCard": false, "CustomDeck": { "1046": { "FaceURL": "https://i.ibb.co/F8JmMhH/9fc8f305f163.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00048", "Name": "Card", "Transform": { "posX": 31.2896, "posY": 1.49510384, "posZ": 6.657, "rotX": -2.930338E-08, "rotY": 269.992737, "rotZ": -8.036577E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Tetty Goodgripp", "Description": "The Waitress", "GMNotes": "{\"TtsZoopGuid\":\"8408b62f-f3e2-450f-9e67-7480093680bb\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl\",\"agilityIcons\":3,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":3,\"id\":\"Z7893\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 588200, "SidewaysCard": false, "CustomDeck": { "5882": { "FaceURL": "https://i.ibb.co/fH7Y7GZ/512e133e2cbf.png", "BackURL": "https://i.ibb.co/VNHycZj/e5a0b4f2e068.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0004c", "Name": "Bag", "Transform": { "posX": 31.2896, "posY": 1.29646635, "posZ": 2.83700061, "rotX": 9.915954E-06, "rotY": 270.001831, "rotZ": -2.5644735E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tetty Goodgrip", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0004a", "Name": "Card", "Transform": { "posX": 42.912323, "posY": 3.573817, "posZ": 38.8546829, "rotX": 359.611542, "rotY": 269.994965, "rotZ": 1.47130382, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0345923d-4e7f-4d38-9105-c70e5aa03ef7\",\"type\":\"Minicard\",\"id\":\"Z7893-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105100, "SidewaysCard": false, "CustomDeck": { "1051": { "FaceURL": "https://i.ibb.co/g3KVznK/5959380c5308.png", "BackURL": "https://i.ibb.co/274hdtc/7696426bcdc3.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dc9216", "Name": "Deck", "Transform": { "posX": 31.02124, "posY": 3.59534764, "posZ": 2.90209961, "rotX": 0.4415076, "rotY": 269.999176, "rotZ": 359.788483, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 105000, 104800 ], "CustomDeck": { "1050": { "FaceURL": "https://i.ibb.co/xYJKjyq/ad3e9944f0f4.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1048": { "FaceURL": "https://i.ibb.co/hmSD2dt/9def806b2272.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00049", "Name": "Card", "Transform": { "posX": 39.27232, "posY": 1.49504852, "posZ": 36.1498032, "rotX": 0.0005695354, "rotY": 269.998779, "rotZ": -0.0036928684, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Model Student", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1b44e17d-26ca-404c-81d7-334b6e7e1161\",\"type\":\"Treachery\",\"traits\":\"Task\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105000, "SidewaysCard": false, "CustomDeck": { "1050": { "FaceURL": "https://i.ibb.co/xYJKjyq/ad3e9944f0f4.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b95f86", "Name": "Card", "Transform": { "posX": 39.7409668, "posY": 1.53658569, "posZ": 35.7156525, "rotX": 359.993866, "rotY": 270.0, "rotZ": 0.002782094, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sturdy Mittens", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"99de0da0-c8bc-4a88-9769-622f0dddfbef\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item\",\"combatIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104800, "SidewaysCard": false, "CustomDeck": { "1048": { "FaceURL": "https://i.ibb.co/hmSD2dt/9def806b2272.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00050", "Name": "Card", "Transform": { "posX": 24.6896, "posY": 1.49510384, "posZ": 29.617, "rotX": 1.14279459E-07, "rotY": 270.011719, "rotZ": 2.76474363E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Uluru", "Description": "The Liar", "GMNotes": "{\"TtsZoopGuid\":\"6583ddc2-a9cf-4cb4-8c95-7ab0be9b5806\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Servitor\",\"agilityIcons\":2,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":4,\"id\":\"Z9685\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105500, "SidewaysCard": false, "CustomDeck": { "1055": { "FaceURL": "https://i.ibb.co/kxhJDb9/f8042ebe5dc6.png", "BackURL": "https://i.ibb.co/9c7tD6g/655f7ce2f715.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00053", "Name": "Bag", "Transform": { "posX": 24.6896, "posY": 1.29646564, "posZ": 25.787, "rotX": -1.425099E-06, "rotY": 270.002838, "rotZ": 5.349039E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Uluru", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00051", "Name": "Card", "Transform": { "posX": 52.1442566, "posY": 3.54889131, "posZ": 39.7158546, "rotX": 359.722046, "rotY": 270.016052, "rotZ": 358.690582, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"369dc4a3-8509-4c21-a368-365dad0e9236\",\"type\":\"Minicard\",\"id\":\"Z9685-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105600, "SidewaysCard": false, "CustomDeck": { "1056": { "FaceURL": "https://i.ibb.co/y8PRm9k/35c99a65ba05.png", "BackURL": "https://i.ibb.co/W6mdXhw/83604cc52f31.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dcb98e", "Name": "Deck", "Transform": { "posX": 24.0289383, "posY": 3.59484935, "posZ": 25.7078686, "rotX": 0.630200148, "rotY": 270.00058, "rotZ": 0.107495964, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 105200, 105300, 105300 ], "CustomDeck": { "1052": { "FaceURL": "https://i.ibb.co/9rd0Hqc/26fe53ad82b1.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1053": { "FaceURL": "https://i.ibb.co/WH50Nnc/a18c921033a3.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0004d", "Name": "Card", "Transform": { "posX": 20.8666382, "posY": 1.49508727, "posZ": 22.0250816, "rotX": 0.000169018269, "rotY": 270.0, "rotZ": -0.00110417686, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crying Wolf", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3d6c63b1-8aeb-4d42-b673-94cac5ee0cf4\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105200, "SidewaysCard": false, "CustomDeck": { "1052": { "FaceURL": "https://i.ibb.co/9rd0Hqc/26fe53ad82b1.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7bf766", "Name": "Card", "Transform": { "posX": 20.9601727, "posY": 1.53674328, "posZ": 21.9247189, "rotX": 0.00280025578, "rotY": 270.0, "rotZ": -0.0034476018, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Liar's Bluff", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8daeb1de-5e14-4229-bd6c-8b824219c03a\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Practiced. Expert\",\"wildIcons\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105300, "SidewaysCard": false, "CustomDeck": { "1053": { "FaceURL": "https://i.ibb.co/WH50Nnc/a18c921033a3.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b9d66e", "Name": "Card", "Transform": { "posX": 21.0728874, "posY": 1.5707171, "posZ": 22.0189915, "rotX": -0.000714065856, "rotY": 270.0, "rotZ": -0.000153153815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Liar's Bluff", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8daeb1de-5e14-4229-bd6c-8b824219c03a\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Practiced. Expert\",\"wildIcons\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105300, "SidewaysCard": false, "CustomDeck": { "1053": { "FaceURL": "https://i.ibb.co/WH50Nnc/a18c921033a3.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00056", "Name": "Card", "Transform": { "posX": 31.2896, "posY": 1.49510384, "posZ": 14.307, "rotX": 1.431359E-07, "rotY": 270.021729, "rotZ": -6.318831E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Umbrain", "Description": "The Bodyguard", "GMNotes": "{\"TtsZoopGuid\":\"3f057939-111e-4e63-b4fa-8f7eb4662bd4\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Magical Girl. Warden\",\"agilityIcons\":4,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":2,\"id\":\"Z3461\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105900, "SidewaysCard": false, "CustomDeck": { "1059": { "FaceURL": "https://i.ibb.co/SR6LzYm/f8e96569a4fc.png", "BackURL": "https://i.ibb.co/qpxn6y3/7ce3dcd280bd.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00059", "Name": "Bag", "Transform": { "posX": 31.2896, "posY": 1.29646575, "posZ": 10.4869, "rotX": 8.276067E-06, "rotY": 270.002533, "rotZ": 1.081584E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Umbrain", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00057", "Name": "Card", "Transform": { "posX": 32.08363, "posY": 3.57027984, "posZ": 10.4227476, "rotX": 359.07254, "rotY": 269.997833, "rotZ": 0.165901586, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"74b4ed3c-767b-403c-9879-04a4072ef013\",\"type\":\"Minicard\",\"id\":\"Z3461-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 106000, "SidewaysCard": false, "CustomDeck": { "1060": { "FaceURL": "https://i.ibb.co/Bg2nG9M/2ad0bb5fc920.png", "BackURL": "https://i.ibb.co/B3SHht2/ce833abf5164.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f1719b", "Name": "Deck", "Transform": { "posX": 31.1970673, "posY": 3.59614563, "posZ": 10.2860622, "rotX": 0.22847423, "rotY": 270.000916, "rotZ": 0.479256839, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 105700, 105800 ], "CustomDeck": { "1057": { "FaceURL": "https://i.ibb.co/304hKdb/97d57c9e1d08.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1058": { "FaceURL": "https://i.ibb.co/jGhhSRk/5ca98c722816.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "115eb2", "Name": "Card", "Transform": { "posX": 58.1077843, "posY": 1.49508655, "posZ": 36.24565, "rotX": 0.0001839098, "rotY": 270.0, "rotZ": -0.00116206321, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Boredom", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d9194681-0f1c-4d45-9439-87d6b022fa04\",\"type\":\"Treachery\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105700, "SidewaysCard": false, "CustomDeck": { "1057": { "FaceURL": "https://i.ibb.co/304hKdb/97d57c9e1d08.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "069c5a", "Name": "Card", "Transform": { "posX": 58.5695877, "posY": 1.53672385, "posZ": 36.1620827, "rotX": 0.00128468312, "rotY": 270.0, "rotZ": -0.003230594, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sky Umbrella", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"24af8ea6-26bc-4d52-9a5b-9f268a374b1a\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Tool\",\"agilityIcons\":1,\"combatIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 105800, "SidewaysCard": false, "CustomDeck": { "1058": { "FaceURL": "https://i.ibb.co/jGhhSRk/5ca98c722816.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "fbb9b9", "Name": "Bag", "Transform": { "posX": 24.6896, "posY": 1.29646659, "posZ": 10.4869013, "rotX": -9.850905E-06, "rotY": 270.002869, "rotZ": 1.096851E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hardgore Alice", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "cb4bf1", "Name": "Card", "Transform": { "posX": 34.84282, "posY": 3.57945, "posZ": 20.7140236, "rotX": 359.539429, "rotY": 269.99823, "rotZ": 0.7074988, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"dd411857-6e2a-4817-9819-a78e2c899abd\",\"type\":\"Minicard\",\"id\":\"Z3538-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100800, "SidewaysCard": false, "CustomDeck": { "1008": { "FaceURL": "https://i.ibb.co/d0pw4mZ/3e59c291184c.png", "BackURL": "https://i.ibb.co/r50GYKS/d7480f2e58b4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "25def7", "Name": "Deck", "Transform": { "posX": 24.8955173, "posY": 3.59806633, "posZ": 10.8482189, "rotX": 359.89212, "rotY": 270.000732, "rotZ": 359.233551, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 101100, 101300, 101200 ], "CustomDeck": { "1011": { "FaceURL": "https://i.ibb.co/jyQ6NR7/2d06b1de6935.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1013": { "FaceURL": "https://i.ibb.co/HBS4twF/58e9e489cb50.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1012": { "FaceURL": "https://i.ibb.co/xqPwvS1/56d462528338.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00010", "Name": "Card", "Transform": { "posX": 21.0991344, "posY": 1.49509525, "posZ": 9.21540451, "rotX": 9.046666E-05, "rotY": 270.0, "rotZ": -0.000576686871, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Laid to Rest", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e8b5257f-ad51-497d-8b15-35b992b20229\",\"type\":\"Treachery\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101100, "SidewaysCard": false, "CustomDeck": { "1011": { "FaceURL": "https://i.ibb.co/jyQ6NR7/2d06b1de6935.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00012", "Name": "Card", "Transform": { "posX": 20.8857231, "posY": 1.536781, "posZ": 9.091001, "rotX": 0.000421841716, "rotY": 270.0, "rotZ": -0.00376741635, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Stuffed Rabbit", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e99131b8-a5dd-470a-b2a3-89083fcc6f11\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Charm\",\"combatIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101300, "SidewaysCard": false, "CustomDeck": { "1013": { "FaceURL": "https://i.ibb.co/HBS4twF/58e9e489cb50.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00011", "Name": "Card", "Transform": { "posX": 21.6219234, "posY": 1.57070673, "posZ": 9.087092, "rotX": -0.00119089137, "rotY": 270.0, "rotZ": 0.000118498705, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Resurrection", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"993d8d40-0ba7-42ee-aa3a-0829ae55a34d\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Deaths\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent. Cursed\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101200, "SidewaysCard": false, "CustomDeck": { "1012": { "FaceURL": "https://i.ibb.co/xqPwvS1/56d462528338.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] } ] }, { "GUID": "8e26e1", "Name": "Bag", "Transform": { "posX": 64.2861, "posY": 1.296465, "posZ": 2.4135, "rotX": -5.553123E-07, "rotY": 89.99517, "rotZ": 1.25578549E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rogue", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.1919989, "g": 0.701, "b": 0.16799888 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"28add2\":{\"lock\":false,\"pos\":{\"x\":44.738,\"y\":1.2965,\"z\":2.7856},\"rot\":{\"x\":0,\"y\":269.993,\"z\":0}},\"3995b9\":{\"lock\":false,\"pos\":{\"x\":38.138,\"y\":1.4951,\"z\":29.5657},\"rot\":{\"x\":0,\"y\":269.9865,\"z\":0}},\"3eeed3\":{\"lock\":false,\"pos\":{\"x\":38.138,\"y\":1.4951,\"z\":14.2656},\"rot\":{\"x\":0,\"y\":269.9872,\"z\":0}},\"46a7b7\":{\"lock\":false,\"pos\":{\"x\":34.838,\"y\":1.2965,\"z\":18.0956},\"rot\":{\"x\":0,\"y\":270.0021,\"z\":0}},\"50167d\":{\"lock\":false,\"pos\":{\"x\":38.138,\"y\":1.2965,\"z\":2.7856},\"rot\":{\"x\":0,\"y\":270.0018,\"z\":0}},\"6d4eb2\":{\"lock\":false,\"pos\":{\"x\":44.738,\"y\":1.2965,\"z\":10.4356},\"rot\":{\"x\":0,\"y\":270.008,\"z\":0}},\"7ae2e2\":{\"lock\":false,\"pos\":{\"x\":34.838,\"y\":1.2965,\"z\":25.7456},\"rot\":{\"x\":0,\"y\":270.0021,\"z\":0}},\"ac9def\":{\"lock\":false,\"pos\":{\"x\":34.838,\"y\":1.4951,\"z\":29.5656},\"rot\":{\"x\":0,\"y\":269.9706,\"z\":0}},\"be036d\":{\"lock\":false,\"pos\":{\"x\":44.738,\"y\":1.4951,\"z\":14.2656},\"rot\":{\"x\":0,\"y\":269.9971,\"z\":0}},\"c97e6f\":{\"lock\":false,\"pos\":{\"x\":34.838,\"y\":1.4951,\"z\":21.9156},\"rot\":{\"x\":0,\"y\":270.002,\"z\":0}},\"e00002\":{\"lock\":false,\"pos\":{\"x\":38.138,\"y\":1.4951,\"z\":6.6156},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"e00003\":{\"lock\":false,\"pos\":{\"x\":41.438,\"y\":1.4951,\"z\":6.6156},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"e00008\":{\"lock\":false,\"pos\":{\"x\":44.738,\"y\":1.4951,\"z\":6.6156},\"rot\":{\"x\":0,\"y\":269.9963,\"z\":0}},\"e0000b\":{\"lock\":false,\"pos\":{\"x\":41.438,\"y\":1.2965,\"z\":2.7856},\"rot\":{\"x\":0,\"y\":270.0014,\"z\":0}},\"e0000f\":{\"lock\":false,\"pos\":{\"x\":44.738,\"y\":1.4951,\"z\":29.5657},\"rot\":{\"x\":0,\"y\":269.9866,\"z\":0}},\"e00014\":{\"lock\":false,\"pos\":{\"x\":44.738,\"y\":1.2965,\"z\":25.7456},\"rot\":{\"x\":0,\"y\":270.0026,\"z\":0}},\"e00016\":{\"lock\":false,\"pos\":{\"x\":38.138,\"y\":1.4951,\"z\":21.9156},\"rot\":{\"x\":0,\"y\":269.9859,\"z\":0}},\"e0001c\":{\"lock\":false,\"pos\":{\"x\":44.738,\"y\":1.4951,\"z\":21.9156},\"rot\":{\"x\":0,\"y\":270.0152,\"z\":0}},\"e00020\":{\"lock\":false,\"pos\":{\"x\":44.738,\"y\":1.2965,\"z\":18.0956},\"rot\":{\"x\":0,\"y\":270.0018,\"z\":0}},\"e00028\":{\"lock\":false,\"pos\":{\"x\":41.438,\"y\":1.4951,\"z\":29.5657},\"rot\":{\"x\":0,\"y\":270.0028,\"z\":0}},\"e0002c\":{\"lock\":false,\"pos\":{\"x\":41.438,\"y\":1.2965,\"z\":25.7456},\"rot\":{\"x\":0,\"y\":270.0132,\"z\":0}},\"e0002d\":{\"lock\":false,\"pos\":{\"x\":41.438,\"y\":1.4951,\"z\":14.2656},\"rot\":{\"x\":0,\"y\":269.9849,\"z\":0}},\"e00032\":{\"lock\":false,\"pos\":{\"x\":41.438,\"y\":1.2965,\"z\":10.4356},\"rot\":{\"x\":0,\"y\":270.0021,\"z\":0}},\"e00038\":{\"lock\":false,\"pos\":{\"x\":38.138,\"y\":1.2965,\"z\":10.4356},\"rot\":{\"x\":0,\"y\":269.9826,\"z\":0}},\"e00039\":{\"lock\":false,\"pos\":{\"x\":41.438,\"y\":1.4951,\"z\":21.9156},\"rot\":{\"x\":0,\"y\":270.011,\"z\":0}},\"e0003e\":{\"lock\":false,\"pos\":{\"x\":41.4322,\"y\":1.2965,\"z\":18.1088},\"rot\":{\"x\":0,\"y\":270.0176,\"z\":0}},\"e00044\":{\"lock\":false,\"pos\":{\"x\":38.138,\"y\":1.2965,\"z\":25.7456},\"rot\":{\"x\":0,\"y\":270.0017,\"z\":0}},\"e1469c\":{\"lock\":false,\"pos\":{\"x\":38.138,\"y\":1.2965,\"z\":18.0956},\"rot\":{\"x\":0,\"y\":270.0029,\"z\":0}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "28add2", "Name": "Bag", "Transform": { "posX": 44.738, "posY": 1.29646587, "posZ": 2.7856, "rotX": -1.16323281E-06, "rotY": 269.9936, "rotZ": 2.06897744E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cherna Mouse", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4b0892", "Name": "Card", "Transform": { "posX": 30.442585, "posY": 3.56388617, "posZ": 20.3830223, "rotX": 358.78717, "rotY": 269.985657, "rotZ": 0.221613511, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a21233ff-d299-4021-9d55-72308d06f0ce\",\"type\":\"Minicard\",\"id\":\"Z1822-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100400, "SidewaysCard": false, "CustomDeck": { "1004": { "FaceURL": "https://i.ibb.co/R4Yd5z1/502c7557b3d7.png", "BackURL": "https://i.ibb.co/RvLS966/70abafe1fd36.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "918566", "Name": "Deck", "Transform": { "posX": 44.04458, "posY": 3.60068369, "posZ": 2.95523429, "rotX": 0.326624453, "rotY": 269.99884, "rotZ": 359.605377, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100600, 100700, 100800 ], "CustomDeck": { "1006": { "FaceURL": "https://i.ibb.co/89ZtR1d/e42f801a7e8b.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1007": { "FaceURL": "https://i.ibb.co/9HC3YxV/a3683ad8ae38.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1008": { "FaceURL": "https://i.ibb.co/7n04srt/1f025c4e3589.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00009", "Name": "Card", "Transform": { "posX": 26.7229633, "posY": 1.49506581, "posZ": 12.94113, "rotX": 0.000421703415, "rotY": 270.0, "rotZ": -0.0025799782, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gluttony", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5a48df0e-cd99-4df2-bf9c-00b6f6328c64\",\"type\":\"Treachery\",\"traits\":\"Flaw. Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100600, "SidewaysCard": false, "CustomDeck": { "1006": { "FaceURL": "https://i.ibb.co/89ZtR1d/e42f801a7e8b.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0000a", "Name": "Card", "Transform": { "posX": 26.7794437, "posY": 1.49508512, "posZ": 15.5564241, "rotX": 0.000188710866, "rotY": 270.006958, "rotZ": -0.00124338083, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Limitless Appetite", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b3cd2e27-c4bc-4317-b32f-036f5cb10353\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Talent\",\"agilityIcons\":1,\"combatIcons\":1,\"wildIcons\":1,\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100700, "SidewaysCard": false, "CustomDeck": { "1007": { "FaceURL": "https://i.ibb.co/9HC3YxV/a3683ad8ae38.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0000b", "Name": "Card", "Transform": { "posX": 26.8886127, "posY": 1.536752, "posZ": 15.3332424, "rotX": 0.00244518975, "rotY": 270.0082, "rotZ": -0.002602931, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sunflower Seeds", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"42276c9d-ee40-499c-ad31-e5caf73fca86\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Seeds\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Item\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100800, "SidewaysCard": false, "CustomDeck": { "1008": { "FaceURL": "https://i.ibb.co/7n04srt/1f025c4e3589.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "3995b9", "Name": "Card", "Transform": { "posX": 38.138, "posY": 1.4951036, "posZ": 29.5657, "rotX": -2.183981E-06, "rotY": 269.9865, "rotZ": -3.9729656E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Tot Pop", "Description": "The Rockstar", "GMNotes": "{\"TtsZoopGuid\":\"940d28dd-450d-4044-b973-0621fd469191\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Performer. Criminal\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":4,\"willpowerIcons\":2,\"id\":\"Z1070\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104400, "SidewaysCard": false, "CustomDeck": { "1044": { "FaceURL": "https://i.ibb.co/gdxPgr7/e88d57e23999.png", "BackURL": "https://i.ibb.co/0D9NzCD/e750af7e631e.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3eeed3", "Name": "Card", "Transform": { "posX": 38.138, "posY": 1.495104, "posZ": 14.2656, "rotX": -1.03706022E-07, "rotY": 269.987244, "rotZ": 2.44287524E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Ranyi", "Description": "The Ambitious", "GMNotes": "{\"TtsZoopGuid\":\"c646df46-37de-41d9-aad4-572bff8d8451\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Assistant\",\"agilityIcons\":4,\"combatIcons\":4,\"intellectIcons\":3,\"willpowerIcons\":2,\"id\":\"Z8868\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103600, "SidewaysCard": false, "CustomDeck": { "1036": { "FaceURL": "https://i.ibb.co/pQ9YcmG/d3289fcbd29c.png", "BackURL": "https://i.ibb.co/9s2mdwW/3b1b68543881.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "46a7b7", "Name": "Bag", "Transform": { "posX": 34.838, "posY": 1.29646611, "posZ": 18.0956, "rotX": -1.11934116E-06, "rotY": 270.0021, "rotZ": 1.13821643E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Stanczyka", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191999584, "g": 0.701, "b": 0.167999566 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00005", "Name": "Card", "Transform": { "posX": 13.0259256, "posY": 3.56839657, "posZ": 39.2780228, "rotX": 359.009064, "rotY": 269.996582, "rotZ": 0.3272559, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"558cad9b-0bd2-4fdc-8889-9aaf2d0fc244\",\"type\":\"Minicard\",\"id\":\"Z7398-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100400, "SidewaysCard": false, "CustomDeck": { "1004": { "FaceURL": "https://i.ibb.co/p0ryb93/db10e013fc2b.png", "BackURL": "https://i.ibb.co/BPPgLHX/87fda5262606.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7d3054", "Name": "Deck", "Transform": { "posX": 34.9824181, "posY": 3.59705758, "posZ": 18.2653046, "rotX": 0.239808723, "rotY": 269.999329, "rotZ": 359.6859, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100300, 100100 ], "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/Hp7n3Hm/057f108757ef.png", "BackURL": "https://i.ibb.co/wJMB8ww/aed8a7119fc3.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1001": { "FaceURL": "https://i.ibb.co/t8FF3sz/674899b5c772.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "653c37", "Name": "Card", "Transform": { "posX": 30.9718418, "posY": 1.49509358, "posZ": 9.668502, "rotX": 0.000106429863, "rotY": 270.0, "rotZ": -0.0006885057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Falling Flat", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"54c5be4c-0693-4e56-9f55-28b3ec7de958\",\"type\":\"Skill\",\"traits\":\"Blunder\",\"weakness\":true,\"wildIcons\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/Hp7n3Hm/057f108757ef.png", "BackURL": "https://i.ibb.co/wJMB8ww/aed8a7119fc3.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00002", "Name": "Card", "Transform": { "posX": 30.7082481, "posY": 1.53677738, "posZ": 9.516073, "rotX": 0.00064582203, "rotY": 270.0, "rotZ": -0.00375842163, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "FInale", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e90db298-bb6d-456b-bda1-88acd15be8b2\",\"type\":\"Skill\",\"class\":\"Neutral\",\"traits\":\"Expert. Fated\",\"wildIcons\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100100, "SidewaysCard": false, "CustomDeck": { "1001": { "FaceURL": "https://i.ibb.co/t8FF3sz/674899b5c772.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "50167d", "Name": "Bag", "Transform": { "posX": 38.138, "posY": 1.29646659, "posZ": 2.7856, "rotX": 7.091177E-08, "rotY": 270.001526, "rotZ": -1.27831174E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mephis Pheles", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191999584, "g": 0.701, "b": 0.167999566 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5fe864", "Name": "Card", "Transform": { "posX": 21.7245388, "posY": 3.60312939, "posZ": 43.20427, "rotX": 358.146851, "rotY": 270.028, "rotZ": 0.103152022, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"35987675-319a-4980-a0de-87fcb66d0dc4\",\"type\":\"Minicard\",\"id\":\"Z5521-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 268100, "SidewaysCard": false, "CustomDeck": { "2681": { "FaceURL": "https://i.ibb.co/sFmZS93/bafae00fbb86.png", "BackURL": "https://i.ibb.co/MM33WS3/c897e40ad576.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "101d13", "Name": "Deck", "Transform": { "posX": 21.9991283, "posY": 3.5938518, "posZ": 42.98773, "rotX": 0.34416613, "rotY": 270.003723, "rotZ": 0.5862668, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 267900, 268200 ], "CustomDeck": { "2679": { "FaceURL": "https://i.ibb.co/nbd5WYb/523ff9cff326.png", "BackURL": "https://i.ibb.co/MGkXSXR/8751c0f4b0fc.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "2682": { "FaceURL": "https://i.ibb.co/nsYyR05/12a5be0705d2.png", "BackURL": "https://i.ibb.co/MGkXSXR/8751c0f4b0fc.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4ce04f", "Name": "Card", "Transform": { "posX": 11.4562178, "posY": 1.49444377, "posZ": 46.0848579, "rotX": 0.00690993527, "rotY": 270.001038, "rotZ": 359.956, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abrasiveness", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"21120192-525f-4ce9-bc93-39e2479dcbfb\",\"type\":\"Asset\",\"traits\":\"Talent. Flaw\",\"weakness\":true,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267900, "SidewaysCard": false, "CustomDeck": { "2679": { "FaceURL": "https://i.ibb.co/nbd5WYb/523ff9cff326.png", "BackURL": "https://i.ibb.co/MGkXSXR/8751c0f4b0fc.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c9bd57", "Name": "Card", "Transform": { "posX": 11.1990519, "posY": 1.5384016, "posZ": 46.2154465, "rotX": 0.478725523, "rotY": 270.022369, "rotZ": 359.859344, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweet Nothings", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ff563edd-5e48-424f-9e4f-5783e5cb18ba\",\"type\":\"Asset\",\"uses\":[{\"count\":3,\"token\":\"resource\",\"type\":\"Whispers\"}],\"class\":\"Neutral\",\"traits\":\"Talent\",\"wildIcons\":3,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 268200, "SidewaysCard": false, "CustomDeck": { "2682": { "FaceURL": "https://i.ibb.co/nsYyR05/12a5be0705d2.png", "BackURL": "https://i.ibb.co/MGkXSXR/8751c0f4b0fc.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "6d4eb2", "Name": "Bag", "Transform": { "posX": 44.738, "posY": 1.29646528, "posZ": 10.4356, "rotX": -3.461814E-07, "rotY": 270.008118, "rotZ": 1.55346515E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Captain Grace", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 22.7612915, "posY": 3.5179553, "posZ": 39.395195, "rotX": 358.076477, "rotY": 270.067871, "rotZ": 354.306122, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"350d6c11-7f34-450e-af5f-42fded3eccb0\",\"type\":\"Minicard\",\"id\":\"Z2792-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100000, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/Ny2M7sc/85f191d8c6c5.png", "BackURL": "https://i.ibb.co/PrmykL6/ad67909bb579.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3819fa", "Name": "Deck", "Transform": { "posX": 48.72752, "posY": 3.59144545, "posZ": 11.0267439, "rotX": 0.3811464, "rotY": 269.9978, "rotZ": 359.329071, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 605000, 100300 ], "CustomDeck": { "6050": { "FaceURL": "https://i.ibb.co/yVKRyKy/415b8edf1765.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1003": { "FaceURL": "https://i.ibb.co/nD7fVqF/ffaf277c67a2.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00003", "Name": "Card", "Transform": { "posX": 22.8475266, "posY": 1.49509263, "posZ": 31.2311363, "rotX": 0.000118974771, "rotY": 269.999969, "rotZ": -0.000756964961, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Never Back Down", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e028e17e-abde-4590-86c1-803ab7551630\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605000, "SidewaysCard": false, "CustomDeck": { "1002": { "FaceURL": "https://i.ibb.co/yVKRyKy/415b8edf1765.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 22.9025764, "posY": 1.53674054, "posZ": 31.422287, "rotX": 0.002509886, "rotY": 269.999664, "rotZ": -0.00292737433, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pirate Ship Drop", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"54edd3fd-a15b-407c-9948-01741abe5788\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spirit. Summon\",\"combatIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/nD7fVqF/ffaf277c67a2.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "7ae2e2", "Name": "Bag", "Transform": { "posX": 34.838, "posY": 1.29646587, "posZ": 25.7456, "rotX": 1.01743944E-06, "rotY": 270.0019, "rotZ": -4.13706715E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pshuke Prains", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191999584, "g": 0.701, "b": 0.167999566 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9dc2d0", "Name": "Card", "Transform": { "posX": 15.4789352, "posY": 3.56801367, "posZ": 40.1158867, "rotX": 0.6275104, "rotY": 269.990479, "rotZ": 358.8067, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"96737ac7-a65d-4bc4-971b-f4ad1f81c2bd\",\"type\":\"Minicard\",\"id\":\"Z8261-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267800, "SidewaysCard": false, "CustomDeck": { "2678": { "FaceURL": "https://i.ibb.co/Tvd9GK0/8f8ecca2fc7d.png", "BackURL": "https://i.ibb.co/CQ0TZSB/e3e0332d379b.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a99287", "Name": "Deck", "Transform": { "posX": 15.8490524, "posY": 3.588962, "posZ": 40.323288, "rotX": 0.08730466, "rotY": 269.996582, "rotZ": 359.110077, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 267700, 267600 ], "CustomDeck": { "2677": { "FaceURL": "https://i.ibb.co/bb6K78d/f250c7dd550b.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2676": { "FaceURL": "https://i.ibb.co/CMgFNxC/54414a590f8d.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00003", "Name": "Card", "Transform": { "posX": 10.1362915, "posY": 1.50880957, "posZ": 55.0609779, "rotX": 0.082092315, "rotY": 269.998138, "rotZ": 359.396881, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spate of Curses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a41a7233-6c6d-4f75-8c9f-dbd7f983e891\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267700, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "https://i.ibb.co/bb6K78d/f250c7dd550b.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 9.827554, "posY": 1.55175376, "posZ": 55.097393, "rotX": 0.09939863, "rotY": 269.998627, "rotZ": 359.509766, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Watergun", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"113f5e0f-7f81-4137-9983-d8f3dcd5e077\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Firearm\",\"wildIcons\":2,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267600, "SidewaysCard": false, "CustomDeck": { "2676": { "FaceURL": "https://i.ibb.co/CMgFNxC/54414a590f8d.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "ac9def", "Name": "Card", "Transform": { "posX": 34.838, "posY": 1.49510384, "posZ": 29.5656, "rotX": 2.18774562E-06, "rotY": 269.970581, "rotZ": 8.854562E-09, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Pshuke Prains", "Description": "The Vagabond", "GMNotes": "{\"TtsZoopGuid\":\"570ad3ca-ba82-4aea-be0e-cb4eafb56d74\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Freelancer\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":3,\"id\":\"Z8261\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606200, "SidewaysCard": false, "CustomDeck": { "6062": { "FaceURL": "https://i.ibb.co/0Q6J4Kf/cab952d0ad72.png", "BackURL": "https://i.ibb.co/6DbbQ52/7ac3f63a15a1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be036d", "Name": "Card", "Transform": { "posX": 44.738, "posY": 1.49510372, "posZ": 14.2656, "rotX": -8.254193E-08, "rotY": 269.99707, "rotZ": -5.64959E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Captain Grace", "Description": "The Pirate", "GMNotes": "{\"TtsZoopGuid\":\"1412ee17-8997-429c-b935-3d0bd98a52e5\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":3,\"combatIcons\":5,\"intellectIcons\":2,\"willpowerIcons\":2,\"id\":\"Z2792\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604900, "SidewaysCard": false, "CustomDeck": { "6049": { "FaceURL": "https://i.ibb.co/ftzsGBt/378532ba8005.png", "BackURL": "https://i.ibb.co/tLnhTz3/83906a82b9f0.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c97e6f", "Name": "Card", "Transform": { "posX": 34.838, "posY": 1.49510407, "posZ": 21.9156, "rotX": 8.74005863E-08, "rotY": 270.002045, "rotZ": 1.934318E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Stanczyka", "Description": "The Fool", "GMNotes": "{\"TtsZoopGuid\":\"665cd244-5e56-493a-b41e-bba821d17bbf\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Performer\",\"agilityIcons\":5,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":1,\"id\":\"Z7398\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606500, "SidewaysCard": false, "CustomDeck": { "6065": { "FaceURL": "https://i.ibb.co/Qrt4HLQ/34713c403265.png", "BackURL": "https://i.ibb.co/b5tbMmK/798b228c607e.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00002", "Name": "Card", "Transform": { "posX": 38.138, "posY": 1.49510384, "posZ": 6.6156, "rotX": 3.83214847E-08, "rotY": 269.999939, "rotZ": 4.66004053E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Mephis Pheles", "Description": "The Temptress", "GMNotes": "{\"TtsZoopGuid\":\"d2adf973-cac3-460e-8db4-83201be6934e\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl\",\"agilityIcons\":2,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":4,\"id\":\"Z5521\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100100, "SidewaysCard": false, "CustomDeck": { "1001": { "FaceURL": "https://i.ibb.co/PMNpSR8/c1926a299b88.png", "BackURL": "https://i.ibb.co/kGwYfC3/17467c77eba1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00003", "Name": "Card", "Transform": { "posX": 41.438, "posY": 1.49510372, "posZ": 6.61560059, "rotX": -5.77726553E-07, "rotY": 269.999939, "rotZ": 1.34983964E-07, "scaleX": 0.7828432, "scaleY": 1.0, "scaleZ": 0.7828432 }, "Nickname": "Marika Fukuroi", "Description": "The Botanist", "GMNotes": "{\"TtsZoopGuid\":\"1638055c-e07e-4c9b-895f-0dbbf2e1f6dd\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Scholar. Civic\",\"agilityIcons\":3,\"combatIcons\":4,\"intellectIcons\":4,\"willpowerIcons\":1,\"id\":\"Z7050\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100200, "SidewaysCard": false, "CustomDeck": { "1002": { "FaceURL": "https://i.ibb.co/R9xrR32/83b8007dc0b7.png", "BackURL": "https://i.ibb.co/8P7bCM3/e5931c42645e.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00008", "Name": "Card", "Transform": { "posX": 44.738, "posY": 1.49510372, "posZ": 6.6156, "rotX": -7.197538E-08, "rotY": 269.996277, "rotZ": -7.811035E-09, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Cherna Mouse", "Description": "The Hamster", "GMNotes": "{\"TtsZoopGuid\":\"051111ba-54be-41a9-8699-544e12b700c6\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Creature\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":3,\"id\":\"Z1822\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100500, "SidewaysCard": false, "CustomDeck": { "1005": { "FaceURL": "https://i.ibb.co/nkMzyhR/232939d48dd6.png", "BackURL": "https://i.ibb.co/f9rwRDm/174c002a8a60.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0000b", "Name": "Bag", "Transform": { "posX": 41.438, "posY": 1.29646516, "posZ": 2.7856, "rotX": 1.83856514E-07, "rotY": 270.0014, "rotZ": 1.02355148E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Marika Fukuroi", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191999137, "g": 0.701, "b": 0.167999119 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "084891", "Name": "Card", "Transform": { "posX": 33.86337, "posY": 3.579998, "posZ": 2.17011523, "rotX": 359.9337, "rotY": 269.999542, "rotZ": 0.9165881, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"612e6dbb-5ec5-49bb-92d2-c797c98f09dc\",\"type\":\"Minicard\",\"id\":\"Z7050-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603800, "SidewaysCard": false, "CustomDeck": { "6038": { "FaceURL": "https://i.ibb.co/5WYqrFj/b953ee363d5c.png", "BackURL": "https://i.ibb.co/8myrk0X/9eaf1144d767.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "18119b", "Name": "Deck", "Transform": { "posX": 41.41234, "posY": 3.61791515, "posZ": 2.5536046, "rotX": 0.382289767, "rotY": 270.0016, "rotZ": 0.5378737, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 100800, 100700, 100600, 100000, 606600, 100400, 606700 ], "CustomDeck": { "1008": { "FaceURL": "https://i.ibb.co/kmwmC2R/688def2984b7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1007": { "FaceURL": "https://i.ibb.co/vLJtB95/fa4caf43fd16.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1006": { "FaceURL": "https://i.ibb.co/8n30sq9/933d85fb6cf0.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1000": { "FaceURL": "https://i.ibb.co/LzqW9dw/fb02d25e565a.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "6066": { "FaceURL": "https://i.ibb.co/GPPLmJq/3a231832d30a.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1004": { "FaceURL": "https://i.ibb.co/DCmkKbk/147d107e4567.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "6067": { "FaceURL": "https://i.ibb.co/D10L2RS/e0291e2ef8c6.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00009", "Name": "Card", "Transform": { "posX": 36.33088, "posY": 1.4950763, "posZ": -5.57565975, "rotX": 0.000285882037, "rotY": 269.999878, "rotZ": -0.001841679, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wilting", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"441bd12b-f0c1-4eea-9f13-24513f79744e\",\"type\":\"Treachery\",\"traits\":\"Hazard\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100800, "SidewaysCard": false, "CustomDeck": { "1008": { "FaceURL": "https://i.ibb.co/kmwmC2R/688def2984b7.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d18a6a", "Name": "Card", "Transform": { "posX": 36.4319038, "posY": 1.53670311, "posZ": -5.761727, "rotX": -0.00311406422, "rotY": 269.999878, "rotZ": -0.000336266123, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Strange Fruit", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9a11520d-581e-448d-a212-6c3597beeda5\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Flora\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100700, "SidewaysCard": false, "CustomDeck": { "1007": { "FaceURL": "https://i.ibb.co/vLJtB95/fa4caf43fd16.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00007", "Name": "Card", "Transform": { "posX": 36.5557, "posY": 1.57072091, "posZ": -5.532362, "rotX": 0.000495513668, "rotY": 270.001831, "rotZ": -0.000287160248, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Solar Haven", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1a116587-32b8-426b-8cca-8b4a0ea62307\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Flora\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100600, "SidewaysCard": false, "CustomDeck": { "1006": { "FaceURL": "https://i.ibb.co/8n30sq9/933d85fb6cf0.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 36.86293, "posY": 1.583069, "posZ": -5.58015442, "rotX": 359.9881, "rotY": 269.999573, "rotZ": 0.134078085, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Blazing Gerbera", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"2e8ed715-99d6-418b-9d4e-8e75668c6870\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Flora\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100000, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/LzqW9dw/fb02d25e565a.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00006", "Name": "Card", "Transform": { "posX": 36.2365952, "posY": 1.58997345, "posZ": -5.150713, "rotX": -0.0002355776, "rotY": 269.999359, "rotZ": -0.0008194621, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rose's Sigh", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"abb9b5e3-d200-4551-b858-65bc107db59f\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Flora\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606600, "SidewaysCard": false, "CustomDeck": { "6066": { "FaceURL": "https://i.ibb.co/GPPLmJq/3a231832d30a.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00005", "Name": "Card", "Transform": { "posX": 36.3664436, "posY": 1.59961426, "posZ": -5.556406, "rotX": -0.000126820145, "rotY": 269.999817, "rotZ": -0.0005589123, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rafflesia", "Description": "The Rotten Beast", "GMNotes": "{\"TtsZoopGuid\":\"9e6f303a-ce28-4ceb-9864-0aa6079fa0e0\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Flora\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100400, "SidewaysCard": false, "CustomDeck": { "1004": { "FaceURL": "https://i.ibb.co/DCmkKbk/147d107e4567.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "39b372", "Name": "Card", "Transform": { "posX": 36.1944542, "posY": 1.609229, "posZ": -5.55202055, "rotX": -0.000486271165, "rotY": 269.999939, "rotZ": -0.000267954922, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Blooming", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"fd075a8a-ceae-4546-9a8f-b192ac051aad\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606700, "SidewaysCard": false, "CustomDeck": { "6067": { "FaceURL": "https://i.ibb.co/D10L2RS/e0291e2ef8c6.png", "BackURL": "https://i.ibb.co/3SCDZFC/a7ae03ab2e56.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0000f", "Name": "Card", "Transform": { "posX": 44.738, "posY": 1.49510384, "posZ": 29.5657, "rotX": -6.19170351E-08, "rotY": 269.9866, "rotZ": 7.49963647E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Cranberry", "Description": "The Musician of the Forest", "GMNotes": "{\"TtsZoopGuid\":\"411c1624-68fc-492b-b197-d86930a4d929\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Criminal\",\"agilityIcons\":2,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":4,\"id\":\"Z0498\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266400, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "https://i.ibb.co/RPqb3zC/a80425835a9f.png", "BackURL": "https://i.ibb.co/t2PMtTQ/846c61fcef45.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00014", "Name": "Bag", "Transform": { "posX": 44.738, "posY": 1.29646564, "posZ": 25.7456, "rotX": 6.771173E-07, "rotY": 270.002472, "rotZ": -3.752401E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cranberry", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0000e", "Name": "Card", "Transform": { "posX": 44.89721, "posY": 3.56291533, "posZ": 26.3965988, "rotX": 359.5131, "rotY": 270.021851, "rotZ": 358.855255, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b7f64ab6-9489-4eae-bedd-099a66eb6752\",\"type\":\"Minicard\",\"id\":\"Z0498-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100900, "SidewaysCard": false, "CustomDeck": { "1009": { "FaceURL": "https://i.ibb.co/LtP41gg/ca587d3a2bf6.png", "BackURL": "https://i.ibb.co/KG2dgsz/2935b5d05ae8.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d0466d", "Name": "Deck", "Transform": { "posX": 44.6755638, "posY": 3.599396, "posZ": 25.91404, "rotX": 359.564026, "rotY": 270.0014, "rotZ": 359.632446, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 101100, 101200, 101300 ], "CustomDeck": { "1011": { "FaceURL": "https://i.ibb.co/wCvHxvm/7e2604f0d812.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1012": { "FaceURL": "https://i.ibb.co/3YxDpBh/bcc4322e3529.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 }, "1013": { "FaceURL": "https://i.ibb.co/yd2S4Bv/6e63ba822fd7.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00010", "Name": "Card", "Transform": { "posX": 29.8538342, "posY": 1.4950192, "posZ": 24.7960873, "rotX": 0.000835191342, "rotY": 269.999817, "rotZ": -0.005603856, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rampaging Demon", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a3064eba-de6f-4d5f-a753-ffae1de025e9\",\"type\":\"Enemy\",\"traits\":\"Monster. Abomination\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101100, "SidewaysCard": false, "CustomDeck": { "1011": { "FaceURL": "https://i.ibb.co/wCvHxvm/7e2604f0d812.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00011", "Name": "Card", "Transform": { "posX": 28.6607819, "posY": 1.495089, "posZ": 28.2261715, "rotX": 0.0001593711, "rotY": 270.0, "rotZ": -0.0009988738, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sonorous Sonata", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"2310ccd2-2748-4ecb-8ab4-dadfb520fc66\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Spell\",\"cost\":0}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101200, "SidewaysCard": false, "CustomDeck": { "1012": { "FaceURL": "https://i.ibb.co/3YxDpBh/bcc4322e3529.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00012", "Name": "Card", "Transform": { "posX": 28.5561466, "posY": 1.53673, "posZ": 28.3144264, "rotX": -0.0022702862, "rotY": 270.000366, "rotZ": -0.00202984875, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tempo", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d0713878-24c6-46ec-81da-f30122a810e9\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Resource\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101300, "SidewaysCard": false, "CustomDeck": { "1013": { "FaceURL": "https://i.ibb.co/yd2S4Bv/6e63ba822fd7.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00016", "Name": "Card", "Transform": { "posX": 38.138, "posY": 1.49510407, "posZ": 21.9156, "rotX": 5.46846834E-08, "rotY": 269.9859, "rotZ": 8.147787E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Dark Cutie", "Description": "The Villain Fanatic", "GMNotes": "{\"TtsZoopGuid\":\"fc436cef-68f1-4238-94fd-9a720ea44ae5\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Performer. Hunter\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":1,\"id\":\"Z9185\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101500, "SidewaysCard": false, "CustomDeck": { "1015": { "FaceURL": "https://i.ibb.co/Yd0HQNJ/89d32d9fd8c7.png", "BackURL": "https://i.ibb.co/2MnF42Y/36d631cb218a.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0001c", "Name": "Card", "Transform": { "posX": 44.738, "posY": 1.495104, "posZ": 21.9156, "rotX": 7.851695E-09, "rotY": 270.015228, "rotZ": 1.47247272E-06, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Filru", "Description": "The Ex-Prison Warden", "GMNotes": "{\"TtsZoopGuid\":\"1269e965-ba08-41f1-9508-7adc87eb07d5\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Freelancer. Warden\",\"agilityIcons\":5,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":1,\"id\":\"Z5631\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101900, "SidewaysCard": false, "CustomDeck": { "1019": { "FaceURL": "https://i.ibb.co/bLmVwkB/8ebc38e4e8bd.png", "BackURL": "https://i.ibb.co/LrQKqbN/378296647213.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00020", "Name": "Bag", "Transform": { "posX": 44.738, "posY": 1.29646444, "posZ": 18.0956, "rotX": -1.18703338E-06, "rotY": 270.0022, "rotZ": 1.48883692E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fliru", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0001b", "Name": "Card", "Transform": { "posX": 30.4034252, "posY": 3.57556057, "posZ": 8.372903, "rotX": 359.692932, "rotY": 269.9842, "rotZ": 1.42775607, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ac2ccde6-a0df-4603-acc7-066b5b37d069\",\"type\":\"Minicard\",\"id\":\"Z5631-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101800, "SidewaysCard": false, "CustomDeck": { "1018": { "FaceURL": "https://i.ibb.co/7Kzvn2X/a40fcb46655c.png", "BackURL": "https://i.ibb.co/yNFXddp/ba79afe46fbb.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be2218", "Name": "Deck", "Transform": { "posX": 44.0042152, "posY": 3.596194, "posZ": 18.1760464, "rotX": 0.3863846, "rotY": 269.999359, "rotZ": 359.817444, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 102000, 102100 ], "CustomDeck": { "1020": { "FaceURL": "https://i.ibb.co/QQdgfgH/1a3fcd47d513.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1021": { "FaceURL": "https://i.ibb.co/vh3DpcJ/1184fbc469a6.png", "BackURL": "https://i.ibb.co/RPwLBHR/d6a4a98c2c8d.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0001d", "Name": "Card", "Transform": { "posX": 48.68269, "posY": 1.49509323, "posZ": 17.6207123, "rotX": 0.000114575239, "rotY": 270.0, "rotZ": -0.000719199365, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Purposeless", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a1ae8bd1-e245-4514-babc-bf943390c1b3\",\"type\":\"Treachery\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102000, "SidewaysCard": false, "CustomDeck": { "1020": { "FaceURL": "https://i.ibb.co/QQdgfgH/1a3fcd47d513.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0001e", "Name": "Card", "Transform": { "posX": 48.9248962, "posY": 1.53674984, "posZ": 17.7911358, "rotX": 0.00187514583, "rotY": 270.0, "rotZ": -0.00221965462, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Warden's Thread", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"69ce05d6-ba54-4bd5-8fdc-fd7289c1df79\",\"type\":\"Asset\",\"uses\":[{\"count\":1,\"token\":\"resource\",\"type\":\"Supply\"}],\"class\":\"Neutral\",\"traits\":\"Item. Tool. Weapon\",\"agilityIcons\":2,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102100, "SidewaysCard": false, "CustomDeck": { "1021": { "FaceURL": "https://i.ibb.co/vh3DpcJ/1184fbc469a6.png", "BackURL": "https://i.ibb.co/RPwLBHR/d6a4a98c2c8d.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00028", "Name": "Card", "Transform": { "posX": 41.438, "posY": 1.49510372, "posZ": 29.5657, "rotX": -1.41980658E-08, "rotY": 270.0028, "rotZ": -6.501812E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Micchan the Dictionary", "Description": "The Scholar", "GMNotes": "{\"TtsZoopGuid\":\"140392d1-5ff9-4789-8087-ee9fe8b17303\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Scholar. Hunter\",\"agilityIcons\":2,\"combatIcons\":4,\"intellectIcons\":4,\"willpowerIcons\":2,\"id\":\"Z5069\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604800, "SidewaysCard": false, "CustomDeck": { "6048": { "FaceURL": "https://i.ibb.co/r0cR8J5/016d08864883.png", "BackURL": "https://i.ibb.co/vP6003R/5326f2ada193.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0002c", "Name": "Bag", "Transform": { "posX": 41.438, "posY": 1.29646587, "posZ": 25.7456, "rotX": -1.057216E-06, "rotY": 270.013031, "rotZ": -7.539459E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Micchan", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00027", "Name": "Card", "Transform": { "posX": 23.88652, "posY": 3.566611, "posZ": 20.552021, "rotX": 359.101379, "rotY": 269.9843, "rotZ": 0.476735473, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ba9ff942-484f-498d-bb57-7f63209f2401\",\"type\":\"Minicard\",\"id\":\"Z5069-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102600, "SidewaysCard": false, "CustomDeck": { "1026": { "FaceURL": "https://i.ibb.co/xztwLkY/2668732c45db.png", "BackURL": "https://i.ibb.co/jJMCJxf/e21d86d154c5.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "14ac2b", "Name": "Deck", "Transform": { "posX": 41.0328445, "posY": 3.59443235, "posZ": 26.07152, "rotX": 359.9668, "rotY": 270.000183, "rotZ": 359.278839, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 102900, 102800 ], "CustomDeck": { "1029": { "FaceURL": "https://i.ibb.co/sVNTtq4/7222d102963b.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1028": { "FaceURL": "https://i.ibb.co/hVgvJgX/41b6565a2e62.png", "BackURL": "https://i.ibb.co/1J9svbx/4ff85a71ccb4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0002a", "Name": "Card", "Transform": { "posX": 33.7117653, "posY": 1.49510312, "posZ": 24.6495724, "rotX": 2.7952E-05, "rotY": 270.0, "rotZ": -7.563584E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cat Got Your Tongue", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b49449af-cc3b-4a54-b3fe-1af684a3421c\",\"type\":\"Treachery\",\"traits\":\"Terror\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102900, "SidewaysCard": false, "CustomDeck": { "1029": { "FaceURL": "https://i.ibb.co/sVNTtq4/7222d102963b.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "42543a", "Name": "Card", "Transform": { "posX": 33.6773, "posY": 1.5366962, "posZ": 25.1289864, "rotX": -0.00133811892, "rotY": 270.0, "rotZ": 359.9935, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Thesaurus", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f29c8d76-2702-4085-bfb2-c9f4ed4419ea\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Tome\",\"wildIcons\":2,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 102800, "SidewaysCard": false, "CustomDeck": { "1028": { "FaceURL": "https://i.ibb.co/hVgvJgX/41b6565a2e62.png", "BackURL": "https://i.ibb.co/1J9svbx/4ff85a71ccb4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e0002d", "Name": "Card", "Transform": { "posX": 41.438, "posY": 1.49510372, "posZ": 14.2656, "rotX": -1.61070858E-07, "rotY": 269.984924, "rotZ": -2.57580144E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Rain Pou", "Description": "The Magical Girl Killer", "GMNotes": "{\"TtsZoopGuid\":\"e5084667-3efb-4365-9963-7bfc11007f27\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Student. Criminal. Hunter\",\"agilityIcons\":4,\"combatIcons\":4,\"intellectIcons\":2,\"willpowerIcons\":2,\"id\":\"Z9082\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 599000, "SidewaysCard": false, "CustomDeck": { "5990": { "FaceURL": "https://i.ibb.co/9VPxgYy/97d77ce21db5.png", "BackURL": "https://i.ibb.co/f4cM5p0/8c7df75e5ee9.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00032", "Name": "Bag", "Transform": { "posX": 41.438, "posY": 1.29646659, "posZ": 10.4356, "rotX": 1.83399952E-05, "rotY": 270.002045, "rotZ": -2.64318237E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rain Pou", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00030", "Name": "Card", "Transform": { "posX": 35.9055, "posY": 3.57696486, "posZ": 37.81, "rotX": 0.423876971, "rotY": 269.992554, "rotZ": 1.21816146, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"79b6f446-338f-4ae9-bf14-ce4ccdd36193\",\"type\":\"Minicard\",\"id\":\"Z9082-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103300, "SidewaysCard": false, "CustomDeck": { "1033": { "FaceURL": "https://i.ibb.co/RcN9WSC/07ba5b51734a.png", "BackURL": "https://i.ibb.co/kBGbKsV/0e856ff27546.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "93c1a8", "Name": "Deck", "Transform": { "posX": 40.6042023, "posY": 3.59236932, "posZ": 10.1294355, "rotX": 0.398667127, "rotY": 270.002075, "rotZ": 0.6053963, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 103100, 103200 ], "CustomDeck": { "1031": { "FaceURL": "https://i.ibb.co/JKw05sR/e451b617363a.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1032": { "FaceURL": "https://i.ibb.co/8dNkBrd/badc8f06779a.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0002e", "Name": "Card", "Transform": { "posX": 37.12379, "posY": 1.49509609, "posZ": 25.7484932, "rotX": 9.168963E-05, "rotY": 270.0, "rotZ": -0.00053328, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Silencer", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"899f1569-3d2b-4a4e-b722-f5c21b3d1fd3\",\"type\":\"Enemy\",\"traits\":\"Humanoid. Magical Girl. Criminal\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103100, "SidewaysCard": false, "CustomDeck": { "1031": { "FaceURL": "https://i.ibb.co/JKw05sR/e451b617363a.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a9c056", "Name": "Card", "Transform": { "posX": 37.092453, "posY": 1.5367372, "posZ": 25.9988728, "rotX": -0.00198531779, "rotY": 270.0, "rotZ": -0.00321207, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Toko", "Description": "Partner in Crime", "GMNotes": "{\"TtsZoopGuid\":\"0150347e-15b7-475b-9dd2-fae5f574315b\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Fairy. Criminal\",\"agilityIcons\":1,\"combatIcons\":1,\"wildIcons\":1,\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103200, "SidewaysCard": false, "CustomDeck": { "1032": { "FaceURL": "https://i.ibb.co/8dNkBrd/badc8f06779a.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00038", "Name": "Bag", "Transform": { "posX": 38.138, "posY": 1.296467, "posZ": 10.4355993, "rotX": -7.77357E-06, "rotY": 269.982117, "rotZ": -9.791514E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ranyi", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00036", "Name": "Card", "Transform": { "posX": 37.7335739, "posY": 3.58014059, "posZ": 10.3558064, "rotX": 359.886536, "rotY": 269.9992, "rotZ": 0.7959325, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6fc45a63-df34-42c3-92b6-7bed2d68dfe8\",\"type\":\"Minicard\",\"id\":\"Z8868-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103700, "SidewaysCard": false, "CustomDeck": { "1037": { "FaceURL": "https://i.ibb.co/hXjjKCD/1744604ae17f.png", "BackURL": "https://i.ibb.co/Dr7pLsN/1383d516724c.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ec3ccf", "Name": "Deck", "Transform": { "posX": 37.5213852, "posY": 3.59235668, "posZ": 10.0451479, "rotX": 0.188321277, "rotY": 270.001282, "rotZ": 0.7865144, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 103500, 103400 ], "CustomDeck": { "1035": { "FaceURL": "https://i.ibb.co/23ZCFMB/f5e6571d04a4.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1034": { "FaceURL": "https://i.ibb.co/d4fDYJb/5ad9d92d9ae6.png", "BackURL": "https://i.ibb.co/1J9svbx/4ff85a71ccb4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00034", "Name": "Card", "Transform": { "posX": 35.6701241, "posY": 1.49506629, "posZ": 13.2997408, "rotX": 0.000371961825, "rotY": 270.0, "rotZ": -0.002486812, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Blind Faith", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"acc01d4d-71e8-453c-8343-182fb94bac47\",\"type\":\"Treachery\",\"traits\":\"Flaw. Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103500, "SidewaysCard": false, "CustomDeck": { "1035": { "FaceURL": "https://i.ibb.co/23ZCFMB/f5e6571d04a4.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00033", "Name": "Card", "Transform": { "posX": 35.6468773, "posY": 1.53668165, "posZ": 13.0521231, "rotX": 0.00434419466, "rotY": 270.0, "rotZ": -0.000404419348, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gap Jumping", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"50988c37-a8df-4f79-9064-bc05a40255aa\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Spell\",\"agilityIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103400, "SidewaysCard": false, "CustomDeck": { "1034": { "FaceURL": "https://i.ibb.co/d4fDYJb/5ad9d92d9ae6.png", "BackURL": "https://i.ibb.co/1J9svbx/4ff85a71ccb4.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00039", "Name": "Card", "Transform": { "posX": 41.438, "posY": 1.49510384, "posZ": 21.9156, "rotX": -1.157356E-07, "rotY": 270.011017, "rotZ": -4.29309E-08, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Princess Tempest", "Description": "The Swift", "GMNotes": "{\"TtsZoopGuid\":\"2918c8b0-4541-4b32-b86e-6cfc5601372d\",\"type\":\"Investigator\",\"class\":\"Rogue\",\"traits\":\"Magical Girl. Student\",\"agilityIcons\":5,\"combatIcons\":2,\"intellectIcons\":3,\"willpowerIcons\":2,\"id\":\"Z9571\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103800, "SidewaysCard": false, "CustomDeck": { "1038": { "FaceURL": "https://i.ibb.co/25sJ5tH/433d21c566f9.png", "BackURL": "https://i.ibb.co/0yVT1wn/3deaeb3079d5.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0003e", "Name": "Bag", "Transform": { "posX": 41.4322, "posY": 1.29646587, "posZ": 18.108799, "rotX": 3.48886647E-06, "rotY": 270.017822, "rotZ": -4.697053E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Princess Tempest", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0003c", "Name": "Card", "Transform": { "posX": 44.36362, "posY": 3.57453465, "posZ": 21.2123947, "rotX": 358.992065, "rotY": 269.985229, "rotZ": 0.323705763, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d5457696-b973-4c8b-85f8-2cf3b8db8b6c\",\"type\":\"Minicard\",\"id\":\"Z9571-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104100, "SidewaysCard": false, "CustomDeck": { "1041": { "FaceURL": "https://i.ibb.co/2PhkhSh/4d6f99ee6aac.png", "BackURL": "https://i.ibb.co/MRjSC9j/4854c64bcf07.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "191e02", "Name": "Deck", "Transform": { "posX": 40.7354965, "posY": 3.593025, "posZ": 17.7637577, "rotX": 0.279883653, "rotY": 270.0017, "rotZ": 0.6950985, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 104000, 103900 ], "CustomDeck": { "1040": { "FaceURL": "https://i.ibb.co/R4V46vg/c468101b4740.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1039": { "FaceURL": "https://i.ibb.co/bLnz8qt/f884249352da.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "ce712c", "Name": "Card", "Transform": { "posX": 49.87026, "posY": 1.49508727, "posZ": 17.1522217, "rotX": 0.000169483188, "rotY": 270.000061, "rotZ": -0.00110663951, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Too Close to the Sun", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"94c6667c-1411-4d83-a123-ec8b2d9c641e\",\"type\":\"Treachery\",\"traits\":\"Blunder\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104000, "SidewaysCard": false, "CustomDeck": { "1040": { "FaceURL": "https://i.ibb.co/R4V46vg/c468101b4740.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0003a", "Name": "Card", "Transform": { "posX": 49.50568, "posY": 1.53663266, "posZ": 17.4015312, "rotX": 0.00652116863, "rotY": 269.999878, "rotZ": 359.9913, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Speed Demon", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1f27ddbf-2541-4304-89ec-97ac251ac256\",\"type\":\"Asset\",\"uses\":[{\"count\":3,\"token\":\"resource\",\"type\":\"Charge\"}],\"class\":\"Neutral\",\"traits\":\"Talent\",\"agilityIcons\":1,\"intellectIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 103900, "SidewaysCard": false, "CustomDeck": { "1039": { "FaceURL": "https://i.ibb.co/bLnz8qt/f884249352da.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e00044", "Name": "Bag", "Transform": { "posX": 38.138, "posY": 1.29646683, "posZ": 25.7456, "rotX": -8.272243E-07, "rotY": 270.001526, "rotZ": 5.354959E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tot Pop", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00042", "Name": "Card", "Transform": { "posX": 44.02847, "posY": 3.56625485, "posZ": 38.004158, "rotX": 359.386536, "rotY": 269.9826, "rotZ": 1.016453, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c863d6c1-2a12-4212-9bbd-510e12cfe7f1\",\"type\":\"Minicard\",\"id\":\"Z1070-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104500, "SidewaysCard": false, "CustomDeck": { "1045": { "FaceURL": "https://i.ibb.co/RzzFhrV/45b4b7d7711e.png", "BackURL": "https://i.ibb.co/cxSwdWT/e47e0b76a2cd.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3fb14d", "Name": "Deck", "Transform": { "posX": 37.5268364, "posY": 3.5901823, "posZ": 26.2736969, "rotX": 0.149731159, "rotY": 269.9989, "rotZ": 359.1395, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 104300, 104200 ], "CustomDeck": { "1043": { "FaceURL": "https://i.ibb.co/470yVYQ/6401b30d1a7f.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1042": { "FaceURL": "https://i.ibb.co/whpkGjq/6ecd6c8f4013.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00040", "Name": "Card", "Transform": { "posX": 33.06571, "posY": 1.49509168, "posZ": 24.7923145, "rotX": 0.0001328868, "rotY": 270.0, "rotZ": -0.000823384966, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Magical Kingdom Enforcers", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"536b4a55-2865-473c-ad92-22414476d01d\",\"type\":\"Enemy\",\"traits\":\"Humanoid. Magical Girl. Police\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104300, "SidewaysCard": false, "CustomDeck": { "1043": { "FaceURL": "https://i.ibb.co/470yVYQ/6401b30d1a7f.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0003f", "Name": "Card", "Transform": { "posX": 32.9262428, "posY": 1.5367347, "posZ": 24.9459572, "rotX": -0.0019385406, "rotY": 270.0, "rotZ": -0.00239348225, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Captivating Charm", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5589e8a5-e7cc-41bf-8bd3-7fd0d22c6183\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Talent\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 104200, "SidewaysCard": false, "CustomDeck": { "1042": { "FaceURL": "https://i.ibb.co/whpkGjq/6ecd6c8f4013.png", "BackURL": "https://i.ibb.co/prWT5q7/159272c06899.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "e1469c", "Name": "Bag", "Transform": { "posX": 38.138, "posY": 1.29646635, "posZ": 18.0956, "rotX": -1.08670258E-06, "rotY": 270.003052, "rotZ": -1.20741433E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dark Cutie", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.191998869, "g": 0.701, "b": 0.16799885 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00015", "Name": "Card", "Transform": { "posX": 39.3564224, "posY": 3.58067584, "posZ": 9.613505, "rotX": 0.339829, "rotY": 269.9818, "rotZ": 0.773422658, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9582e040-62ce-40ef-b8bd-8c0e629e6707\",\"type\":\"Minicard\",\"id\":\"Z9185-m\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101400, "SidewaysCard": false, "CustomDeck": { "1014": { "FaceURL": "https://i.ibb.co/58PcN78/50257ea566e5.png", "BackURL": "https://i.ibb.co/RvSmmkg/95309197700f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b59522", "Name": "Deck", "Transform": { "posX": 37.12477, "posY": 3.590459, "posZ": 17.7546234, "rotX": 0.470893532, "rotY": 270.002258, "rotZ": 0.5511211, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 101600, 101700 ], "CustomDeck": { "1016": { "FaceURL": "https://i.ibb.co/0X01ZCb/9fbdf244fdd3.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1017": { "FaceURL": "https://i.ibb.co/68FVntc/7679b071babd.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00017", "Name": "Card", "Transform": { "posX": 33.911396, "posY": 1.4950788, "posZ": 17.4793148, "rotX": 0.0002493063, "rotY": 270.0, "rotZ": -0.00165854115, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Adulation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9cfdc4f7-6538-4ecb-8861-f643d3d2c88b\",\"type\":\"Treachery\",\"traits\":\"Madness\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101600, "SidewaysCard": false, "CustomDeck": { "1016": { "FaceURL": "https://i.ibb.co/0X01ZCb/9fbdf244fdd3.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00018", "Name": "Card", "Transform": { "posX": 33.9672279, "posY": 1.53674054, "posZ": 17.1331253, "rotX": 0.00256485352, "rotY": 270.0, "rotZ": -0.00193938089, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Shadow Puppets", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"67658b59-a451-42e9-b6c3-a021c728d2ea\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Summon\",\"cost\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 101700, "SidewaysCard": false, "CustomDeck": { "1017": { "FaceURL": "https://i.ibb.co/68FVntc/7679b071babd.png", "BackURL": "https://i.ibb.co/gSvfXPD/434402c7818f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] } ] }, { "GUID": "a95226", "Name": "Bag", "Transform": { "posX": 64.3007, "posY": 1.29646456, "posZ": -9.0582, "rotX": 2.01699848E-07, "rotY": 89.98398, "rotZ": 5.03455738E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Neutral", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"8e8088\":{\"lock\":false,\"pos\":{\"x\":31.7524,\"y\":1.4951,\"z\":-3.4103},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"ca9306\":{\"lock\":false,\"pos\":{\"x\":31.7524,\"y\":1.4951,\"z\":-11.0703},\"rot\":{\"x\":0,\"y\":270,\"z\":0}},\"e8b473\":{\"lock\":false,\"pos\":{\"x\":31.7524,\"y\":1.2965,\"z\":-7.2403},\"rot\":{\"x\":0,\"y\":270.0045,\"z\":0}},\"fef226\":{\"lock\":false,\"pos\":{\"x\":31.7524,\"y\":1.2965,\"z\":-14.8903},\"rot\":{\"x\":0,\"y\":269.9984,\"z\":0}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "8e8088", "Name": "Card", "Transform": { "posX": 31.7524, "posY": 1.49510384, "posZ": -3.4103, "rotX": 1.04490763E-08, "rotY": 269.999939, "rotZ": 1.32897739E-07, "scaleX": 0.805986166, "scaleY": 1.0, "scaleZ": 0.805986166 }, "Nickname": "Kana", "Description": "The Amnesiac", "GMNotes": "{\"TtsZoopGuid\":\"2617e70a-01ed-4604-9298-3c39fa33cad0\",\"type\":\"Investigator\",\"class\":\"Neutral\",\"traits\":\"Magical Girl. Criminal\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":3,\"id\":\"Z8010\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 602500, "SidewaysCard": false, "CustomDeck": { "6025": { "FaceURL": "https://i.ibb.co/QP66qkR/1cf9a1496abe.png", "BackURL": "https://i.ibb.co/7bwmqwV/26bab32df718.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ca9306", "Name": "Card", "Transform": { "posX": 31.7524, "posY": 1.49510384, "posZ": -11.0703, "rotX": -2.22970527E-07, "rotY": 269.999969, "rotZ": -3.01540766E-08, "scaleX": 0.805986166, "scaleY": 1.0, "scaleZ": 0.805986166 }, "Nickname": "Rareko", "Description": "The Restorer", "GMNotes": "{\"TtsZoopGuid\":\"166a49b9-04e6-4e38-bb46-a04b7b42f173\",\"type\":\"Investigator\",\"class\":\"Neutral\",\"traits\":\"Magical Girl. Assistant\",\"agilityIcons\":3,\"combatIcons\":3,\"intellectIcons\":3,\"willpowerIcons\":3,\"id\":\"Z1720\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606100, "SidewaysCard": false, "CustomDeck": { "6061": { "FaceURL": "https://i.ibb.co/CwdGyKC/0d0e20344bd4.png", "BackURL": "https://i.ibb.co/jhFwnck/920043f05ab1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e8b473", "Name": "Bag", "Transform": { "posX": 31.7524, "posY": 1.29646456, "posZ": -7.2403, "rotX": 1.17179608E-08, "rotY": 270.004517, "rotZ": -1.17170362E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kana", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 30.62797, "posY": 3.566451, "posZ": 10.9893351, "rotX": 359.717743, "rotY": 269.9942, "rotZ": 1.73745632, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"dc3de317-adbb-44d1-8d75-ce2cf350479c\",\"type\":\"Minicard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 602600, "SidewaysCard": false, "CustomDeck": { "6026": { "FaceURL": "https://i.ibb.co/mDf5bHs/75639865be25.png", "BackURL": "https://i.ibb.co/XyxsL4t/e7306a61727f.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "948c8b", "Name": "Deck", "Transform": { "posX": 31.6085, "posY": 3.59512877, "posZ": -7.6657, "rotX": 0.238058031, "rotY": 270.001221, "rotZ": 0.5826798, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 602400, 100300 ], "CustomDeck": { "6024": { "FaceURL": "https://i.ibb.co/yp7kD5k/f8044bd6b6ea.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1003": { "FaceURL": "https://i.ibb.co/4Y0v9tb/0baaec51b884.png", "BackURL": "https://i.ibb.co/cQrNxBR/d156e11fda24.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4862ef", "Name": "Card", "Transform": { "posX": 32.64298, "posY": 1.49503624, "posZ": -10.6726, "rotX": 0.0007125325, "rotY": 270.0, "rotZ": -0.00453952933, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Social Awkwardness", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"082a3315-4aa5-41e0-bdb2-d5ec92f8a601\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 602400, "SidewaysCard": false, "CustomDeck": { "6024": { "FaceURL": "https://i.ibb.co/yp7kD5k/f8044bd6b6ea.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00004", "Name": "Card", "Transform": { "posX": 32.7422676, "posY": 1.530908, "posZ": -10.7863884, "rotX": 359.990631, "rotY": 270.0, "rotZ": -0.00237596524, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Recollection", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e64b9f32-6056-4f04-97ef-4698c587927a\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100300, "SidewaysCard": false, "CustomDeck": { "1003": { "FaceURL": "https://i.ibb.co/4Y0v9tb/0baaec51b884.png", "BackURL": "https://i.ibb.co/cQrNxBR/d156e11fda24.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "fef226", "Name": "Bag", "Transform": { "posX": 31.7524, "posY": 1.29646468, "posZ": -14.8903, "rotX": -2.716379E-06, "rotY": 269.9974, "rotZ": -5.73561829E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rareko", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e00003", "Name": "Card", "Transform": { "posX": 30.2175217, "posY": 3.57915378, "posZ": -15.04628, "rotX": 0.690833, "rotY": 270.003052, "rotZ": 359.9756, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"943f705f-eca8-40a2-9c2d-3787540e5059\",\"type\":\"Minicard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 100200, "SidewaysCard": false, "CustomDeck": { "1002": { "FaceURL": "https://i.ibb.co/XF87YPG/d742a8ac5b4b.png", "BackURL": "https://i.ibb.co/gw47WQN/bbc7d6df236a.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "912142", "Name": "Deck", "Transform": { "posX": 31.44506, "posY": 3.58712745, "posZ": -14.9653444, "rotX": 359.377258, "rotY": 270.000549, "rotZ": 359.900635, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 603600, 605400 ], "CustomDeck": { "6036": { "FaceURL": "https://i.ibb.co/P6f2PM8/a884cf37dc84.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "6054": { "FaceURL": "https://i.ibb.co/KzCykJd/4ce17d158d95.png", "BackURL": "https://i.ibb.co/c2mSHsc/a1bf21748df1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "c5f665", "Name": "Card", "Transform": { "posX": 26.2278976, "posY": 1.49510515, "posZ": -15.5307407, "rotX": 2.25158124E-06, "rotY": 270.0, "rotZ": 6.89138251E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Self Preservation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a6095ddc-43f2-4400-a338-865b14f04bd5\",\"type\":\"Treachery\",\"traits\":\"Flaw\",\"weakness\":true}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603600, "SidewaysCard": false, "CustomDeck": { "6036": { "FaceURL": "https://i.ibb.co/P6f2PM8/a884cf37dc84.png", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e00001", "Name": "Card", "Transform": { "posX": 26.30717, "posY": 1.53677356, "posZ": -15.288394, "rotX": -0.00161727518, "rotY": 270.0, "rotZ": -0.005107071, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Reconstruct", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"46d46bca-0f58-45f5-8de0-bbec240c6337\",\"type\":\"Event\",\"class\":\"Neutral\",\"traits\":\"Ritual\",\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605400, "SidewaysCard": false, "CustomDeck": { "1000": { "FaceURL": "https://i.ibb.co/KzCykJd/4ce17d158d95.png", "BackURL": "https://i.ibb.co/c2mSHsc/a1bf21748df1.png", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] } ] } ], "AttachedDecals": [ { "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 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }