6348 lines
208 KiB
JSON
6348 lines
208 KiB
JSON
|
{
|
||
|
"GUID": "b82c6f",
|
||
|
"Name": "Custom_Model_Bag",
|
||
|
"Transform": {
|
||
|
"posX": -5.43330336,
|
||
|
"posY": 1.47853887,
|
||
|
"posZ": -35.81076,
|
||
|
"rotX": 359.920135,
|
||
|
"rotY": 270.0102,
|
||
|
"rotZ": 0.0168616176,
|
||
|
"scaleX": 1.3633405,
|
||
|
"scaleY": 0.2837723,
|
||
|
"scaleZ": 1.49288893
|
||
|
},
|
||
|
"Nickname": "Mass Effect 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/1667985852037525429/FFCBAFD8EF7EFD1127F4482DF01FFD8AE9638B4D/",
|
||
|
"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\":{\"08d3e3\":{\"lock\":false,\"pos\":{\"x\":13.7647,\"y\":1.1313,\"z\":-49.4761},\"rot\":{\"x\":0.0208,\"y\":270.0295,\"z\":0.0168}},\"1850a0\":{\"lock\":false,\"pos\":{\"x\":10.1154,\"y\":1.13,\"z\":-49.5287},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"215654\":{\"lock\":false,\"pos\":{\"x\":10.0421,\"y\":1.3229,\"z\":-69.0393},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"215e86\":{\"lock\":false,\"pos\":{\"x\":13.7253,\"y\":1.3265,\"z\":-61.2201},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"224b24\":{\"lock\":false,\"pos\":{\"x\":6.2766,\"y\":1.3169,\"z\":-84.7917},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"3295c3\":{\"lock\":false,\"pos\":{\"x\":13.727,\"y\":1.3219,\"z\":-76.9246},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"332a9d\":{\"lock\":false,\"pos\":{\"x\":6.2777,\"y\":1.3215,\"z\":-69.0494},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"334aca\":{\"lock\":false,\"pos\":{\"x\":2.5934,\"y\":1.3202,\"z\":-69.0337},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"3b4e14\":{\"lock\":false,\"pos\":{\"x\":10.0416,\"y\":1.3206,\"z\":-76.9243},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"43be08\":{\"lock\":false,\"pos\":{\"x\":6.2797,\"y\":1.3261,\"z\":-53.4113},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"570e85\":{\"lock\":false,\"pos\":{\"x\":2.6965,\"y\":1.1181,\"z\":-80.8667},\"rot\":{\"x\":0.0208,\"y\":270.0197,\"z\":0.0168}},\"5723ef\":{\"lock\":false,\"pos\":{\"x\":6.2765,\"y\":1.3238,\"z\":-61.2146},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"60fa35\":{\"lock\":false,\"pos\":{\"x\":6.3792,\"y\":1.1263,\"z\":-57.3239},\"rot\":{\"x\":0.0208,\"y\":270.0178,\"z\":0.0168}},\"6235fb\":{\"lock\":false,\"pos\":{\"x\":2.6573,\"y\":1.3325,\"z\":-84.7575},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"66a75f\":{\"lock\":false,\"pos\":{\"x\":13.7254,\"y\":1.3196,\"z\":-84.7972},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"6d5e35\":{\"lock\":false,\"pos\":{\"x\":13.7587,\"y\":1.1267,\"z\":-65.2426},\"rot\":{\"x\":0.0208,\"y\":270.0181,\"z\":0.0168}},\"6fd13b\":{\"lock\":false,\"pos\":{\"x\":2.5897,\"y\":1.1204,\"z\":-72.9237},\"rot\":{\"x\":0.0208,\"y\":270.0206,\"z\":0.0168}},\"71818d\":{\"lock\":false,\"pos\":{\"x\":6.3664,\"y\":1.1286,\"z\":-49.5291},\"rot\":{\"x\":0.0208,\"y\":270.0196,\"z\":0.0168}},\"80b260\":{\"lock\":false,\"pos\":{\"x\":2.62,\"y\":1.1272,\"z\":-49.5292},\"rot\":{\"x\":0.0208,\"y\":270.0221,\"z\":0.0168}},\"80fbd7\":{\"lock\":false,\"pos\":{\"x\":13.8384,\"y\":1.1221,\"z\":-80.8671},\"rot\":{\"x\":0.0208,\"y\":270.0187,\"z\":0.0168}},\"8359d7\":{\"lock\":false,\"pos\":{\"x\":2.5933,\"y\":1.3224,\"z\":-61.2141},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"858c12\":{\"lock\":false,\"pos\":{\"x\":10.1694,\"y\":1.1208,\"z\":-80.8667},\"rot\":{\"x\":0.0208,\"y\":270.0011,\"z\":0.0168}},\"947614\":{\"lock\":false,\"pos\":{\"x\":13.7557,\"y\":1.1244,\"z\":-72.9234},\"rot\":{\"x\":0.0208,\"y\":270.019,\"z\":0.0168}},\"9c8372\":{\"lock\":false,\"pos\":{\"x\":13.7258,\"y\":1.3288,\"z\":-53.4162},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"b6b587\":{\"lock\":false,\"pos\":{\"x\":2.5939,\"y\":1.1226,\"z\":-65.2427},\"rot\":{\"x\":0.0208,\"y\":270.021,\"z\":0.0168}},\"b6e8bc\":{\"lock\":false,\"pos\":{\"x\":6.336,\"y\":1.1217,\"z\":-72.9236},\"rot\":{\"x\":0.0208,\"y\":270.0182,\"z\":0.0168}},\"b7ddca\":{\"lock\":false,\"pos\":{\"x\":2.5934,\"y\":1.3247,\"z\":-53.4101},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"b9aa5d\":{\"lock\":false,\"pos\":{\"x\":10.0851,\"y\":1.1231,\"z\":-72.923},\"rot\":{\"x\":0.0208,\"y\":270.0021,\"z\":0.0168}},\"bced27\":{\"lock\":false,\"pos\":{\"x\":10.1282,\"y\":1.1277,\"z\":-57.3233},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}},\"c1cdf9\":{\"lock\":false,\"pos\":{\"x\":6.3705,\"y\":1.124,\"z\":-65.2395},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"c34194\":{\"lock\":false,\"pos\":{\"x\":10.0422,\"y\":1.3274,\"z\":-53.4154},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"cb8c7b\":{\"lock\":false,\"pos\":{\"x\":10.0417,\"y\":1.32
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "dc76bd",
|
||
|
"Name": "Custom_Model",
|
||
|
"Transform": {
|
||
|
"posX": 78.3121948,
|
||
|
"posY": 1.2609117,
|
||
|
"posZ": -1.22761226,
|
||
|
"rotX": 359.99,
|
||
|
"rotY": 270.0282,
|
||
|
"rotZ": 359.984528,
|
||
|
"scaleX": 0.250000477,
|
||
|
"scaleY": 0.250000477,
|
||
|
"scaleZ": 0.250000477
|
||
|
},
|
||
|
"Nickname": "Mass Effect Data Helper",
|
||
|
"Description": "Spawns tokens for cards that need them. Can be moved. Do not delete.",
|
||
|
"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,
|
||
|
"CustomMesh": {
|
||
|
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
|
||
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
|
||
|
"NormalURL": "",
|
||
|
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
|
||
|
"Convex": true,
|
||
|
"MaterialIndex": 2,
|
||
|
"TypeIndex": 0,
|
||
|
"CustomShader": {
|
||
|
"SpecularColor": {
|
||
|
"r": 0.7222887,
|
||
|
"g": 0.507659256,
|
||
|
"b": 0.339915335
|
||
|
},
|
||
|
"SpecularIntensity": 0.4,
|
||
|
"SpecularSharpness": 7.0,
|
||
|
"FresnelStrength": 0.0
|
||
|
},
|
||
|
"CastShadows": true
|
||
|
},
|
||
|
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for <LOCATION_NAME>_<GUID> and if\r\nwe find nothing we look for <LOCATION_NAME>\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"Archangel's Mercy:Precisely Calibrated Black Widow\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\n },\n \t\"N7 Typhoon\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 6\r\n },\r\n \"Dark Channel\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n },\r\n \t\"Shadow Network\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n }\r\n}\r\n]]\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n -- local playArea = getObjectFromGUID('721ba2')\r\n -- playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n -- local dataHelper = getObjectFromGUID('708279')\r\n -- dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend\r\n",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "08d3e3",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 13.7647028,
|
||
|
"posY": 1.13130212,
|
||
|
"posZ": -49.4761,
|
||
|
"rotX": 0.0208182465,
|
||
|
"rotY": 270.029541,
|
||
|
"rotZ": 0.0167996082,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Ashley Williams",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.182382733,
|
||
|
"g": 0.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "4a7295",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.5963888,
|
||
|
"posY": 3.40922,
|
||
|
"posZ": -49.2456436,
|
||
|
"rotX": 0.466317236,
|
||
|
"rotY": 269.9943,
|
||
|
"rotZ": 358.5923,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Ashley Williams",
|
||
|
"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": 568900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5689": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036773273/9BA1AC935C745ABF73B794522FACB0C84A2E34EC/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036773443/34A84E80E44D379C38B8B22C406BB6F84BA2E865/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "178104",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.605689,
|
||
|
"posY": 3.41465688,
|
||
|
"posZ": -49.3103333,
|
||
|
"rotX": 0.236886784,
|
||
|
"rotY": 269.9993,
|
||
|
"rotZ": 359.603668,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Headstrong",
|
||
|
"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": 629800,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6298": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014451387/33675C350FC2D8DBD920D76F25DFF630945EB2F9/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "5f8dab",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.8704348,
|
||
|
"posY": 3.413988,
|
||
|
"posZ": -49.2395134,
|
||
|
"rotX": 359.90567,
|
||
|
"rotY": 270.0005,
|
||
|
"rotZ": 359.442841,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Markswoman",
|
||
|
"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": 631400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6314": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014524258/52C255429122B9362386067C52CD5739614E0C1A/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "1850a0",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 10.1154022,
|
||
|
"posY": 1.12996113,
|
||
|
"posZ": -49.5287,
|
||
|
"rotX": 0.020835977,
|
||
|
"rotY": 270.0003,
|
||
|
"rotZ": 0.0167835634,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Jacob Taylor",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.182382733,
|
||
|
"g": 0.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "1c22df",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.4819365,
|
||
|
"posY": 3.419259,
|
||
|
"posZ": -49.6307564,
|
||
|
"rotX": 359.718933,
|
||
|
"rotY": 270.007416,
|
||
|
"rotZ": 358.534119,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Jacob Taylor",
|
||
|
"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": 570000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5700": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036802715/E3C5A24AD09D8DF6B744CB0EB72DC2B8BE701078/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036802844/AE6210584FFDF52C0D6F094CFDD0A3CCEC41FC18/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "e59d22",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.4323454,
|
||
|
"posY": 3.436824,
|
||
|
"posZ": -48.71855,
|
||
|
"rotX": 359.977234,
|
||
|
"rotY": 269.970642,
|
||
|
"rotZ": 1.27979338,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "The Prize",
|
||
|
"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": 635500,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6355": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925288103760369/6C25C868F0CB2F00BBDCBAE6FC2BA2946786F531/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "ed3104",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.4111137,
|
||
|
"posY": 3.41338754,
|
||
|
"posZ": -49.60017,
|
||
|
"rotX": 359.6705,
|
||
|
"rotY": 269.993683,
|
||
|
"rotZ": 0.189911172,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Stalwart",
|
||
|
"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": 631900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6319": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014568995/F6AC81C4046C08086E3EE473847A368FDD9C12B3/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "71818d",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 6.36640167,
|
||
|
"posY": 1.12859988,
|
||
|
"posZ": -49.5291,
|
||
|
"rotX": 0.0208290759,
|
||
|
"rotY": 270.019562,
|
||
|
"rotZ": 0.0167887323,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "James Vega",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.182382733,
|
||
|
"g": 0.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "b7e0d0",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.10813427,
|
||
|
"posY": 3.40108156,
|
||
|
"posZ": -49.17501,
|
||
|
"rotX": 0.5316847,
|
||
|
"rotY": 269.993561,
|
||
|
"rotZ": 358.6074,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "James Vega",
|
||
|
"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": 568300,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5683": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036805085/1E350ECCFF64B8F236E0B41A2FA00B072C2107D1/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036805222/7C9AAACD32991002A0FFFD07258CB25FE3AF4018/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "8b8cf9",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 36.03772,
|
||
|
"posY": 2.30123019,
|
||
|
"posZ": -87.98626,
|
||
|
"rotX": 0.0208091177,
|
||
|
"rotY": 269.999939,
|
||
|
"rotZ": 0.016771799,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Brute",
|
||
|
"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": 628500,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6285": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014362816/3A087E40A5C06A5FE90ACDD4CA5C84C4A9CA6106/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "df701f",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.959544,
|
||
|
"posY": 3.40612078,
|
||
|
"posZ": -49.9246674,
|
||
|
"rotX": 359.602234,
|
||
|
"rotY": 269.997864,
|
||
|
"rotZ": 0.573774457,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "N7 Typhoon",
|
||
|
"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": 631600,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6316": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014525415/4A2E544EF2B71A0AA6076B647C5DDB75D9641E9F/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "80b260",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 2.61999869,
|
||
|
"posY": 1.12723923,
|
||
|
"posZ": -49.5292,
|
||
|
"rotX": 0.020827489,
|
||
|
"rotY": 270.022156,
|
||
|
"rotZ": 0.016791312,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Urdnot Grunt",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.182382733,
|
||
|
"g": 0.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "933ff0",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.429824,
|
||
|
"posY": 3.415864,
|
||
|
"posZ": -49.56821,
|
||
|
"rotX": 0.189839423,
|
||
|
"rotY": 269.995239,
|
||
|
"rotZ": 358.529083,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Urdnot Grunt",
|
||
|
"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": 569200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5692": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1801982165964631527/EF8975CACB5C205531ADAB3AAA3A481B4C364778/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1801982165964631865/680B377A50A7ACBDFC7CEB7290A431AA52A6BE9D/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "806687",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.32770634,
|
||
|
"posY": 3.41602063,
|
||
|
"posZ": -49.5848,
|
||
|
"rotX": 0.08017157,
|
||
|
"rotY": 269.988953,
|
||
|
"rotZ": 0.03752087,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Hubris",
|
||
|
"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": 633300,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6333": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539003358/0512DDB03BA08A8A6851B7D7909B39377A1D0202/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "ba6fa7",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.63016272,
|
||
|
"posY": 3.412321,
|
||
|
"posZ": -49.5792274,
|
||
|
"rotX": 0.0138952862,
|
||
|
"rotY": 269.999817,
|
||
|
"rotZ": 0.150955513,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Carnage",
|
||
|
"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": 628600,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6286": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014363180/D5F6607A3D3CB2F3DC95FC8270472F8B532FD6FB/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "b7ddca",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.593399,
|
||
|
"posY": 1.32473218,
|
||
|
"posZ": -53.4101,
|
||
|
"rotX": 0.0208086465,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.0167712085,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Urdnot Grunt",
|
||
|
"Description": "The Berserker",
|
||
|
"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": 634600,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6346": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539010519/0D5A2E3039B1F028195503FD1C0848BA53FDD7DD/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014574237/82BC7028312149655020EC6950A5C89DFD9E9E88/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "43be08",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.2797,
|
||
|
"posY": 1.32607067,
|
||
|
"posZ": -53.4113,
|
||
|
"rotX": 0.0208086967,
|
||
|
"rotY": 270.000458,
|
||
|
"rotZ": 0.0167713333,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "James Vega",
|
||
|
"Description": "The Arms Master",
|
||
|
"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": 635200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6352": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539005004/FB9DC42B5DD660EB660AD7E0A49EF11B3DE4BBDC/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863925288103757846/10552066B3E595023FE8F348859DC17759CC70D7/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "c34194",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.0422,
|
||
|
"posY": 1.327436,
|
||
|
"posZ": -53.4153976,
|
||
|
"rotX": 0.0208090674,
|
||
|
"rotY": 269.999939,
|
||
|
"rotZ": 0.0167711154,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Jacob Taylor",
|
||
|
"Description": "The Cerberus Operative",
|
||
|
"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": 633500,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6335": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539004541/5ABADDD21D99B4635EDC9EB704DA4B50CC309874/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014496367/313597E6B85D5B84F27F2CAB4E44977BFA7A2149/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "9c8372",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.7257977,
|
||
|
"posY": 1.3287735,
|
||
|
"posZ": -53.4162,
|
||
|
"rotX": 0.0208088327,
|
||
|
"rotY": 269.9996,
|
||
|
"rotZ": 0.0167713147,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Ashley Williams",
|
||
|
"Description": "The Alliance Soldier",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539001674/2F63D4C74BE5FF3F2CF0A5685259D2A0DE466F12/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014361967/C101073E5B043307963D00EC7CFE718EB5C826D8/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "fc82f2",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 13.7976027,
|
||
|
"posY": 1.12901735,
|
||
|
"posZ": -57.3239,
|
||
|
"rotX": 0.0208213534,
|
||
|
"rotY": 270.019958,
|
||
|
"rotZ": 0.0167964566,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "EDI",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 1.0,
|
||
|
"g": 0.7058823,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "cadda6",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 14.0556641,
|
||
|
"posY": 3.374945,
|
||
|
"posZ": -57.6456375,
|
||
|
"rotX": 358.79483,
|
||
|
"rotY": 269.929169,
|
||
|
"rotZ": 4.94979334,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "EDI",
|
||
|
"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": 568700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5687": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036787499/4052F3CF59C42F1D3CEB57283E90FD8BF9DF2890/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036787657/59E95BA5EED9EAB961E28FCDCAB8F0302E7D312D/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "1f0eca",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.3256645,
|
||
|
"posY": 3.40697765,
|
||
|
"posZ": -57.67417,
|
||
|
"rotX": 0.440862417,
|
||
|
"rotY": 270.002319,
|
||
|
"rotZ": 0.6004096,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Jeff Moreau",
|
||
|
"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": 630700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6307": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014497590/28B953DABB8110659709770E6934F3C9105A5E42/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "84cf68",
|
||
|
"Name": "Deck",
|
||
|
"Transform": {
|
||
|
"posX": 14.0201883,
|
||
|
"posY": 3.43407559,
|
||
|
"posZ": -57.16917,
|
||
|
"rotX": 359.754822,
|
||
|
"rotY": 270.0299,
|
||
|
"rotZ": 359.6335,
|
||
|
"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": [
|
||
|
631700,
|
||
|
631700,
|
||
|
631700
|
||
|
],
|
||
|
"CustomDeck": {
|
||
|
"6317": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014525767/DB750B66591736E20834F389D3F5D0E4FC55F159/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "94b06f",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 18.4300041,
|
||
|
"posY": 1.34186018,
|
||
|
"posZ": -57.899826,
|
||
|
"rotX": 359.9754,
|
||
|
"rotY": 270.069427,
|
||
|
"rotZ": 0.00162071083,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Optimal Capacity",
|
||
|
"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": 631700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6317": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014525767/DB750B66591736E20834F389D3F5D0E4FC55F159/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "1774e1",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 18.5482979,
|
||
|
"posY": 1.360473,
|
||
|
"posZ": -59.1817,
|
||
|
"rotX": 359.972626,
|
||
|
"rotY": 270.110718,
|
||
|
"rotZ": 2.574069,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Optimal Capacity",
|
||
|
"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": 631700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6317": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014525767/DB750B66591736E20834F389D3F5D0E4FC55F159/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "4fa316",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 18.2987366,
|
||
|
"posY": 1.29232979,
|
||
|
"posZ": -58.9800224,
|
||
|
"rotX": 0.0213994589,
|
||
|
"rotY": 269.999329,
|
||
|
"rotZ": 0.0144108,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Optimal Capacity",
|
||
|
"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": 631700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6317": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014525767/DB750B66591736E20834F389D3F5D0E4FC55F159/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "bced27",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 10.1282015,
|
||
|
"posY": 1.12768424,
|
||
|
"posZ": -57.3233,
|
||
|
"rotX": 0.0208401456,
|
||
|
"rotY": 270.0015,
|
||
|
"rotZ": 0.0167830642,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Liara T'Soni",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 1.0,
|
||
|
"g": 0.7058823,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "15ef84",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.0937243,
|
||
|
"posY": 3.410856,
|
||
|
"posZ": -57.2770424,
|
||
|
"rotX": 0.499505,
|
||
|
"rotY": 269.9975,
|
||
|
"rotZ": 359.3891,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Liara T'Soni",
|
||
|
"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": 572000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5720": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036830642/B784341FD456D9722F96148D95BFC68762923BE6/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036830800/720F11290EC6FF007B5CEA4089AA2965204995CE/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "6b9a79",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.1769753,
|
||
|
"posY": 3.41215515,
|
||
|
"posZ": -57.44616,
|
||
|
"rotX": 359.9707,
|
||
|
"rotY": 269.999878,
|
||
|
"rotZ": 0.33963567,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Rogue Agent",
|
||
|
"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": 632000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6320": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014527366/9B2B6F8F1838898D505211E13E20110EA944FD09/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "5683b5",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 9.703261,
|
||
|
"posY": 3.40593982,
|
||
|
"posZ": -56.96404,
|
||
|
"rotX": 0.4097941,
|
||
|
"rotY": 269.998,
|
||
|
"rotZ": 359.3878,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Shadow Network",
|
||
|
"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": 631700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6317": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014567651/975E77F598980199CBFCE062F01ABE27D53B8BCE/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "60fa35",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 6.379198,
|
||
|
"posY": 1.12632346,
|
||
|
"posZ": -57.3239,
|
||
|
"rotX": 0.0208300948,
|
||
|
"rotY": 270.017822,
|
||
|
"rotZ": 0.0167876538,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Mordin Solus",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 1.0,
|
||
|
"g": 0.7058823,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "73dfca",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.26968241,
|
||
|
"posY": 3.40891266,
|
||
|
"posZ": -57.3759155,
|
||
|
"rotX": 0.6935585,
|
||
|
"rotY": 270.001221,
|
||
|
"rotZ": 0.205432862,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Mordin Solus",
|
||
|
"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": 555200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5552": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036838045/2DA6DCAED951475FA671FF89D13E93FB1ECC0561/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036838208/08D9D3E3BA824FDFF9B3DA71BBD1B2213779DEEB/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "dbbc4b",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 5.49234724,
|
||
|
"posY": 3.39894962,
|
||
|
"posZ": -57.9477119,
|
||
|
"rotX": 0.421676338,
|
||
|
"rotY": 270.002075,
|
||
|
"rotZ": 0.5599516,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Repentance",
|
||
|
"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": 627200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6272": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1709662861583661189/70CE7012821E528C7DBE0A3FFD1D4DCFD0F8C8FE/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "fc7c21",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.18827343,
|
||
|
"posY": 3.40922141,
|
||
|
"posZ": -57.50228,
|
||
|
"rotX": 0.270266324,
|
||
|
"rotY": 270.000977,
|
||
|
"rotZ": 0.4456553,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Breakthrough",
|
||
|
"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": 628400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6284": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014362324/C4CDB427B6CC03590DC6FAB3E9DD8EFAD24AD5EB/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "ed77db",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 2.632901,
|
||
|
"posY": 1.12496185,
|
||
|
"posZ": -57.3239,
|
||
|
"rotX": 0.02082994,
|
||
|
"rotY": 270.021545,
|
||
|
"rotZ": 0.01679126,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Tali'Zorah vas Normandy",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 1.0,
|
||
|
"g": 0.7058823,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "65ecf8",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.336733,
|
||
|
"posY": 3.4066,
|
||
|
"posZ": -57.4200974,
|
||
|
"rotX": 0.7901889,
|
||
|
"rotY": 269.9876,
|
||
|
"rotZ": 359.281281,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Tali'Zorah vas Normandy",
|
||
|
"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": 556000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5560": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036940838/92F1A3B11B7BC7049B3DC0BB05AF0CCBCF6DFEFB/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036940963/5FD16BFBFE837CE8CF87EFBAF3053D44BD4AFC56/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "adf7f1",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.64317083,
|
||
|
"posY": 3.404246,
|
||
|
"posZ": -56.903614,
|
||
|
"rotX": 0.0217794459,
|
||
|
"rotY": 269.999634,
|
||
|
"rotZ": 359.203766,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Envirosuit Puncture",
|
||
|
"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": 629400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6294": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014449763/6F0779C0BC009AD6D3E4EDFF412A8B0DFF245223/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "22bbce",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.88359618,
|
||
|
"posY": 3.408431,
|
||
|
"posZ": -57.2142944,
|
||
|
"rotX": 359.712524,
|
||
|
"rotY": 270.000671,
|
||
|
"rotZ": 359.7403,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Chatika vas Paus",
|
||
|
"Description": "Tali's Combat Drone",
|
||
|
"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": 628700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6287": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014363622/8124526FF3E78471ED97CDC2F38BB53728227FEC/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "8359d7",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.59329915,
|
||
|
"posY": 1.32244778,
|
||
|
"posZ": -61.2141,
|
||
|
"rotX": 0.0208087582,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.016771093,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Tali'Zorah vas Normandy",
|
||
|
"Description": "The Machinist",
|
||
|
"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": 635300,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6353": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925288103759672/54359158118C533167F395B58F1CFF09C8A1DB54/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014569884/42E0EB1916FEEF3250E90051220A9955E72876AC/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "5723ef",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.276502,
|
||
|
"posY": 1.32378542,
|
||
|
"posZ": -61.2146,
|
||
|
"rotX": 0.0208085962,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.0167711861,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Mordin Solus",
|
||
|
"Description": "The Scientist",
|
||
|
"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": 634300,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6343": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539008348/6F4A1BF8ED819A4550A15D66827A53D4C7F43D5A/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745008707272/C4A4BBE076D7091F8B421362C9933DD7049ECE21/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "cb8c7b",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.0416985,
|
||
|
"posY": 1.32515121,
|
||
|
"posZ": -61.2201,
|
||
|
"rotX": 0.0208089631,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.0167711657,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Liara T'Soni",
|
||
|
"Description": "The Shadow Broker",
|
||
|
"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": 634100,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6341": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539007594/DBB8512FD64FEE6C49EB957BA02800A79EA50C61/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014523557/446E75CBBDEFDB961CACD0075C2EF867458E98E3/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "215e86",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.7253,
|
||
|
"posY": 1.326489,
|
||
|
"posZ": -61.2201,
|
||
|
"rotX": 0.0208086371,
|
||
|
"rotY": 270.000122,
|
||
|
"rotZ": 0.01677161,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "EDI",
|
||
|
"Description": "The Unshackled AI",
|
||
|
"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": 633100,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6331": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539002540/51DCAD39A14AFFB36A1064282CD7A63FECACBDFA/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014449423/36EB70361272A5E53BB8B07FFF3D3B6497CEB4DD/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "e48599",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.6973019,
|
||
|
"posY": 1.32418227,
|
||
|
"posZ": -69.0658,
|
||
|
"rotX": 0.020808652,
|
||
|
"rotY": 270.0002,
|
||
|
"rotZ": 0.01677139,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Garrus Vakarian",
|
||
|
"Description": "The Rebel",
|
||
|
"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": 634800,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6348": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539002891/6D4765BD29DEBB7F2E782AF2279086B70C8772E6/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014451121/CC86592A1B0A4A86A35B7C09274B9A998A9A387C/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "6d5e35",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 13.7587013,
|
||
|
"posY": 1.12668562,
|
||
|
"posZ": -65.2426,
|
||
|
"rotX": 0.0208214819,
|
||
|
"rotY": 270.0181,
|
||
|
"rotZ": 0.0167974737,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Garrus Vakarian",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.294115633,
|
||
|
"g": 1.0,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "3569f2",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 25.8749866,
|
||
|
"posY": 2.29836345,
|
||
|
"posZ": -83.35822,
|
||
|
"rotX": 0.0208084956,
|
||
|
"rotY": 270.0014,
|
||
|
"rotZ": 0.0167724974,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Garrus Vakarian",
|
||
|
"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": 567800,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5678": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036792257/B90810772347D86D0F071FF726F0E8C85D85FF2B/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036792409/6A95AC23D1F8E7F3B5322F01164460BE91E13FF3/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "af1699",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.7435732,
|
||
|
"posY": 3.41054726,
|
||
|
"posZ": -65.41132,
|
||
|
"rotX": 0.04691895,
|
||
|
"rotY": 270.000122,
|
||
|
"rotZ": 0.451503247,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Unfinished Calibrations",
|
||
|
"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": 632400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6324": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014572506/A0EC34CD25A880167AC37D2FACAD6A35F14A84D6/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "3c877c",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.6078959,
|
||
|
"posY": 3.41062045,
|
||
|
"posZ": -65.35259,
|
||
|
"rotX": 0.236654267,
|
||
|
"rotY": 270.0006,
|
||
|
"rotZ": 0.3011515,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Archangel's Mercy",
|
||
|
"Description": "Precisely Calibrated Black Widow",
|
||
|
"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": 628200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6282": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014360745/13C91F3AF4F5A6FBC9E99896EF24946003EB9600/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "e82a8b",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 10.0893021,
|
||
|
"posY": 1.12535262,
|
||
|
"posZ": -65.2422,
|
||
|
"rotX": 0.0208361279,
|
||
|
"rotY": 270.000427,
|
||
|
"rotZ": 0.0167825129,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Kasumi Goto",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.294115633,
|
||
|
"g": 1.0,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "b00601",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.5577021,
|
||
|
"posY": 3.40654874,
|
||
|
"posZ": -65.48448,
|
||
|
"rotX": 359.5578,
|
||
|
"rotY": 269.9979,
|
||
|
"rotZ": 0.59417516,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Kasumi Goto",
|
||
|
"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": 579100,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5791": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036822178/4AD58C38018F931A23E43E19ADFF34C14DEAFB4E/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036822318/3319DF8EA9E48CD4C2882CF1C43F998EC1DBDD1A/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "b95886",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 9.77588749,
|
||
|
"posY": 3.407782,
|
||
|
"posZ": -65.13729,
|
||
|
"rotX": 0.414438367,
|
||
|
"rotY": 269.9992,
|
||
|
"rotZ": 359.769775,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Fleeting Memory",
|
||
|
"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": 629500,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6295": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014450154/9537EB3E7ED53BF4C8C9A5D9490FE56E9E824DCE/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "25b5af",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 9.486491,
|
||
|
"posY": 3.40366459,
|
||
|
"posZ": -65.4024658,
|
||
|
"rotX": 0.5711703,
|
||
|
"rotY": 270.001526,
|
||
|
"rotZ": 0.2971018,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Hologram",
|
||
|
"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": 630000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6300": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014452345/569AEFA46BBCEB2DA29DBB3AF9C803992AC6FCEE/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "215654",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.042098,
|
||
|
"posY": 1.32286251,
|
||
|
"posZ": -69.0393,
|
||
|
"rotX": 0.020808721,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.016771134,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Kasumi Goto",
|
||
|
"Description": "The Master Thief",
|
||
|
"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": 633900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6339": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539006692/2E604B0FD8FC54707706DAEA6CF4E67133D9A9B3/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014498792/179530D60D6CC8DD0A5A5B806B5605F549B84A92/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "332a9d",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.277702,
|
||
|
"posY": 1.32149243,
|
||
|
"posZ": -69.0494,
|
||
|
"rotX": 0.0208086316,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.0167711452,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Legion",
|
||
|
"Description": "Geth Mobile Platform 2A93",
|
||
|
"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": 634000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6340": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539007139/2CD383917195968084D23120CC4F413D51918B10/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014523056/CA5598CAD67EAD837750E114AFFDBB44D374DC28/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "c1cdf9",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 6.370502,
|
||
|
"posY": 1.12400246,
|
||
|
"posZ": -65.2395,
|
||
|
"rotX": 0.0208428781,
|
||
|
"rotY": 270.000732,
|
||
|
"rotZ": 0.01678272,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Legion",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.294115573,
|
||
|
"g": 1.0,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "9c8033",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.14652061,
|
||
|
"posY": 3.39966583,
|
||
|
"posZ": -65.53384,
|
||
|
"rotX": 0.492936045,
|
||
|
"rotY": 270.0061,
|
||
|
"rotZ": 1.43413734,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Legion",
|
||
|
"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": 571500,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5715": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036827386/F6EDAF6080254FAFD4B502DC3FEC64080E963F69/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036827522/3BBDFF7C7A7E0DA9F83C3F5E15081BD392D7695F/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "45acec",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 32.1629677,
|
||
|
"posY": 2.29813838,
|
||
|
"posZ": -94.23166,
|
||
|
"rotX": 0.0208087172,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.0167712029,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Heretic Virus",
|
||
|
"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": 629900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6299": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014451997/BBAF5987FA7C02FED253100DC319C3D65F9AAEF6/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "6d4584",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 40.83738,
|
||
|
"posY": 2.30116081,
|
||
|
"posZ": -94.52104,
|
||
|
"rotX": 0.0208079461,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.0167704821,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Machine Learning",
|
||
|
"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": 631300,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6313": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014523879/49EEC74E2050E0EC21F91D4CC5E0D2385EEC40EC/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "909b4e",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.51867,
|
||
|
"posY": 4.403536,
|
||
|
"posZ": -79.88693,
|
||
|
"rotX": 0.0208084676,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.01677089,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Reaper Upgrade",
|
||
|
"Description": "Gift of the Old Machines",
|
||
|
"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": 634900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6349": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539073914/9CEDB39A6C9572540BC995B9D89B788EF05DFA43/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539008924/DD09373C86EFAFD08FA1FA3669509725FB32FC3C/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "b6b587",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 2.59390068,
|
||
|
"posY": 1.12262988,
|
||
|
"posZ": -65.2427,
|
||
|
"rotX": 0.0208332371,
|
||
|
"rotY": 270.020935,
|
||
|
"rotZ": 0.0167897511,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Thane Krios",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.294115633,
|
||
|
"g": 1.0,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "24b107",
|
||
|
"Name": "Notecard",
|
||
|
"Transform": {
|
||
|
"posX": 3.83883214,
|
||
|
"posY": 4.45658159,
|
||
|
"posZ": -82.56616,
|
||
|
"rotX": 359.9792,
|
||
|
"rotY": 90.0007553,
|
||
|
"rotZ": 359.983215,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "[b]Thane Krios - The City of Archives Setup Changes[/b]",
|
||
|
"Description": "\n\nIMPORTANT: [i]This note is only relevant during the City of Archives scenario.[/i] For the duration of this scenario, the text on page 2 [u]replaces[/u] Thane's [b]Additional Setup[/b] rules.",
|
||
|
"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,
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"States": {
|
||
|
"2": {
|
||
|
"GUID": "be2e20",
|
||
|
"Name": "Notecard",
|
||
|
"Transform": {
|
||
|
"posX": -1.6335876,
|
||
|
"posY": 1.37601459,
|
||
|
"posZ": -65.63238,
|
||
|
"rotX": 359.9792,
|
||
|
"rotY": 90.0007553,
|
||
|
"rotZ": 359.983215,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "[b]Thane Krios - The City of Archives Setup Changes[/b]",
|
||
|
"Description": "\n[b]Additional Setup:[/b] Remove 4 copies of Overexertion from the game. Shuffle the remaining 3 copies of Overexertion into your deck. For the duration of this scenario, ignore the text on Kepral's Syndrome and the \"Return this card to the Overexertion deck instead of discarding it\" text on each copy of Overexertion.",
|
||
|
"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,
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"GUID": "fa14ef",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.735767,
|
||
|
"posY": 3.40453577,
|
||
|
"posZ": -65.37406,
|
||
|
"rotX": 359.5996,
|
||
|
"rotY": 269.995972,
|
||
|
"rotZ": 1.02898407,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Thane Krios",
|
||
|
"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": 633000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6330": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014601830/092B335D7487FE91D2AA8A9F4F07D0F10DD47F81/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014602007/94AEA986C011327B0EDC522AD26405321842381A/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "cf8e23",
|
||
|
"Name": "Deck",
|
||
|
"Transform": {
|
||
|
"posX": 2.31309485,
|
||
|
"posY": 3.44306135,
|
||
|
"posZ": -65.6049042,
|
||
|
"rotX": 0.3000665,
|
||
|
"rotY": 270.0016,
|
||
|
"rotZ": 0.6924456,
|
||
|
"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": [
|
||
|
632900,
|
||
|
632900,
|
||
|
632900,
|
||
|
632900,
|
||
|
632900,
|
||
|
632900,
|
||
|
632900
|
||
|
],
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014590275/D856BEF35186877C3CF4DAC9A93904A0B92971BF/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "71f67a",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 20.1130123,
|
||
|
"posY": 1.29274511,
|
||
|
"posZ": -59.7560463,
|
||
|
"rotX": 0.0212716777,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.013744602,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Overexertion",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014590275/D856BEF35186877C3CF4DAC9A93904A0B92971BF/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "d63e0e",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 20.25737,
|
||
|
"posY": 1.330373,
|
||
|
"posZ": -59.7364426,
|
||
|
"rotX": 0.02890516,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.01190942,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Overexertion",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014590275/D856BEF35186877C3CF4DAC9A93904A0B92971BF/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "71f67a",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 20.2573853,
|
||
|
"posY": 1.357668,
|
||
|
"posZ": -59.73643,
|
||
|
"rotX": 0.022880381,
|
||
|
"rotY": 269.999878,
|
||
|
"rotZ": 0.0157719385,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Overexertion",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014590275/D856BEF35186877C3CF4DAC9A93904A0B92971BF/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "71f67a",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 20.2573833,
|
||
|
"posY": 1.382428,
|
||
|
"posZ": -59.73643,
|
||
|
"rotX": 0.0211359169,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.01660698,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Overexertion",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014590275/D856BEF35186877C3CF4DAC9A93904A0B92971BF/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "71f67a",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 20.2573814,
|
||
|
"posY": 1.39012527,
|
||
|
"posZ": -59.73643,
|
||
|
"rotX": 0.0213169381,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.016514061,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Overexertion",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014590275/D856BEF35186877C3CF4DAC9A93904A0B92971BF/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "71f67a",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 20.2573776,
|
||
|
"posY": 1.39782286,
|
||
|
"posZ": -59.7364349,
|
||
|
"rotX": 0.0214881357,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.0164285228,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Overexertion",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014590275/D856BEF35186877C3CF4DAC9A93904A0B92971BF/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "71f67a",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": -0.5923051,
|
||
|
"posY": 1.43360674,
|
||
|
"posZ": -68.37502,
|
||
|
"rotX": 0.017008137,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.0131292269,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Overexertion",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014590275/D856BEF35186877C3CF4DAC9A93904A0B92971BF/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "092451",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 9.414936,
|
||
|
"posY": 2.35838747,
|
||
|
"posZ": -77.7829056,
|
||
|
"rotX": 0.0208080988,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.0167703424,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Kepral's Syndrome",
|
||
|
"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": 632900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6329": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014499040/88DE81F4E41085FD4D7DB8F09480BC3BE344DB77/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "576747",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.34492,
|
||
|
"posY": 3.40565419,
|
||
|
"posZ": -65.357,
|
||
|
"rotX": 0.347956061,
|
||
|
"rotY": 270.0033,
|
||
|
"rotZ": 0.2961344,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Prayer for the Wicked",
|
||
|
"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": 631800,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6318": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014526218/BA7EE791C156A6C8955CAA72BF43C53A9952742C/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "334aca",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.593401,
|
||
|
"posY": 1.320159,
|
||
|
"posZ": -69.0337,
|
||
|
"rotX": 0.02080885,
|
||
|
"rotY": 269.9999,
|
||
|
"rotZ": 0.0167711955,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Thane Krios",
|
||
|
"Description": "The Assassin",
|
||
|
"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": 635400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6354": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925288103760038/E7A23B9AAC0D91A8A0FD579B25340DF9CB35079B/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539009639/3DC7290B9EC6BFFF751DCE8BB936F9E137CBC497/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "6fd13b",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 2.5897007,
|
||
|
"posY": 1.12038088,
|
||
|
"posZ": -72.9237,
|
||
|
"rotX": 0.0208323766,
|
||
|
"rotY": 270.0206,
|
||
|
"rotZ": 0.01678879,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Samara",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.5882353,
|
||
|
"g": 0.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "eeb4af",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.115441,
|
||
|
"posY": 3.39863467,
|
||
|
"posZ": -73.03326,
|
||
|
"rotX": 0.8171132,
|
||
|
"rotY": 270.003052,
|
||
|
"rotZ": 0.4323784,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Samara",
|
||
|
"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": 555400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5554": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036903684/5EB92069F39026B2727538D43695DAA6F4507023/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036903861/4EFBE1EB0517DFBC546353F539AF27B3E4B6B024/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "c4c530",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.41133046,
|
||
|
"posY": 3.40458274,
|
||
|
"posZ": -72.96121,
|
||
|
"rotX": 0.275465369,
|
||
|
"rotY": 270.0003,
|
||
|
"rotZ": 0.114028193,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Banshee",
|
||
|
"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": 572200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5722": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1801982165964818252/B51C3A04A2F2C6B442EB13B4111AD981F6A69CA0/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "80fb90",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.03547072,
|
||
|
"posY": 3.39954352,
|
||
|
"posZ": -73.0477448,
|
||
|
"rotX": 0.5630168,
|
||
|
"rotY": 270.001221,
|
||
|
"rotZ": 0.248634636,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Biotic Pull",
|
||
|
"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": 625200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6252": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1709662596603566635/49857270464960AF7355705333766D324F6525DB/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "d79b6d",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.627799,
|
||
|
"posY": 1.31784356,
|
||
|
"posZ": -76.9865,
|
||
|
"rotX": 0.0208087862,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.0167710632,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Samara",
|
||
|
"Description": "The Justicar",
|
||
|
"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": 635800,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6358": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925288103782416/19E65309E7CDD1C87F943BDB43EF60F52194DEE2/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863925288103782596/B348AFA3DE5629511100A6AE17C8BD7F7255A719/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "e94523",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.2777,
|
||
|
"posY": 1.31918883,
|
||
|
"posZ": -76.9192,
|
||
|
"rotX": 0.0208087917,
|
||
|
"rotY": 270.000153,
|
||
|
"rotZ": 0.0167712159,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Miranda Lawson",
|
||
|
"Description": "The Cerberus Officer",
|
||
|
"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": 634200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6342": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539007958/FDBF9897EE5369645B95717B581EB5C4031F3664/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014525104/F0D85CF3AF5A5D66C60D722012E75F5A1E25B245/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "3b4e14",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.0416,
|
||
|
"posY": 1.32055426,
|
||
|
"posZ": -76.9243,
|
||
|
"rotX": 0.0208088011,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.0167711228,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Kaidan Alenko",
|
||
|
"Description": "The Alliance Sentinel",
|
||
|
"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": 634900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6349": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539105988/7E450570C1671A7748274029D3920E029CC31009/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014498331/3EC321F205C03DF46AAAA5DBB0F5B5325A210BBD/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "3295c3",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.7269983,
|
||
|
"posY": 1.32189262,
|
||
|
"posZ": -76.9246,
|
||
|
"rotX": 0.02080891,
|
||
|
"rotY": 269.9993,
|
||
|
"rotZ": 0.0167709924,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Jack",
|
||
|
"Description": "Subject Zero",
|
||
|
"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": 633400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6334": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539004076/D680E76338FAD5424ADAA1BA030883DDF1CD0302/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539004236/EBF7849C19C86A7350E5421C295638356A6064E6/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "947614",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 13.7556992,
|
||
|
"posY": 1.1244359,
|
||
|
"posZ": -72.9234,
|
||
|
"rotX": 0.0208267756,
|
||
|
"rotY": 270.019165,
|
||
|
"rotZ": 0.0167943388,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Jack",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.5882353,
|
||
|
"g": 0.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "ebe685",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.41135,
|
||
|
"posY": 3.40079451,
|
||
|
"posZ": -72.7271,
|
||
|
"rotX": 0.8115527,
|
||
|
"rotY": 269.992859,
|
||
|
"rotZ": 358.939148,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Jack",
|
||
|
"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": 569400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5694": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036798556/D22B35B0E0E15066F690502A3FBF7D8182D6B67B/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036798681/B9022F36459BAF698CED972F86FFD3DDB00633B4/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "9042bf",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 14.1691751,
|
||
|
"posY": 3.40756154,
|
||
|
"posZ": -73.18658,
|
||
|
"rotX": 359.738983,
|
||
|
"rotY": 269.999023,
|
||
|
"rotZ": 0.378323525,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Terminus Bounty Hunter",
|
||
|
"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": 632100,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6321": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014570298/58ED1E651A5DE4D19622F0698F1594996D5BD285/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "be8d9a",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.5603113,
|
||
|
"posY": 3.40635872,
|
||
|
"posZ": -73.2274,
|
||
|
"rotX": 0.216595381,
|
||
|
"rotY": 270.001068,
|
||
|
"rotZ": 0.5849137,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Shockwave",
|
||
|
"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": 631800,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6318": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014568193/7BCE292D9783323A4D3D71738953FEBAA071C2ED/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "b9aa5d",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 10.0851011,
|
||
|
"posY": 1.1231029,
|
||
|
"posZ": -72.923,
|
||
|
"rotX": 0.0208394937,
|
||
|
"rotY": 270.002136,
|
||
|
"rotZ": 0.0167846382,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Kaidan Alenko",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.5882353,
|
||
|
"g": 0.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "f4a9f5",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.2790422,
|
||
|
"posY": 3.40459943,
|
||
|
"posZ": -73.10464,
|
||
|
"rotX": 359.712769,
|
||
|
"rotY": 269.996826,
|
||
|
"rotZ": 1.184156,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Kaidan Alenko",
|
||
|
"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": 571200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5712": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036813829/E66D864CC655AD4C61CA87473AC835FB82E330B1/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036813961/77F6ECB8B67577F497CFB6C3D5050759202EDAAE/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "85df78",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 9.874978,
|
||
|
"posY": 3.40717149,
|
||
|
"posZ": -72.92164,
|
||
|
"rotX": 0.305531651,
|
||
|
"rotY": 270.0002,
|
||
|
"rotZ": 0.04247487,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "L2 Flare-up",
|
||
|
"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": 631300,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6313": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014500127/0A9D5A2F741969E5D23DF928A5DB639CE207B211/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "236fd8",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.0217314,
|
||
|
"posY": 3.407305,
|
||
|
"posZ": -72.78372,
|
||
|
"rotX": 0.120314881,
|
||
|
"rotY": 269.999756,
|
||
|
"rotZ": 359.652832,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Barrier",
|
||
|
"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": 573800,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5738": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1768205409878036561/5289540D4C7C76B17F921573CCC084AAD0F65AD2/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "b6e8bc",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 6.336002,
|
||
|
"posY": 1.12174082,
|
||
|
"posZ": -72.9236,
|
||
|
"rotX": 0.0208361149,
|
||
|
"rotY": 270.0182,
|
||
|
"rotZ": 0.0167891942,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Miranda Lawson",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 0.5882353,
|
||
|
"g": 0.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "77fd26",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.37924051,
|
||
|
"posY": 3.40028048,
|
||
|
"posZ": -73.2871857,
|
||
|
"rotX": 0.07156477,
|
||
|
"rotY": 270.0008,
|
||
|
"rotZ": 1.28451943,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Miranda Lawson",
|
||
|
"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": 572100,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5721": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036834276/B46ACD6A73953E930B225F0E639D0A656CB8F213/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036834395/021B59BA96256AF42D17E3F0BD4CD509D19B387B/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "22205a",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 5.845026,
|
||
|
"posY": 3.40177274,
|
||
|
"posZ": -72.79778,
|
||
|
"rotX": 0.5343821,
|
||
|
"rotY": 269.998352,
|
||
|
"rotZ": 359.7631,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Self-Doubt",
|
||
|
"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": 631600,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6316": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014567240/42A3A96AEBF9D52BE2F77CD35F05A4038F65CD07/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "9b4b4d",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 5.89119339,
|
||
|
"posY": 3.402785,
|
||
|
"posZ": -72.88929,
|
||
|
"rotX": 0.5223828,
|
||
|
"rotY": 269.999817,
|
||
|
"rotZ": 359.949982,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Unshakeable",
|
||
|
"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": 632500,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6325": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014573271/C750624859609A5C2F3F2B69A1C41311CEAE1733/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "224b24",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.276602,
|
||
|
"posY": 1.316884,
|
||
|
"posZ": -84.7917,
|
||
|
"rotX": 0.0208086874,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.016771026,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Zaeed Massani",
|
||
|
"Description": "The Mercenary Veteran",
|
||
|
"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": 635700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6357": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925288103761001/EDCCB02F33E19BC902F3EC16C170668BDA3952EC/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014575436/0FF8B28670D9DE79FCF82F4FF829C3EB442C29CC/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "6235fb",
|
||
|
"Name": "Deck",
|
||
|
"Transform": {
|
||
|
"posX": 2.657306,
|
||
|
"posY": 1.33253348,
|
||
|
"posZ": -84.75749,
|
||
|
"rotX": 0.02080896,
|
||
|
"rotY": 270.000122,
|
||
|
"rotZ": 0.0167710762,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"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": false,
|
||
|
"Hands": false,
|
||
|
"SidewaysCard": false,
|
||
|
"DeckIDs": [
|
||
|
635100,
|
||
|
635000
|
||
|
],
|
||
|
"CustomDeck": {
|
||
|
"6351": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539112453/A4B2A113C893BB0136E67F4F8D649159B5F38A77/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014369356/1239EA1A55FCF5CC551035DB87E3076E6D87513A/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
},
|
||
|
"6350": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539106313/D15BE1A41211E1050826D38476EA054894E58C11/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014365242/E28E7A763B9071FFFEFD3646700B46A6B49D8C70/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "697106",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.657332,
|
||
|
"posY": 1.31555474,
|
||
|
"posZ": -84.7574539,
|
||
|
"rotX": 0.021142887,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.01568109,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Commander Shepard",
|
||
|
"Description": "The Spectre",
|
||
|
"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": 635100,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6351": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539112453/A4B2A113C893BB0136E67F4F8D649159B5F38A77/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014369356/1239EA1A55FCF5CC551035DB87E3076E6D87513A/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "d3fe81",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 2.7230556,
|
||
|
"posY": 1.356715,
|
||
|
"posZ": -84.9249649,
|
||
|
"rotX": 0.0165602248,
|
||
|
"rotY": 270.000031,
|
||
|
"rotZ": 0.0162038933,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Commander Shepard",
|
||
|
"Description": "The Spectre",
|
||
|
"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": 635000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6350": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539106313/D15BE1A41211E1050826D38476EA054894E58C11/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014365242/E28E7A763B9071FFFEFD3646700B46A6B49D8C70/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "570e85",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 2.69650078,
|
||
|
"posY": 1.11809444,
|
||
|
"posZ": -80.8667,
|
||
|
"rotX": 0.020829102,
|
||
|
"rotY": 270.0197,
|
||
|
"rotZ": 0.016789915,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Commander Shepard",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 1.0,
|
||
|
"g": 1.0,
|
||
|
"b": 1.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "4447d8",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.6839914,
|
||
|
"posY": 2.31639481,
|
||
|
"posZ": -91.44821,
|
||
|
"rotX": 0.02081067,
|
||
|
"rotY": 269.999146,
|
||
|
"rotZ": 0.0167708024,
|
||
|
"scaleX": 0.430228531,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.430228531
|
||
|
},
|
||
|
"Nickname": "Shepard skill table",
|
||
|
"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": 629300,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6293": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014408421/3D8AA26F69072A43389CA2997938140098221BA4/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014408421/3D8AA26F69072A43389CA2997938140098221BA4/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 1
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "99e1b2",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 4.80873632,
|
||
|
"posY": 2.32354975,
|
||
|
"posZ": -95.89553,
|
||
|
"rotX": 0.02080818,
|
||
|
"rotY": 270.000824,
|
||
|
"rotZ": 0.0167714637,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Commander Shepard",
|
||
|
"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": 566700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5667": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1669112186106084911/084BB70C557578E47EE12CFA3483F3532F09A1F2/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1669112186106085093/ADBA35070E5ED3BC8AB3FACA05C8100333B80339/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "83d936",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 5.9267025,
|
||
|
"posY": 2.32423043,
|
||
|
"posZ": -94.90972,
|
||
|
"rotX": 0.02080723,
|
||
|
"rotY": 270.000854,
|
||
|
"rotZ": 0.0167683922,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Commander Shepard",
|
||
|
"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": 555900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5559": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036935456/07129C8ECFCA11A43DC3187CDC5B76E6C82E1FEB/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036935664/8CAE99B4A66E3C098144F72E22FF8F17CE3609BA/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "db16e3",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 11.1889343,
|
||
|
"posY": 2.32639647,
|
||
|
"posZ": -95.14624,
|
||
|
"rotX": 0.0208083987,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.0167709086,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Futility",
|
||
|
"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": 629600,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6296": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014450496/9D534E08589D52754B15DE0169C97CFE1815B4A3/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "7174fb",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 3.10010886,
|
||
|
"posY": 2.46502829,
|
||
|
"posZ": -90.62391,
|
||
|
"rotX": 0.0208121762,
|
||
|
"rotY": 269.9856,
|
||
|
"rotZ": 0.01676515,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Inferno Armor",
|
||
|
"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": 627400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6274": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745008704410/1EADEAE632E17BF75CE936640567B06CC02904F5/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "fe3578",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 6.420102,
|
||
|
"posY": 1.11944556,
|
||
|
"posZ": -80.8671,
|
||
|
"rotX": 0.0208288264,
|
||
|
"rotY": 270.0186,
|
||
|
"rotZ": 0.016788641,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Zaeed Massani",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 1.0,
|
||
|
"g": 0.0,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "3946e7",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.078931,
|
||
|
"posY": 3.39533353,
|
||
|
"posZ": -81.03754,
|
||
|
"rotX": 0.963164151,
|
||
|
"rotY": 270.006378,
|
||
|
"rotZ": 0.7594957,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Zaeed Massani",
|
||
|
"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": 556300,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5563": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036956294/F0B53C1BCA0D6979FDBA0FC26A6A1D4A3DC61D3D/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036956459/F8313041F3F516F709B3F2302EB43B51E069C5DB/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "7b6224",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.26255274,
|
||
|
"posY": 3.40239382,
|
||
|
"posZ": -81.04706,
|
||
|
"rotX": 0.22034061,
|
||
|
"rotY": 270.0009,
|
||
|
"rotZ": 0.4577008,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Jessie",
|
||
|
"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": 630800,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6308": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014497884/3390562D455FF11F97047D908C14DCB58A15B036/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "ef49a5",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 6.250462,
|
||
|
"posY": 3.40319228,
|
||
|
"posZ": -80.75056,
|
||
|
"rotX": 0.254387021,
|
||
|
"rotY": 269.999451,
|
||
|
"rotZ": 359.697266,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Contingency Plan",
|
||
|
"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": 631400,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6314": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014438303/32C8B58F93413FF6710082FE85603A02BF5765E1/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "858c12",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 10.1693983,
|
||
|
"posY": 1.12080836,
|
||
|
"posZ": -80.8667,
|
||
|
"rotX": 0.02083384,
|
||
|
"rotY": 270.00116,
|
||
|
"rotZ": 0.01678241,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Urdnot Wrex",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 1.0,
|
||
|
"g": 0.0,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "905d36",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.1106329,
|
||
|
"posY": 3.40105152,
|
||
|
"posZ": -81.06112,
|
||
|
"rotX": 0.481683522,
|
||
|
"rotY": 270.005035,
|
||
|
"rotZ": 1.20094514,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Urdnot Wrex",
|
||
|
"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": 556200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5562": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036951835/AB468658A08084788B0FE435D33AF9C9BCD06A1B/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036952030/B09ACA9CCFC4258714BED6D834A658807B69F05C/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "ecc5a8",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.4404039,
|
||
|
"posY": 3.40442824,
|
||
|
"posZ": -80.80525,
|
||
|
"rotX": 359.687164,
|
||
|
"rotY": 269.9848,
|
||
|
"rotZ": 359.861267,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Rite of Authority",
|
||
|
"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": 628000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6280": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745008707938/F63C5FC6CD89F5B54CDD788EDD642E3E398BACD1/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "e1826f",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 9.853591,
|
||
|
"posY": 3.4028306,
|
||
|
"posZ": -81.01174,
|
||
|
"rotX": 0.40573737,
|
||
|
"rotY": 270.001282,
|
||
|
"rotZ": 0.3494322,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Krogan Diplomacy",
|
||
|
"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": 631200,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6312": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014499680/9A6441C592DD1535AEFA43DFA8BF739B74341381/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"GUID": "ce6963",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 10.0425014,
|
||
|
"posY": 1.3182503,
|
||
|
"posZ": -84.7966,
|
||
|
"rotX": 0.0208088756,
|
||
|
"rotY": 270.0,
|
||
|
"rotZ": 0.01677123,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Urdnot Wrex",
|
||
|
"Description": "The Battlemaster",
|
||
|
"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": 635600,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6356": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925288103760741/1AC03B6DF1AB594885AB74D390D5C5EECB4307C4/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745008708438/0AA68C6D9E0624A6FA102EE7F01872F55B3705EB/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "66a75f",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.7254,
|
||
|
"posY": 1.31958771,
|
||
|
"posZ": -84.7972,
|
||
|
"rotX": 0.0208085887,
|
||
|
"rotY": 270.000122,
|
||
|
"rotZ": 0.0167713929,
|
||
|
"scaleX": 0.7828339,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.7828339
|
||
|
},
|
||
|
"Nickname": "Javik",
|
||
|
"Description": "The Vengeful Ancient",
|
||
|
"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": 633700,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6337": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863925068539005441/AC3002C84C923FC20E3986A67F78B3F3DD2EBF7F/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014497285/DBA3DC5FC1D56E531FFA4228E03CE408FFCAB2C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "80fbd7",
|
||
|
"Name": "Bag",
|
||
|
"Transform": {
|
||
|
"posX": 13.838398,
|
||
|
"posY": 1.12214112,
|
||
|
"posZ": -80.8671,
|
||
|
"rotX": 0.0208233185,
|
||
|
"rotY": 270.0187,
|
||
|
"rotZ": 0.0167971738,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Javik",
|
||
|
"Description": "",
|
||
|
"GMNotes": "",
|
||
|
"ColorDiffuse": {
|
||
|
"r": 1.0,
|
||
|
"g": 0.0,
|
||
|
"b": 0.0
|
||
|
},
|
||
|
"Tags": [
|
||
|
"mei_memory_object"
|
||
|
],
|
||
|
"LayoutGroupSortIndex": 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": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": "",
|
||
|
"ContainedObjects": [
|
||
|
{
|
||
|
"GUID": "586edb",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 14.5906429,
|
||
|
"posY": 3.39785242,
|
||
|
"posZ": -80.79053,
|
||
|
"rotX": 359.219177,
|
||
|
"rotY": 270.001617,
|
||
|
"rotZ": 359.788422,
|
||
|
"scaleX": 0.6,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 0.6
|
||
|
},
|
||
|
"Nickname": "Javik",
|
||
|
"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": 570900,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"5709": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036809969/2D276FA53F520BD523A33E32711D3481F8A1862F/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1667985852036810072/DDD5C68FE84DE1CFC56F7090B556EAE93195C091/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "4abd0c",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.8242645,
|
||
|
"posY": 3.407168,
|
||
|
"posZ": -80.93962,
|
||
|
"rotX": 0.05602627,
|
||
|
"rotY": 270.005432,
|
||
|
"rotZ": 0.206702977,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Cornered Prey",
|
||
|
"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": 629000,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6290": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014366181/55D9092D666C5728C5793F3C5BEACEAFF2BE1CF3/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"BackIsHidden": true,
|
||
|
"UniqueBack": false,
|
||
|
"Type": 0
|
||
|
}
|
||
|
},
|
||
|
"LuaScript": "",
|
||
|
"LuaScriptState": "",
|
||
|
"XmlUI": ""
|
||
|
},
|
||
|
{
|
||
|
"GUID": "c9239b",
|
||
|
"Name": "CardCustom",
|
||
|
"Transform": {
|
||
|
"posX": 13.701333,
|
||
|
"posY": 3.405616,
|
||
|
"posZ": -81.02585,
|
||
|
"rotX": 0.211990178,
|
||
|
"rotY": 270.001617,
|
||
|
"rotZ": 0.418030053,
|
||
|
"scaleX": 1.0,
|
||
|
"scaleY": 1.0,
|
||
|
"scaleZ": 1.0
|
||
|
},
|
||
|
"Nickname": "Dark Channel",
|
||
|
"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": 629100,
|
||
|
"SidewaysCard": false,
|
||
|
"CustomDeck": {
|
||
|
"6291": {
|
||
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1863924745014366635/536D5BEA73CB1C8ECDE5FF9593A7DE7D8FCF6D6E/",
|
||
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1483326039580035340/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
||
|
"NumWidth": 1,
|
||
|
"NumHeight": 1,
|
||
|
"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
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|