SCED/content/curated/en/investigators_idol_thoughts.json

1491 lines
60 KiB
JSON
Raw Normal View History

2023-06-26 10:13:37 +02:00
{
"GUID": "991ff9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 0.269884884,
"posY": 1.4896071,
"posZ": 28.776968,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168762729,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Idol Thoughts Custom Investigators",
"Description": "",
"GMNotes": "",
"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/1011563111884720834/103D38A8FBBFA64EB66439667F8775B15FC679C9/",
"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": 0
},
"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
"LuaScriptState": "{\"ml\":{\"057e04\":{\"lock\":false,\"pos\":{\"x\":-16.6395988464355,\"y\":1.31085813045502,\"z\":-76.9456481933594},\"rot\":{\"x\":0.0208098888397217,\"y\":269.999450683594,\"z\":0.0167720001190901}},\"06fcb2\":{\"lock\":false,\"pos\":{\"x\":-22.6157550811768,\"y\":1.3256413936615,\"z\":-76.9460372924805},\"rot\":{\"x\":0.020808782428503,\"y\":270.000274658203,\"z\":0.0167717132717371}},\"08ab92\":{\"lock\":false,\"pos\":{\"x\":-19.2936096191406,\"y\":1.30989539623261,\"z\":-76.9415512084961},\"rot\":{\"x\":0.0208085216581821,\"y\":270.000030517578,\"z\":0.0167711414396763}},\"212311\":{\"lock\":false,\"pos\":{\"x\":-22.6156845092773,\"y\":1.32794523239136,\"z\":-69.0756072998047},\"rot\":{\"x\":0.0208083000034094,\"y\":269.999816894531,\"z\":0.0167704597115517}},\"3c216d\":{\"lock\":false,\"pos\":{\"x\":-16.6402435302734,\"y\":1.30855345726013,\"z\":-84.8182067871094},\"rot\":{\"x\":0.0208111256361008,\"y\":269.999206542969,\"z\":0.0167727693915367}},\"55809d\":{\"lock\":false,\"pos\":{\"x\":-19.3000640869141,\"y\":1.31449115276337,\"z\":-61.2332420349121},\"rot\":{\"x\":0.0208084266632795,\"y\":269.999938964844,\"z\":0.0167710799723864}},\"600e41\":{\"lock\":false,\"pos\":{\"x\":-22.6139163970947,\"y\":1.33252322673798,\"z\":-53.4381370544434},\"rot\":{\"x\":0.0208081752061844,\"y\":270.001251220703,\"z\":0.0167707018554211}},\"6011c1\":{\"lock\":false,\"pos\":{\"x\":-22.61696434021,\"y\":1.33023798465729,\"z\":-61.2413864135742},\"rot\":{\"x\":0.0208087377250195,\"y\":269.999908447266,\"z\":0.016770888119936}},\"6e7ea8\":{\"lock\":false,\"pos\":{\"x\":-19.295877456665,\"y\":1.31220149993896,\"z\":-69.0607070922852},\"rot\":{\"x\":0.0208094604313374,\"y\":270,\"z\":0.0167710334062576}},\"b1256b\":{\"lock\":false,\"pos\":{\"x\":-16.6400871276855,\"y\":1.31545794010162,\"z\":-61.2309913635254},\"rot\":{\"x\":0.0208090264350176,\"y\":269.998779296875,\"z\":0.0167700741440058}},\"c72bdd\":{\"lock\":false,\"pos\":{\"x\":-16.6400699615479,\"y\":1.31775283813477,\"z\":-53.3904228210449},\"rot\":{\"x\":0.0208091754466295,\"y\":269.999816894531,\"z\":0.0167703349143267}},\"d2913a\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.31316590309143,\"z\":-69.0603103637695},\"rot\":{\"x\":0.020810903981328,\"y\":270,\"z\":0.0167728774249554}},\"ecaa8c\":{\"lock\":false,\"pos\":{\"x\":-19.2997856140137,\"y\":1.30758762359619,\"z\":-84.8181838989258},\"rot\":{\"x\":0.0208093598484993,\"y\":270,\"z\":0.0167709905654192}},\"f89508\":{\"lock\":false,\"pos\":{\"x\":-19.3000202178955,\"y\":1.31677353382111,\"z\":-53.4358367919922},\"rot\":{\"x\":0.0208089053630829,\"y\":270.000122070313,\"z\":0.0167711284011602}},\"f9d436\":{\"lock\":false,\"pos\":{\"x\":-22.6169204711914,\"y\":1.32333660125732,\"z\":-84.8185119628906},\"rot\":{\"x\":0.0208087246865034,\"y\":270.000030517578,\"z\":0.0167713966220617}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "057e04",
"Name": "Card",
"Transform": {
"posX": -16.6395988,
"posY": 1.31085813,
"posZ": -76.94565,
"rotX": 0.0208088979,
"rotY": 269.999451,
"rotZ": 0.0167708658,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Ivan Orlov",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 262204,
"SidewaysCard": false,
"CustomDeck": {
"2622": {
"FaceURL": "https://i.imgur.com/GVltRuj.jpg",
"BackURL": "https://i.imgur.com/Kvbx58J.jpg",
"NumWidth": 6,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "06fcb2",
"Name": "Deck",
"Transform": {
"posX": -22.6157551,
"posY": 1.32564139,
"posZ": -76.94604,
"rotX": 0.0208086539,
"rotY": 270.000275,
"rotZ": 0.01677116,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
264600,
264601
],
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2049d9",
"Name": "Card",
"Transform": {
"posX": -22.61575,
"posY": 1.30868757,
"posZ": -76.94603,
"rotX": 0.02080798,
"rotY": 270.0003,
"rotZ": 0.0167708769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Life Everlasting",
"Description": "Weakness",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264600,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "21141d",
"Name": "Card",
"Transform": {
"posX": -22.6157627,
"posY": 1.35055768,
"posZ": -76.9460449,
"rotX": 0.133028433,
"rotY": 270.000854,
"rotZ": 0.0167637151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Palach\"",
"Description": "Ancestral Blade",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264601,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "08ab92",
"Name": "Card",
"Transform": {
"posX": -19.29361,
"posY": 1.3098954,
"posZ": -76.94155,
"rotX": 0.02080858,
"rotY": 270.000031,
"rotZ": 0.0167712048,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ivan Orlov",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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,
"CardID": 260804,
"SidewaysCard": false,
"CustomDeck": {
"2608": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "212311",
"Name": "Deck",
"Transform": {
"posX": -22.61568,
"posY": 1.33275926,
"posZ": -69.07561,
"rotX": 0.0208095852,
"rotY": 269.9998,
"rotZ": 0.0167719442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
264604,
264605,
264605
],
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "427afe",
"Name": "Card",
"Transform": {
"posX": -22.6156864,
"posY": 1.31099141,
"posZ": -69.07561,
"rotX": 0.02080817,
"rotY": 269.999878,
"rotZ": 0.0167703871,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Web of Lies",
"Description": "Weakness",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264604,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ba462",
"Name": "Card",
"Transform": {
"posX": -22.61569,
"posY": 1.35849726,
"posZ": -69.0756149,
"rotX": 0.0208082143,
"rotY": 270.000122,
"rotZ": 0.01677043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Flames",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264605,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95ebdb",
"Name": "Card",
"Transform": {
"posX": -22.6156864,
"posY": 1.3925724,
"posZ": -69.07561,
"rotX": 0.02080876,
"rotY": 269.999756,
"rotZ": 0.0167709235,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Flames",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264605,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3c216d",
"Name": "Card",
"Transform": {
"posX": -16.6402435,
"posY": 1.30855346,
"posZ": -84.81821,
"rotX": 0.0208089445,
"rotY": 269.9992,
"rotZ": 0.0167704858,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "David Emerson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 547403,
"SidewaysCard": false,
"CustomDeck": {
"5474": {
"FaceURL": "https://i.imgur.com/GVltRuj.jpg",
"BackURL": "https://i.imgur.com/Kvbx58J.jpg",
"NumWidth": 6,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "55809d",
"Name": "Card",
"Transform": {
"posX": -19.3000641,
"posY": 1.31449115,
"posZ": -61.233242,
"rotX": 0.0208084881,
"rotY": 269.999939,
"rotZ": 0.0167712178,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ainsley Wentworth, Esq.",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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,
"CardID": 260800,
"SidewaysCard": false,
"CustomDeck": {
"2608": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "600e41",
"Name": "Deck",
"Transform": {
"posX": -22.6139164,
"posY": 1.33252323,
"posZ": -53.4381371,
"rotX": 0.02080837,
"rotY": 270.001251,
"rotZ": 0.0167712327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
264602,
264603
],
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0d35ef",
"Name": "Card",
"Transform": {
"posX": -22.6139183,
"posY": 1.3155694,
"posZ": -53.43814,
"rotX": 0.02080852,
"rotY": 270.001282,
"rotZ": 0.01677116,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grim Reminder",
"Description": "Weakness",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264602,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "920ed7",
"Name": "Card",
"Transform": {
"posX": -22.6138725,
"posY": 1.35046744,
"posZ": -53.43811,
"rotX": 0.020808626,
"rotY": 270.001343,
"rotZ": 0.0167830717,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vision of Mercy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264603,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6011c1",
"Name": "Deck",
"Transform": {
"posX": -22.6169643,
"posY": 1.330238,
"posZ": -61.2413864,
"rotX": 0.02080884,
"rotY": 269.999939,
"rotZ": 0.0167709049,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
264608,
264609
],
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "cdbb7f",
"Name": "Card",
"Transform": {
"posX": -22.6169662,
"posY": 1.31328416,
"posZ": -61.24139,
"rotX": 0.0208085347,
"rotY": 269.999939,
"rotZ": 0.0167711452,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Boys in Blue",
"Description": "Weakness",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264608,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d57d70",
"Name": "Card",
"Transform": {
"posX": -22.6169643,
"posY": 1.35215414,
"posZ": -61.24139,
"rotX": 0.020808626,
"rotY": 270.000031,
"rotZ": 0.0167712644,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sal Moretti",
"Description": "Family Tie",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264609,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6e7ea8",
"Name": "Card",
"Transform": {
"posX": -19.2958775,
"posY": 1.3122015,
"posZ": -69.06071,
"rotX": 0.02080861,
"rotY": 270.0,
"rotZ": 0.01677104,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alma Winters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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,
"CardID": 260801,
"SidewaysCard": false,
"CustomDeck": {
"2608": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b1256b",
"Name": "Card",
"Transform": {
"posX": -16.6400871,
"posY": 1.31545782,
"posZ": -61.23099,
"rotX": 0.0208089352,
"rotY": 269.998779,
"rotZ": 0.0167704374,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Ainsley Wentworth, Esq.",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 262600,
"SidewaysCard": false,
"CustomDeck": {
"2626": {
"FaceURL": "https://i.imgur.com/GVltRuj.jpg",
"BackURL": "https://i.imgur.com/Kvbx58J.jpg",
"NumWidth": 6,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c72bdd",
"Name": "Card",
"Transform": {
"posX": -16.64007,
"posY": 1.31775284,
"posZ": -53.3904228,
"rotX": 0.0208087713,
"rotY": 269.999817,
"rotZ": 0.0167710781,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Edith Alexander",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 262402,
"SidewaysCard": false,
"CustomDeck": {
"2624": {
"FaceURL": "https://i.imgur.com/GVltRuj.jpg",
"BackURL": "https://i.imgur.com/Kvbx58J.jpg",
"NumWidth": 6,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2913a",
"Name": "Card",
"Transform": {
"posX": -16.6403,
"posY": 1.313166,
"posZ": -69.06031,
"rotX": 0.02080902,
"rotY": 270.0,
"rotZ": 0.01677086,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Alma Winters",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 262501,
"SidewaysCard": false,
"CustomDeck": {
"2625": {
"FaceURL": "https://i.imgur.com/GVltRuj.jpg",
"BackURL": "https://i.imgur.com/Kvbx58J.jpg",
"NumWidth": 6,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ecaa8c",
"Name": "Card",
"Transform": {
"posX": -19.2997856,
"posY": 1.30758762,
"posZ": -84.8181839,
"rotX": 0.02080855,
"rotY": 270.0,
"rotZ": 0.016771106,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "David Emerson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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,
"CardID": 260803,
"SidewaysCard": false,
"CustomDeck": {
"2608": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f89508",
"Name": "Card",
"Transform": {
"posX": -19.30002,
"posY": 1.31677353,
"posZ": -53.4358368,
"rotX": 0.020808477,
"rotY": 270.000122,
"rotZ": 0.0167712886,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edith Alexander",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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,
"CardID": 260802,
"SidewaysCard": false,
"CustomDeck": {
"2608": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f9d436",
"Name": "Deck",
"Transform": {
"posX": -22.61692,
"posY": 1.3233366,
"posZ": -84.81851,
"rotX": 0.02080867,
"rotY": 270.000031,
"rotZ": 0.01677105,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
264607,
264606
],
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "45db8c",
"Name": "Card",
"Transform": {
"posX": -22.6169147,
"posY": 1.30638278,
"posZ": -84.8185043,
"rotX": 0.0208091047,
"rotY": 270.000061,
"rotZ": 0.01677142,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gus",
"Description": "Beloved Son?",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264607,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dee9f",
"Name": "Card",
"Transform": {
"posX": -22.6169033,
"posY": 1.8882122,
"posZ": -84.8185,
"rotX": 0.0153201148,
"rotY": 270.029419,
"rotZ": 330.648315,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunter's Instinct",
"Description": "A Wild Calling",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 264606,
"SidewaysCard": false,
"CustomDeck": {
"2646": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"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
}
}
]
}