This commit is contained in:
Adam Goldsmith 2022-12-13 14:02:30 -05:00
parent c99dd7ab7a
commit 5fdeb3c6a4
3380 changed files with 41971 additions and 111264 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -34,9 +34,9 @@ Text:
fontSize: 56 fontSize: 56
Tooltip: true Tooltip: true
Transform: Transform:
posX: 42.41 posX: 36.91
posY: 1.5 posY: 1.57
posZ: -11.36 posZ: 28.79
rotX: 90.0 rotX: 90.0
rotY: 90.0 rotY: 90.0
rotZ: 0.0 rotZ: 0.0

View File

@ -34,7 +34,7 @@ Text:
fontSize: 64 fontSize: 64
Tooltip: true Tooltip: true
Transform: Transform:
posX: -26.79 posX: -26.78
posY: 1.5 posY: 1.5
posZ: 84.41 posZ: 84.41
rotX: 90.0 rotX: 90.0

View File

@ -38,7 +38,7 @@ Transform:
posY: 1.5 posY: 1.5
posZ: 77.59 posZ: 77.59
rotX: 90.0 rotX: 90.0
rotY: 89.83 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -38,7 +38,7 @@ Transform:
posY: 1.5 posY: 1.5
posZ: 70.71 posZ: 70.71
rotX: 90.0 rotX: 90.0
rotY: 89.83 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -38,7 +38,7 @@ Transform:
posY: 1.5 posY: 1.5
posZ: 70.71 posZ: 70.71
rotX: 90.0 rotX: 90.0
rotY: 90.17 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -38,7 +38,7 @@ Transform:
posY: 1.5 posY: 1.5
posZ: 63.72 posZ: 63.72
rotX: 90.0 rotX: 90.0
rotY: 90.3 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -38,7 +38,7 @@ Transform:
posY: 1.5 posY: 1.5
posZ: 58.09 posZ: 58.09
rotX: 90.0 rotX: 90.0
rotY: 89.83 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -43,7 +43,7 @@ Transform:
posY: 1.32 posY: 1.32
posZ: 59.06 posZ: 59.06
rotX: 90.0 rotX: 90.0
rotY: 90.52 rotY: 91.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -38,7 +38,7 @@ Transform:
posY: 1.5 posY: 1.5
posZ: 63.72 posZ: 63.72
rotX: 90.0 rotX: 90.0
rotY: 89.83 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -34,7 +34,7 @@ Text:
fontSize: 64 fontSize: 64
Tooltip: true Tooltip: true
Transform: Transform:
posX: -17.9 posX: -17.89
posY: 1.5 posY: 1.5
posZ: 53.27 posZ: 53.27
rotX: 90.0 rotX: 90.0

View File

@ -38,7 +38,7 @@ Transform:
posY: 1.5 posY: 1.5
posZ: 84.58 posZ: 84.58
rotX: 90.0 rotX: 90.0
rotY: 89.83 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -39,7 +39,7 @@ Transform:
posY: 1.32 posY: 1.32
posZ: -69.11 posZ: -69.11
rotX: 90.0 rotX: 90.0
rotY: 90.17 rotY: 90.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -1,3 +1,50 @@
-- Bundled by luabundle {"version":"1.6.0"}
local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)
local loadingPlaceholder = {[{}] = true}
local register
local modules = {}
local require
local loaded = {}
register = function(name, body)
if not modules[name] then
modules[name] = body
end
end
require = function(name)
local loadedModule = loaded[name]
if loadedModule then
if loadedModule == loadingPlaceholder then
return nil
end
else
if not modules[name] then
if not superRequire then
local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name)
error('Tried to require ' .. identifier .. ', but no such module has been registered')
else
return superRequire(name)
end
end
loaded[name] = loadingPlaceholder
loadedModule = modules[name](require, loaded, register, modules)
loaded[name] = loadedModule
end
return loadedModule
end
return require, loaded, register, modules
end)(nil)
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
require("playercards/AllCardsBag")
end)
__bundle_register("playercards/AllCardsBag", function(require, _LOADED, __bundle_register, __bundle_modules)
-- Position to check for weaknesses. Everything with X and Z less -- Position to check for weaknesses. Everything with X and Z less
-- than these values (down and right on the table) will be checked -- than these values (down and right on the table) will be checked
@ -322,4 +369,6 @@ function isBasicWeakness(cardMetadata)
and cardMetadata.weakness and cardMetadata.weakness
and cardMetadata.basicWeaknessCount ~= nil and cardMetadata.basicWeaknessCount ~= nil
and cardMetadata.basicWeaknessCount > 0 and cardMetadata.basicWeaknessCount > 0
end end
end)
return __bundle_require("__root")

View File

@ -766,8 +766,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml' - !include 'Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml'
- !include 'Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml' - !include 'Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml'
- !include 'Bag All Player Cards 15bb07/Card Burglary bc3451.yaml' - !include 'Bag All Player Cards 15bb07/Card Burglary bc3451.yaml'
- !include "Bag All Player Cards 15bb07/Card The Tower \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - !include "Bag All Player Cards 15bb07/Card The Tower \u2219 XVI d5c93d.yaml"
\ XVI d5c93d.yaml"
- !include 'Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml' - !include 'Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml' - !include 'Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml'
- !include 'Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml' - !include 'Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml'
@ -775,33 +774,25 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml' - !include 'Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml' - !include 'Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml'
- !include 'Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml' - !include 'Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml'
- !include "Bag All Player Cards 15bb07/Card The World \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - !include "Bag All Player Cards 15bb07/Card The World \u2219 XXI (3) 372b5b.yaml"
\ XXI (3) 372b5b.yaml" - !include "Bag All Player Cards 15bb07/Card The Fool \u2219 0 (3) b74c69.yaml"
- !include "Bag All Player Cards 15bb07/Card The Fool \uFFFD\uFFFD\u201A\uFFFD\uFFFD\
\ 0 (3) b74c69.yaml"
- !include "Bag All Player Cards 15bb07/Card R\xEDastrad (1) f1f24e.yaml" - !include "Bag All Player Cards 15bb07/Card R\xEDastrad (1) f1f24e.yaml"
- !include "Bag All Player Cards 15bb07/Card Coup de Gr\xE2ce 2240f9.yaml" - !include "Bag All Player Cards 15bb07/Card Coup de Gr\xE2ce 2240f9.yaml"
- !include "Bag All Player Cards 15bb07/Card I've had worse\uFFFD\uFFFD\u201A\uFFFD\ - !include 'Bag All Player Cards 15bb07/Card I''ve had worse... (2) 76147b.yaml'
\uFFFD (2) 76147b.yaml"
- !include "Bag All Player Cards 15bb07/Card D\xE9j\xE0 Vu (5) 719a45.yaml" - !include "Bag All Player Cards 15bb07/Card D\xE9j\xE0 Vu (5) 719a45.yaml"
- !include 'Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml' - !include 'Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml' - !include 'Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml'
- !include "Bag All Player Cards 15bb07/Card The Star \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - !include "Bag All Player Cards 15bb07/Card The Star \u2219 XVII (3) a77ce0.yaml"
\ XVII (3) a77ce0.yaml"
- !include 'Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml' - !include 'Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml' - !include 'Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml' - !include 'Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml'
- !include 'Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml' - !include 'Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml'
- !include "Bag All Player Cards 15bb07/Card The Hierophant \uFFFD\uFFFD\u201A\uFFFD\ - !include "Bag All Player Cards 15bb07/Card The Hierophant \u2219 V (3) 20c8a9.yaml"
\uFFFD V (3) 20c8a9.yaml"
- !include 'Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml' - !include 'Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml'
- !include "Bag All Player Cards 15bb07/Card Death \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - !include "Bag All Player Cards 15bb07/Card Death \u2219 XIII (1) 2e5b03.yaml"
\ XIII (1) 2e5b03.yaml"
- !include 'Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml' - !include 'Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml'
- !include "Bag All Player Cards 15bb07/Card The Moon \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - !include "Bag All Player Cards 15bb07/Card The Moon \u2219 XVIII (1) e80bd8.yaml"
\ XVIII (1) e80bd8.yaml" - !include "Bag All Player Cards 15bb07/Card The Devil \u2219 XV 7bcaf3.yaml"
- !include "Bag All Player Cards 15bb07/Card The Devil \uFFFD\uFFFD\u201A\uFFFD\uFFFD\
\ XV 7bcaf3.yaml"
- !include 'Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml' - !include 'Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml'
- !include 'Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml' - !include 'Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml' - !include 'Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml'
@ -1262,8 +1253,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml' - !include 'Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml'
- !include 'Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml' - !include 'Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml'
- !include 'Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml' - !include 'Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml'
- !include "Bag All Player Cards 15bb07/Card I've had worse\uFFFD\uFFFD\u201A\uFFFD\ - !include 'Bag All Player Cards 15bb07/Card I''ve had worse (4) 3b6834.yaml'
\uFFFD (4) 3b6834.yaml"
- !include 'Bag All Player Cards 15bb07/Card Machete 86ee68.yaml' - !include 'Bag All Player Cards 15bb07/Card Machete 86ee68.yaml'
- !include 'Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml' - !include 'Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml' - !include 'Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml'
@ -1550,6 +1540,8 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml' - !include 'Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml' - !include 'Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml' - !include 'Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml'
- !include "Bag All Player Cards 15bb07/Card Isamara Ordo\xF1ez 860cd7.yaml"
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: '' GMNotes: ''
@ -1575,9 +1567,9 @@ Transform:
posX: 77.89 posX: 77.89
posY: 1.04 posY: 1.04
posZ: 27.03 posZ: 27.03
rotX: 0.02 rotX: 0.0
rotY: 0.0 rotY: 0.0
rotZ: 359.99 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 550820 CardID: 550820
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5508': '5508':
BackIsHidden: true BackIsHidden: true
@ -21,10 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"60522\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"60522\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\
,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\
,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\
agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"\ count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \
Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator\ \ ],\n \"cycle\": \"Investigator Packs\"\n}"
\ Packs\"\n}"
GUID: f8a977 GUID: f8a977
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -42,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.0 posX: 9.0
posY: 3.87 posY: 3.87
posZ: -16.69 posZ: -16.7
rotX: 0.39 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 359.9 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 550803 CardID: 550803
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5508': '5508':
BackIsHidden: true BackIsHidden: true
@ -21,9 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\
,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\
,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ ,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\"\
uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\"\ : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator\
: \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" \ Packs\"\n}"
GUID: 101a41 GUID: 101a41
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 4.76 posY: 4.76
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 589404 CardID: 589404
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5894': '5894':
BackIsHidden: true BackIsHidden: true
@ -21,10 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\
,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\
,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\
agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"\ count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \
Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth\ \ ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
\ Conspiracy\"\n}"
GUID: 4425b5 GUID: 4425b5
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -42,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.13 posX: 9.13
posY: 5.59 posY: 5.59
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 587219 CardID: 587219
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5872': '5872':
BackIsHidden: true BackIsHidden: true
@ -21,9 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\
,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\
,\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"\ ,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\
uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\"\ : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth\
: \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" \ Conspiracy\"\n}"
GUID: a5087b GUID: a5087b
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.04 posX: 9.04
posY: 3.91 posY: 3.91
posZ: -16.7 posZ: -16.7
rotX: 359.83 rotX: 0.0
rotY: 269.96 rotY: 270.0
rotZ: 0.07 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 440922 CardID: 440922
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4409': '4409':
BackIsHidden: true BackIsHidden: true
@ -21,9 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"52001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"52001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n\
\ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\"\ \ \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 6,\n \"type\"\
: [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\": \"\ : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to\
resource\"\n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\n}" \ the Path to Carcosa\"\n}"
GUID: c026c9 GUID: c026c9
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.14 posX: 9.14
posY: 3.73 posY: 3.73
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.01 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 226328 CardID: 226328
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2263': '2263':
BackIsHidden: true BackIsHidden: true
@ -21,9 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"03020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n\
\ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\"\ \ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\"\
: [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\": \"\ : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path\
resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}" \ to Carcosa\"\n}"
GUID: b0f851 GUID: b0f851
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 3.76 posY: 3.76
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 450624 CardID: 450624
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4506': '4506':
BackIsHidden: true BackIsHidden: true
@ -21,9 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n\
\ \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\"\ \ \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\"\
: [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"\ : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\
resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" \n}"
GUID: 41e560 GUID: 41e560
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.13 posX: 9.13
posY: 5.1 posY: 5.1
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 583200 CardID: 583200
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5832': '5832':
BackIsHidden: true BackIsHidden: true
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false UniqueBack: false
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n\
\ \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\"\ \ \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\"\
: [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"\ : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\
resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" \n}"
GUID: c32e40 GUID: c32e40
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.15 posX: 9.15
posY: 4.16 posY: 4.16
posZ: -16.73 posZ: -16.73
rotX: 359.93 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 359.98 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 315248 CardID: 315248
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3152': '3152':
BackIsHidden: true BackIsHidden: true
@ -21,10 +21,10 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03234\",\n \"alternate_ids\": [\n \"01688\"\n ],\n \ GMNotes: "{\n \"id\": \"03234\",\n \"alternate_ids\": [\n \"01688\"\n ],\n \
\ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 2,\n\ \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 2,\n\
\ \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \ \ \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"\
\ \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\"\ agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"\
: [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"\ Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to\
resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}" \ Carcosa\"\n}"
GUID: f57af7 GUID: f57af7
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -42,16 +42,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 29.34 posX: 29.34
posY: 3.37 posY: 3.37
posZ: -54.31 posZ: -54.31
rotX: 0.08 rotX: 0.0
rotY: 269.99 rotY: 270.0
rotZ: 0.01 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 368628 CardID: 368628
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3686': '3686':
BackIsHidden: true BackIsHidden: true
@ -21,10 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01047\",\n \"alternate_ids\": [\n \"01547\"\n ],\n \ GMNotes: "{\n \"id\": \"01047\",\n \"alternate_ids\": [\n \"01547\"\n ],\n \
\ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n\ \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n\
\ \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \ \ \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"\
\ \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\"\ uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\"\
: 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"\ : \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}"
cycle\": \"Core\"\n}"
GUID: fe2db3 GUID: fe2db3
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -42,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 29.34 posX: 29.34
posY: 3.37 posY: 3.37
posZ: -54.31 posZ: -54.31
rotX: 0.08 rotX: 0.0
rotY: 270.0 rotY: 270.0
rotZ: 0.01 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 226347 CardID: 226347
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2263': '2263':
BackIsHidden: true BackIsHidden: true
@ -21,10 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"03190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n\
\ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\"\
: 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \ : 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"\
\ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n\ cycle\": \"The Path to Carcosa\"\n}"
}"
GUID: fe0cc0 GUID: fe0cc0
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -42,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.14 posX: 9.14
posY: 3.68 posY: 3.68
posZ: -16.72 posZ: -16.73
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 226330 CardID: 226330
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2263': '2263':
BackIsHidden: true BackIsHidden: true
@ -21,10 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01016\",\n \"alternate_ids\": [\n \"01516\"\n ],\n \ GMNotes: "{\n \"id\": \"01016\",\n \"alternate_ids\": [\n \"01516\"\n ],\n \
\ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\"\ \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\"\
: 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\"\ : 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"agilityIcons\": 1,\n \"uses\"\
: false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \ : [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"\
\ \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ resource\"\n }\n ],\n \"cycle\": \"Core\"\n}"
: \"Core\"\n}"
GUID: 12660b GUID: 12660b
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -42,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 19.45 posX: 19.45
posY: 3.37 posY: 3.37
posZ: -56.62 posZ: -56.62
rotX: 359.42 rotX: 359.0
rotY: 270.03 rotY: 270.0
rotZ: 359.77 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 292813 CardID: 292813
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2928': '2928':
BackIsHidden: true BackIsHidden: true
@ -21,9 +21,9 @@ Description: Guardian
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05186\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"05186\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 6,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ ,\n \"cost\": 6,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\
,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"\ ,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 5,\n \"type\"\
uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\"\ : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle\
: \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" \ Undone\"\n}"
GUID: b492cb GUID: b492cb
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.16 posX: 9.16
posY: 3.9 posY: 3.9
posZ: -16.73 posZ: -16.73
rotX: 359.93 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 359.96 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 292915 CardID: 292915
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2929': '2929':
BackIsHidden: true BackIsHidden: true
@ -21,10 +21,9 @@ Description: Rogue
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\
,\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ ,\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\
,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\
agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"\ count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \
Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\ \ ],\n \"cycle\": \"The Circle Undone\"\n}"
\n}"
GUID: d4dbc7 GUID: d4dbc7
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -42,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.03 posX: 9.03
posY: 3.85 posY: 3.85
posZ: -16.7 posZ: -16.7
rotX: 359.77 rotX: 0.0
rotY: 269.99 rotY: 270.0
rotZ: 0.05 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 277608 CardID: 277608
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2776': '2776':
BackIsHidden: true BackIsHidden: true
@ -21,9 +21,9 @@ Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\"\ GMNotes: "{\n \"id\": \"05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\"\
,\n \"cost\": 6,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ ,\n \"cost\": 6,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\
,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ ,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\"\
uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\"\ : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle\
: \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" \ Undone\"\n}"
GUID: 2c6509 GUID: 2c6509
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 5.35 posY: 5.35
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 379038 CardID: 379038
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3790': '3790':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"08048\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"08048\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\
,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"permanent\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"combatIcons\"\
: false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}"
\ \"cycle\": \"Edge of the Earth\"\n}"
GUID: 5210c2 GUID: 5210c2
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.2 posX: 9.2
posY: 2.07 posY: 2.07
posZ: -16.74 posZ: -16.74
rotX: 359.93 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 359.98 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 368844 CardID: 368844
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3688': '3688':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03238\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"03238\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ ,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"willpowerIcons\": 1,\n \"\
: false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The\ intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}"
\ Path to Carcosa\"\n}"
GUID: 0edef1 GUID: 0edef1
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.0 posX: 9.0
posY: 3.71 posY: 3.71
posZ: -16.69 posZ: -16.69
rotX: 359.95 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.01 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 368812 CardID: 368812
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3688': '3688':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}"
: 1,\n \"cycle\": \"The Dunwich Legacy\"\n}"
GUID: 3f3488 GUID: 3f3488
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.01 posX: 9.01
posY: 3.72 posY: 3.72
posZ: -16.7 posZ: -16.7
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 447733 CardID: 447733
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4477': '4477':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Blessed. Fortune.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Blessed. Fortune.\",\n \"wildIcons\"\
: false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ : 1,\n \"cycle\": \"The Dream-Eaters\"\n}"
\n}"
GUID: f21109 GUID: f21109
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.04 posX: 9.04
posY: 3.93 posY: 3.93
posZ: -16.7 posZ: -16.7
rotX: 359.81 rotX: 0.0
rotY: 269.96 rotY: 270.0
rotZ: 0.09 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 368837 CardID: 368837
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3688': '3688':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"03156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path\ : 1,\n \"cycle\": \"The Path to Carcosa\"\n}"
\ to Carcosa\"\n}"
GUID: 4cfcc7 GUID: 4cfcc7
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 78.51 posX: 78.51
posY: 1.06 posY: 1.06
posZ: 27.14 posZ: 27.14
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 550821 CardID: 550821
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5508': '5508':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"60523\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"60523\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\"\ ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ : 1,\n \"cycle\": \"Investigator Packs\"\n}"
\ Packs\"\n}"
GUID: 71a760 GUID: 71a760
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 78.51 posX: 78.51
posY: 1.06 posY: 1.06
posZ: 27.14 posZ: 27.14
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.01 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 550811 CardID: 550811
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5508': '5508':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"60513\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"60513\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ : 1,\n \"cycle\": \"Investigator Packs\"\n}"
\ Packs\"\n}"
GUID: 48e516 GUID: 48e516
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 78.51 posX: 78.51
posY: 1.06 posY: 1.06
posZ: 27.14 posZ: 27.14
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 585500 CardID: 585500
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5855': '5855':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"07269-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"07269-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth\ : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
\ Conspiracy\"\n}"
GUID: 125f13 GUID: 125f13
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -43,12 +42,12 @@ Tags:
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.13 posX: 9.12
posY: 3.88 posY: 3.88
posZ: -16.72 posZ: -16.72
rotX: 0.17 rotX: 0.0
rotY: 269.81 rotY: 270.0
rotZ: 359.87 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 449608 CardID: 449608
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4496': '4496':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"07269\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"07269\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth\ : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
\ Conspiracy\"\n}"
GUID: '176836' GUID: '176836'
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 8.97 posX: 8.97
posY: 3.71 posY: 3.71
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 587214 CardID: 587214
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5872': '5872':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,7 @@ CustomDeck:
Description: Weakness Description: Weakness
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01515\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"01515\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\
,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Core\"\n}"
\ \"cycle\": \"Core\"\n}"
GUID: 35a7e9 GUID: 35a7e9
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +44,9 @@ Transform:
posX: 47.53 posX: 47.53
posY: 1.99 posY: 1.99
posZ: -99.22 posZ: -99.22
rotX: 0.02 rotX: 0.0
rotY: 269.99 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 375129 CardID: 375129
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3751': '3751':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,7 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"01015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\
,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Core\"\n}"
\ \"cycle\": \"Core\"\n}"
GUID: 79b4af GUID: 79b4af
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,8 +44,8 @@ Transform:
posX: 8.99 posX: 8.99
posY: 3.79 posY: 3.79
posZ: -16.69 posZ: -16.69
rotX: 359.99 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 536002 CardID: 536002
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5360': '5360':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: Advanced Description: Advanced
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"90040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"90040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\
,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\
\ \"cycle\": \"Standalone\"\n}" \n}"
GUID: 89fe92 GUID: 89fe92
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 78.69 posX: 78.69
posY: 3.33 posY: 3.33
posZ: 7.65 posZ: 7.65
rotX: 359.81 rotX: 0.0
rotY: 270.0 rotY: 270.0
rotZ: 0.43 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 4000 CardID: 4000
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'40': '40':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Ally. Believer. Description: Ally. Believer.
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\
,\n \"cost\": 4,\n \"traits\": \"Ally. Believer.\",\n \"permanent\": false,\n\ ,\n \"cost\": 4,\n \"traits\": \"Ally. Believer.\",\n \"willpowerIcons\": 1,\n\
\ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}"
wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}"
GUID: a4b514 GUID: a4b514
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 5.19 posY: 5.18
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 448839 CardID: 448839
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4488': '4488':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Library Intern Description: Library Intern
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\
,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\"\
: false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}"
\ 1,\n \"cycle\": \"The Dream-Eaters\"\n}"
GUID: 97e9ce GUID: 97e9ce
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.13 posX: 9.13
posY: 5.55 posY: 5.55
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 274606 CardID: 274606
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2746': '2746':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05038\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"05038\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\
,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"combatIcons\": 1,\n \"agilityIcons\"\
: false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle\ : 1,\n \"cycle\": \"The Circle Undone\"\n}"
\ Undone\"\n}"
GUID: '051742' GUID: '051742'
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.13 posX: 9.13
posY: 3.79 posY: 3.79
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 232107 CardID: 232107
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2321': '2321':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ GMNotes: "{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\
,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\
: false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
\ \"cycle\": \"The Innsmouth Conspiracy\"\n}"
GUID: a2d392 GUID: a2d392
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.1 posX: 9.1
posY: 3.68 posY: 3.68
posZ: -16.71 posZ: -16.71
rotX: 359.91 rotX: 0.0
rotY: 269.87 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 537608 CardID: 537608
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5376': '5376':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: Weakness Description: Weakness
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"04041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\
,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten\
\ \"cycle\": \"The Forgotten Age\"\n}" \ Age\"\n}"
GUID: 85e7d9 GUID: 85e7d9
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 8.97 posX: 8.97
posY: 4.21 posY: 4.21
posZ: -16.69 posZ: -16.69
rotX: 359.91 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 583332 CardID: 583332
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5833': '5833':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Basic Weakness Description: Basic Weakness
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\
,\n \"traits\": \"Humanoid. Cultist. Cursed.\",\n \"permanent\": false,\n \"\ ,\n \"traits\": \"Humanoid. Cultist. Cursed.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\
weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\ : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
\n}"
GUID: ef91a9 GUID: ef91a9
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.01 posX: 9.01
posY: 3.74 posY: 3.74
posZ: -16.7 posZ: -16.7
rotX: 0.78 rotX: 1.0
rotY: 270.01 rotY: 270.0
rotZ: 359.81 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 450617 CardID: 450617
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4506': '4506':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"02266-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"02266-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\
,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\":\ ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"cycle\": \"The\
\ false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}" \ Dunwich Legacy\"\n}"
GUID: e5d5f0 GUID: e5d5f0
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 9.13 posX: 9.13
posY: 3.9 posY: 3.9
posZ: -16.72 posZ: -16.72
rotX: 0.18 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 359.86 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 315252 CardID: 315252
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3152': '3152':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\
,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\":\ ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"cycle\": \"The\
\ false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}" \ Dunwich Legacy\"\n}"
GUID: 074858 GUID: 074858
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 9.13 posX: 9.13
posY: 4.01 posY: 4.01
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 318703 CardID: 318703
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3187': '3187':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: The Fateful Step Description: The Fateful Step
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\
,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\":\ ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The\
\ false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" \ Circle Undone\"\n}"
GUID: 52a677 GUID: 52a677
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -39,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 5.27 posY: 5.27
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 431009 CardID: 431009
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4310': '4310':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: Let Your Arrow Fly True Description: Let Your Arrow Fly True
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\":\ ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The\
\ false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" \ Circle Undone\"\n}"
GUID: c4d436 GUID: c4d436
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -39,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 4.18 posY: 4.18
posZ: -16.69 posZ: -16.69
rotX: 359.91 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 232941 CardID: 232941
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2329': '2329':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: Madness. Description: Madness.
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"02178\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"02178\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\
,\n \"cost\": 0,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\"\ ,\n \"cost\": 0,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\"\
: true,\n \"cycle\": \"The Dunwich Legacy\"\n}" : \"The Dunwich Legacy\"\n}"
GUID: fb943f GUID: fb943f
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 9.04 posX: 9.04
posY: 3.93 posY: 3.93
posZ: -16.7 posZ: -16.7
rotX: 359.81 rotX: 0.0
rotY: 269.96 rotY: 270.0
rotZ: 0.09 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 274607 CardID: 274607
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2746': '2746':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05037\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"05037\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Gambit.\",\n \"permanent\"\ ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Gambit.\",\n \"combatIcons\"\
: false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Circle\ : 2,\n \"cycle\": \"The Circle Undone\"\n}"
\ Undone\"\n}"
GUID: 0bea17 GUID: 0bea17
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.02 posX: 9.02
posY: 4.0 posY: 4.0
posZ: -16.7 posZ: -16.7
rotX: 359.83 rotX: 0.0
rotY: 270.0 rotY: 270.0
rotZ: 0.04 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 315232 CardID: 315232
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3152': '3152':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"02110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"02110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\
,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ ,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\
: false,\n \"cycle\": \"The Dunwich Legacy\"\n}" : \"The Dunwich Legacy\"\n}"
GUID: 731d2a GUID: 731d2a
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -39,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.14 posX: 9.14
posY: 3.68 posY: 3.68
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 368850 CardID: 368850
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3688': '3688':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,9 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04202\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"04202\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten\
\ \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" \ Age\"\n}"
GUID: c077bf GUID: c077bf
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +46,9 @@ Transform:
posX: 9.14 posX: 9.14
posY: 3.7 posY: 3.7
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.01 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 378618 CardID: 378618
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3786': '3786':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,9 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 7,\n \"level\": 5,\n \"traits\": \"Ally. Agency.\",\n \"permanent\"\ ,\n \"cost\": 7,\n \"level\": 5,\n \"traits\": \"Ally. Agency.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ : 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle\
: 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" \ Undone\"\n}"
GUID: d6eda3 GUID: d6eda3
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +40,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 4.22 posY: 4.22
posZ: -16.69 posZ: -16.69
rotX: 359.91 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 379006 CardID: 379006
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3790': '3790':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"09010\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"09010\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\
,\n \"traits\": \"Humanoid. Coterie. Detective.\",\n \"permanent\": false,\n \ ,\n \"traits\": \"Humanoid. Coterie. Detective.\",\n \"weakness\": true,\n \"\
\ \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\n}" cycle\": \"The Scarlet Keys\"\n}"
GUID: 95b0cf GUID: 95b0cf
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -39,15 +39,15 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- ScenarioCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 17.48 posX: 17.48
posY: 2.21 posY: 2.21
posZ: 60.19 posZ: 60.19
rotX: 0.02 rotX: 0.0
rotY: 270.0 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 535906 CardID: 535906
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5359': '5359':
BackIsHidden: true BackIsHidden: true
@ -39,17 +39,18 @@ SidewaysCard: true
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- Investigator
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 18.45 posX: 18.45
posY: 1.53 posY: 1.52
posZ: -73.09 posZ: -73.09
rotX: 359.77 rotX: 0.0
rotY: 180.0 rotY: 180.0
rotZ: 0.07 rotZ: 0.0
scaleX: 1.1 scaleX: 1.15
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.1 scaleZ: 1.15
Value: 0 Value: 0
XmlUI: '' XmlUI: ''

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 535905 CardID: 535905
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5359': '5359':
BackIsHidden: true BackIsHidden: true
@ -39,17 +39,18 @@ SidewaysCard: true
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- Investigator
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 87.05 posX: 87.05
posY: 2.12 posY: 2.12
posZ: -78.51 posZ: -78.51
rotX: 355.43 rotX: 355.0
rotY: 180.0 rotY: 180.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.1 scaleX: 1.15
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.1 scaleZ: 1.15
Value: 0 Value: 0
XmlUI: '' XmlUI: ''

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 535904 CardID: 535904
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5359': '5359':
BackIsHidden: true BackIsHidden: true
@ -39,17 +39,18 @@ SidewaysCard: true
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- Investigator
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 18.45 posX: 18.45
posY: 1.29 posY: 1.29
posZ: -73.09 posZ: -73.09
rotX: 0.02 rotX: 0.0
rotY: 179.99 rotY: 180.0
rotZ: 359.98 rotZ: 0.0
scaleX: 1.1 scaleX: 1.15
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.1 scaleZ: 1.15
Value: 0 Value: 0
XmlUI: '' XmlUI: ''

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 535603 CardID: 535603
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5356': '5356':
BackIsHidden: true BackIsHidden: true
@ -40,6 +40,7 @@ SidewaysCard: true
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- Investigator
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
@ -49,8 +50,8 @@ Transform:
rotX: 0.0 rotX: 0.0
rotY: 180.0 rotY: 180.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.1 scaleX: 1.15
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.1 scaleZ: 1.15
Value: 0 Value: 0
XmlUI: '' XmlUI: ''

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 587403 CardID: 587403
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5874': '5874':
BackIsHidden: true BackIsHidden: true
@ -19,7 +19,7 @@ CustomDeck:
UniqueBack: true UniqueBack: true
Description: The Waitress Description: The Waitress
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01004-r\",\n \"type\": \"Investigator\",\n \"class\": \"\ GMNotes: "{\n \"id\": \"01504\",\n \"type\": \"Investigator\",\n \"class\": \"\
Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\"\ Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\"\
: 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}" : 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}"
GUID: 6797bb GUID: 6797bb
@ -39,17 +39,18 @@ SidewaysCard: true
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- Investigator
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 45.75 posX: 45.75
posY: 1.99 posY: 1.99
posZ: -116.88 posZ: -116.88
rotX: 0.02 rotX: 0.0
rotY: 179.96 rotY: 180.0
rotZ: 359.98 rotZ: 0.0
scaleX: 1.0 scaleX: 1.15
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.15
Value: 0 Value: 0
XmlUI: '' XmlUI: ''

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 587103 CardID: 587103
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5871': '5871':
BackIsHidden: true BackIsHidden: true
@ -19,8 +19,7 @@ CustomDeck:
UniqueBack: true UniqueBack: true
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01004-revised-m\",\n \"type\": \"Minicard\",\n \"traits\"\ GMNotes: "{\n \"id\": \"01504-m\",\n \"type\": \"Minicard\"\n}"
: \"\"\n}"
GUID: 8c997c GUID: 8c997c
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -38,15 +37,15 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard - Minicard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 45.32 posX: 45.32
posY: 1.99 posY: 1.99
posZ: -105.18 posZ: -105.18
rotX: 0.02 rotX: 0.0
rotY: 269.98 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 0.6 scaleX: 0.6
scaleY: 1.0 scaleY: 1.0
scaleZ: 0.6 scaleZ: 0.6

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 258803 CardID: 258803
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2588': '2588':
BackIsHidden: true BackIsHidden: true
@ -19,8 +19,7 @@ CustomDeck:
UniqueBack: true UniqueBack: true
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ GMNotes: "{\n \"id\": \"01004-m\",\n \"type\": \"Minicard\"\n}"
\n}"
GUID: e53693 GUID: e53693
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -38,15 +37,15 @@ SidewaysCard: false
Snap: false Snap: false
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard - Minicard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 29.14 posX: 29.14
posY: 3.37 posY: 3.37
posZ: -59.35 posZ: -59.35
rotX: 0.31 rotX: 0.0
rotY: 269.98 rotY: 270.0
rotZ: 1.49 rotZ: 1.0
scaleX: 0.6 scaleX: 0.6
scaleY: 1.0 scaleY: 1.0
scaleZ: 0.6 scaleZ: 0.6

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 271013 CardID: 271013
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2710': '2710':
BackIsHidden: true BackIsHidden: true
@ -40,17 +40,18 @@ SidewaysCard: true
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- Investigator
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 18.45 posX: 18.45
posY: 1.88 posY: 1.88
posZ: -73.09 posZ: -73.09
rotX: 0.02 rotX: 0.0
rotY: 180.0 rotY: 180.0
rotZ: 359.98 rotZ: 0.0
scaleX: 1.1 scaleX: 1.15
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.1 scaleZ: 1.15
Value: 0 Value: 0
XmlUI: '' XmlUI: ''

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 259813 CardID: 259813
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2598': '2598':
BackIsHidden: true BackIsHidden: true
@ -19,8 +19,7 @@ CustomDeck:
UniqueBack: true UniqueBack: true
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ GMNotes: "{\n \"id\": \"03004-m\",\n \"type\": \"Minicard\"\n}"
\n}"
GUID: 6a9578 GUID: 6a9578
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -38,15 +37,15 @@ SidewaysCard: false
Snap: false Snap: false
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard - Minicard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 21.23 posX: 21.23
posY: 1.68 posY: 1.68
posZ: -18.15 posZ: -18.15
rotX: 359.91 rotX: 0.0
rotY: 269.95 rotY: 270.0
rotZ: 0.09 rotZ: 0.0
scaleX: 0.6 scaleX: 0.6
scaleY: 1.0 scaleY: 1.0
scaleZ: 0.6 scaleZ: 0.6

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 379033 CardID: 379033
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3790': '3790':
BackIsHidden: true BackIsHidden: true
@ -20,29 +20,27 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"09040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"09040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\
,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \
\ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ \ \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \
\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Mending Distillate\"\ \ \"name\": \"Mending Distillate\",\n \"xp\": 1,\n \"text\": \"Add this\
,\n \"xp\": 1,\n \"text\": \"Add this option: \uFFFD\u20AC\uFFFD? Heal\ \ option: \u201C\u27D0 Heal 2 damage.\u201D\"\n },\n {\n \"name\": \"\
\ 2 damage.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Calming Distillate\"\ Calming Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: \u201C\
,\n \"xp\": 1,\n \"text\": \"Add this option: \uFFFD\u20AC\uFFFD? Heal\ \u27D0 Heal 2 horror.\u201D\"\n },\n {\n \"name\": \"Enlightening Distillate\"\
\ 2 horror.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Enlightening Distillate\"\ ,\n \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0 Place 1 charge\
,\n \"xp\": 1,\n \"text\": \"Add this option: \uFFFD\u20AC\uFFFD? Place\ \ or secret on an asset you control.\u201D\"\n },\n {\n \"name\": \"\
\ 1 charge or secret on an asset you control.\uFFFD\u20AC?\"\n },\n {\n \ Quickening Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: \u201C\
\ \"name\": \"Quickening Distillate\",\n \"xp\": 1,\n \"text\": \"\ \u27D0 Move up to 2 times.\u201D\"\n },\n {\n \"name\": \"Refined\",\n\
Add this option: \uFFFD\u20AC\uFFFD? Move up to 2 times.\uFFFD\u20AC?\"\n },\n\ \ \"xp\": 2,\n \"text\": \"Alchemical Distillation enters play with 2\
\ {\n \"name\": \"Refined\",\n \"xp\": 2,\n \"text\": \"Alchemical\ \ additional supplies on it.\",\n \"replaces\": {\n \"uses\": [\n \
\ Distillation enters play with 2 additional supplies on it.\",\n \"replaces\"\ \ {\n \"count\": 5,\n \"type\": \"Supply\",\n \
: {\n \"uses\": [\n {\n \"count\": 5,\n \"\ \ \"token\": \"resource\"\n }\n ]\n }\n },\n {\n\
type\": \"Supply\",\n \"token\": \"resource\"\n }\n ]\n\ \ \"name\": \"Empowered\",\n \"xp\": 4,\n \"text\": \"When you initiate\
\ }\n },\n {\n \"name\": \"Empowered\",\n \"xp\": 4,\n \ \ this skill test, you may increase its difficulty by 2. If you do, increase the\
\ \"text\": \"When you initiate this skill test, you may increase its difficulty\ \ value of the effect granted by each option by 1 for this test.\"\n },\n \
\ by 2. If you do, increase the value of the effect granted by each option by 1\ \ {\n \"name\": \"Perfected\",\n \"xp\": 5,\n \"text\": \"If you\
\ for this test.\"\n },\n {\n \"name\": \"Perfected\",\n \"xp\"\ \ succeed by 2 or more, the chosen investigator may perform two different options\
: 5,\n \"text\": \"If you succeed by 2 or more, the chosen investigator may\ \ instead of one.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}"
\ perform two different options instead of one.\"\n }\n ],\n \"cycle\": \"\
The Scarlet Keys\"\n}"
GUID: 502a4d GUID: 502a4d
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -67,9 +65,9 @@ Transform:
posX: 16.67 posX: 16.67
posY: 3.34 posY: 3.34
posZ: 65.93 posZ: 65.93
rotX: 356.74 rotX: 357.0
rotY: 270.11 rotY: 270.0
rotZ: 356.46 rotZ: 356.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 444020 CardID: 444020
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4440': '4440':
BackIsHidden: true BackIsHidden: true
@ -20,11 +20,10 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ GMNotes: "{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\
,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\
\ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \
: 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\
\ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to\ : \"Return to the Path to Carcosa\"\n}"
\ Carcosa\"\n}"
GUID: 283e54 GUID: 283e54
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -42,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.16 posX: 9.16
posY: 3.97 posY: 3.97
posZ: -16.73 posZ: -16.73
rotX: 359.93 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 359.96 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 230320 CardID: 230320
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2303': '2303':
BackIsHidden: true BackIsHidden: true
@ -20,10 +20,10 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ GMNotes: "{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\
,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\
\ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \
\ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\
\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}" \n}"
GUID: 54832d GUID: 54832d
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.05 posX: 9.05
posY: 3.72 posY: 3.72
posZ: -16.71 posZ: -16.7
rotX: 359.74 rotX: 0.0
rotY: 269.95 rotY: 270.0
rotZ: 0.13 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 235600 CardID: 235600
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2356': '2356':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,9 @@ CustomDeck:
Description: Renowned Historian Description: Renowned Historian
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\
,\n \"cost\": 2,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n\ ,\n \"cost\": 2,\n \"traits\": \"Ally. Wayfarer.\",\n \"willpowerIcons\": 1,\n\
\ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\
wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" \n}"
GUID: c49b4b GUID: c49b4b
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +40,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 3.69 posY: 3.69
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 278010 CardID: 278010
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2780': '2780':
BackIsHidden: true BackIsHidden: true
@ -21,8 +21,7 @@ Description: Fearless Flatfoot
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\
,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Detective. Police.\",\n\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Detective. Police.\",\n\
\ \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"\ \ \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}"
cycle\": \"The Circle Undone\"\n}"
GUID: ae20e0 GUID: ae20e0
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.13 posX: 9.13
posY: 3.68 posY: 3.68
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 450620 CardID: 450620
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4506': '4506':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04309-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"04309-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\
,\n \"level\": 5,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ ,\n \"level\": 5,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 2,\n \"cycle\"\
: false,\n \"wildIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}" : \"The Forgotten Age\"\n}"
GUID: ff1dfe GUID: ff1dfe
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 9.12 posX: 9.12
posY: 4.01 posY: 4.01
posZ: -16.72 posZ: -16.72
rotX: 0.1 rotX: 0.0
rotY: 269.82 rotY: 270.0
rotZ: 359.91 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 265502 CardID: 265502
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2655': '2655':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04309\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"04309\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\
,\n \"level\": 5,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ ,\n \"level\": 5,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 2,\n \"cycle\"\
: false,\n \"wildIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}" : \"The Forgotten Age\"\n}"
GUID: 7d3a27 GUID: 7d3a27
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 8.97 posX: 8.97
posY: 4.71 posY: 4.71
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 545208 CardID: 545208
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5452': '5452':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"53009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"53009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}"
\ 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}"
GUID: 9e4e11 GUID: 9e4e11
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.01 posX: 9.01
posY: 3.67 posY: 3.67
posZ: -16.7 posZ: -16.7
rotX: 359.93 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 368856 CardID: 368856
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3688': '3688':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04313\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ GMNotes: "{\n \"id\": \"04313\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\
,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"wildIcons\"\
: false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten\ : 1,\n \"cycle\": \"The Forgotten Age\"\n}"
\ Age\"\n}"
GUID: 83c86b GUID: 83c86b
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.2 posX: 9.2
posY: 2.81 posY: 2.81
posZ: -16.73 posZ: -16.73
rotX: 0.02 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 359.46 rotZ: 359.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 230330 CardID: 230330
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2303': '2303':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Speaker to the Dead Description: Speaker to the Dead
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ GMNotes: "{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\
,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Sorcerer.\",\n \"intellectIcons\"\
: false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich\ : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}"
\ Legacy\"\n}"
GUID: 53867b GUID: 53867b
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.03 posX: 9.03
posY: 3.85 posY: 3.85
posZ: -16.7 posZ: -16.7
rotX: 359.77 rotX: 0.0
rotY: 269.99 rotY: 270.0
rotZ: 0.05 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 449600 CardID: 449600
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4496': '4496':
BackIsHidden: true BackIsHidden: true
@ -40,17 +40,18 @@ SidewaysCard: true
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- Investigator
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 18.45 posX: 18.45
posY: 1.85 posY: 1.85
posZ: -73.09 posZ: -73.09
rotX: 0.02 rotX: 0.0
rotY: 180.0 rotY: 180.0
rotZ: 359.98 rotZ: 0.0
scaleX: 1.1 scaleX: 1.15
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.1 scaleZ: 1.15
Value: 0 Value: 0
XmlUI: '' XmlUI: ''

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 553201 CardID: 553201
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5532': '5532':
BackIsHidden: true BackIsHidden: true
@ -19,8 +19,7 @@ CustomDeck:
UniqueBack: true UniqueBack: true
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"07002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ GMNotes: "{\n \"id\": \"07002-m\",\n \"type\": \"Minicard\"\n}"
\n}"
GUID: '155746' GUID: '155746'
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -38,15 +37,15 @@ SidewaysCard: false
Snap: false Snap: false
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard - Minicard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 21.23 posX: 21.23
posY: 1.89 posY: 1.89
posZ: -18.15 posZ: -18.15
rotX: 359.92 rotX: 0.0
rotY: 269.95 rotY: 270.0
rotZ: 0.04 rotZ: 0.0
scaleX: 0.6 scaleX: 0.6
scaleY: 1.0 scaleY: 1.0
scaleZ: 0.6 scaleZ: 0.6

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 226338 CardID: 226338
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2263': '2263':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ GMNotes: "{\n \"id\": \"03148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\
,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\"\ ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\
: false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}"
\ \"cycle\": \"The Path to Carcosa\"\n}"
GUID: a1fd61 GUID: a1fd61
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.12 posX: 9.12
posY: 4.07 posY: 4.07
posZ: -16.72 posZ: -16.72
rotX: 0.06 rotX: 0.0
rotY: 269.82 rotY: 270.0
rotZ: 359.93 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 846103 CardID: 846103
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'8461': '8461':
BackIsHidden: true BackIsHidden: true
@ -19,8 +19,7 @@ CustomDeck:
UniqueBack: true UniqueBack: true
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"09011-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ GMNotes: "{\n \"id\": \"09011-m\",\n \"type\": \"Minicard\"\n}"
\n}"
GUID: 458edc GUID: 458edc
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -38,15 +37,15 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard - Minicard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 78.27 posX: 78.27
posY: 1.06 posY: 1.06
posZ: 26.81 posZ: 26.81
rotX: 0.02 rotX: 0.0
rotY: 270.0 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 0.6 scaleX: 0.6
scaleY: 1.0 scaleY: 1.0
scaleZ: 0.6 scaleZ: 0.6

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 843403 CardID: 843403
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'8434': '8434':
BackIsHidden: true BackIsHidden: true
@ -21,7 +21,8 @@ Description: The Operator
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"09011\",\n \"type\": \"Investigator\",\n \"class\": \"\ GMNotes: "{\n \"id\": \"09011\",\n \"type\": \"Investigator\",\n \"class\": \"\
Mystic\",\n \"traits\": \"Chosen. Cursed.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\"\ Mystic\",\n \"traits\": \"Chosen. Cursed.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\"\
: 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3\n}" : 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Scarlet\
\ Keys\"\n}"
GUID: 4c2a3d GUID: 4c2a3d
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -39,17 +40,18 @@ SidewaysCard: true
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- Investigator
- PlayerCard - PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 78.65 posX: 78.65
posY: 3.32 posY: 3.32
posZ: 36.17 posZ: 36.17
rotX: 0.28 rotX: 0.0
rotY: 180.01 rotY: 180.0
rotZ: 359.82 rotZ: 0.0
scaleX: 1.0 scaleX: 1.15
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.15
Value: 0 Value: 0
XmlUI: '' XmlUI: ''

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 527400 CardID: 527400
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5274': '5274':
BackIsHidden: true BackIsHidden: true
@ -21,8 +21,7 @@ Description: Basic Weakness
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01096\",\n \"alternate_ids\": [\n \"01596\"\n ],\n \ GMNotes: "{\n \"id\": \"01096\",\n \"alternate_ids\": [\n \"01596\"\n ],\n \
\ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\
,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n\ ,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"Core\"\n}"
\ \"cycle\": \"Core\"\n}"
GUID: 2210c1 GUID: 2210c1
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 78.78 posX: 78.78
posY: 3.32 posY: 3.32
posZ: 26.97 posZ: 26.97
rotX: 359.54 rotX: 0.0
rotY: 269.99 rotY: 270.0
rotZ: 359.46 rotZ: 359.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 379042 CardID: 379042
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3790': '3790':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"09049\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"09049\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\
,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\
weakness\": false,\n \"wildIcons\": 1\n}" : \"The Scarlet Keys\"\n}"
GUID: 80285f GUID: 80285f
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -43,11 +43,11 @@ Tags:
Tooltip: true Tooltip: true
Transform: Transform:
posX: 16.67 posX: 16.67
posY: 3.39 posY: 3.38
posZ: 65.93 posZ: 65.93
rotX: 358.78 rotX: 359.0
rotY: 270.02 rotY: 270.0
rotZ: 358.67 rotZ: 359.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 374532 CardID: 374532
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3745': '3745':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\
,\n \"cost\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ ,\n \"cost\": 3,\n \"traits\": \"Talent.\",\n \"wildIcons\": 2,\n \"cycle\"\
: false,\n \"wildIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}" : \"The Path to Carcosa\"\n}"
GUID: 7b6ab5 GUID: 7b6ab5
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -39,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 4.58 posY: 4.58
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 368409 CardID: 368409
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3684': '3684':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03108\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"03108\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\
,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}"
\ \"cycle\": \"The Path to Carcosa\"\n}"
GUID: a8e495 GUID: a8e495
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +45,9 @@ Transform:
posX: 9.01 posX: 9.01
posY: 3.85 posY: 3.85
posZ: -16.7 posZ: -16.7
rotX: 359.9 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 589202 CardID: 589202
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5892': '5892':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"07303\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"07303\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\
,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\
: false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" : \"The Innsmouth Conspiracy\"\n}"
GUID: 7b7d14 GUID: 7b7d14
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -46,9 +46,9 @@ Transform:
posX: 78.51 posX: 78.51
posY: 1.06 posY: 1.06
posZ: 27.14 posZ: 27.14
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 454741 CardID: 454741
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4547': '4547':
BackIsHidden: true BackIsHidden: true
@ -20,10 +20,10 @@ CustomDeck:
Description: Item. Relic. Description: Item. Relic.
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\
,\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ ,\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \
weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\"\ \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\"\
: 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ : 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n\
\ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" \ \"cycle\": \"Standalone\"\n}"
GUID: 0ce113 GUID: 0ce113
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,15 +41,15 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.15 posX: 9.15
posY: 3.99 posY: 3.99
posZ: -16.73 posZ: -16.73
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 430639 CardID: 430639
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4306': '4306':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Unidentified Description: Unidentified
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\
,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\
: false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten\ : 1,\n \"cycle\": \"The Forgotten Age\"\n}"
\ Age\"\n}"
GUID: 9bc46e GUID: 9bc46e
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 4.16 posY: 4.16
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 545203 CardID: 545203
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5452': '5452':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Transient Thoughts Description: Transient Thoughts
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\
,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"agilityIcons\"\
: false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Return\ : 2,\n \"cycle\": \"Return to the Forgotten Age\"\n}"
\ to the Forgotten Age\"\n}"
GUID: 3289b0 GUID: 3289b0
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,15 +39,15 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.09 posX: 9.09
posY: 3.72 posY: 3.72
posZ: -16.71 posZ: -16.71
rotX: 359.94 rotX: 0.0
rotY: 269.88 rotY: 270.0
rotZ: 0.0 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 262202 CardID: 262202
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2622': '2622':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Knowledge of the Elders Description: Knowledge of the Elders
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\
,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\
: false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten\ : 2,\n \"cycle\": \"The Forgotten Age\"\n}"
\ Age\"\n}"
GUID: 863f91 GUID: 863f91
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.13 posX: 9.13
posY: 4.33 posY: 4.33
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 262201 CardID: 262201
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'2622': '2622':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Minds in Harmony Description: Minds in Harmony
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ GMNotes: "{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\
,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\
: false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Forgotten\ : 2,\n \"cycle\": \"The Forgotten Age\"\n}"
\ Age\"\n}"
GUID: 9c56d3 GUID: 9c56d3
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.97 posX: 8.97
posY: 4.11 posY: 4.11
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 374717 CardID: 374717
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3747': '3747':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"03015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"03015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\
,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ ,\n \"traits\": \"Task.\",\n \"weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\
cycle\": \"The Path to Carcosa\"\n}" \n}"
GUID: d8705c GUID: d8705c
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 9.16 posX: 9.16
posY: 3.43 posY: 3.43
posZ: -16.73 posZ: -16.73
rotX: 359.93 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 359.94 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 373910 CardID: 373910
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3739': '3739':
BackIsHidden: true BackIsHidden: true
@ -21,8 +21,7 @@ Description: Mysterious Soothsayer
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\
,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Clairvoyant.\",\n \"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Clairvoyant.\",\n \"\
permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"\ wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}"
The Circle Undone\"\n}"
GUID: 03a4de GUID: 03a4de
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 8.98 posX: 8.98
posY: 3.99 posY: 3.99
posZ: -16.69 posZ: -16.69
rotX: 359.91 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 378017 CardID: 378017
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3780': '3780':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"05278\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"05278\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\
,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\
: false,\n \"cycle\": \"The Circle Undone\"\n}" : \"The Circle Undone\"\n}"
GUID: 006d44 GUID: 006d44
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -39,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.13 posX: 9.13
posY: 3.75 posY: 3.75
posZ: -16.72 posZ: -16.72
rotX: 359.92 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 378962 CardID: 378962
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3789': '3789':
BackIsHidden: true BackIsHidden: true
@ -20,10 +20,10 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"08124\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Mystic\"\ GMNotes: "{\n \"id\": \"08124\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Mystic\"\
,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"wildIcons\"\
: false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \ : 1,\n \"uses\": [\n {\n \"count\": 2,\n \"replenish\": 2,\n \
\ \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\ \ \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\
\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" : \"Edge of the Earth\"\n}"
GUID: 452db2 GUID: 452db2
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -41,16 +41,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 9.18 posX: 9.18
posY: 2.94 posY: 2.94
posZ: -16.73 posZ: -16.73
rotX: 359.91 rotX: 0.0
rotY: 269.8 rotY: 270.0
rotZ: 0.08 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 538600 CardID: 538600
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'5386': '5386':
BackIsHidden: true BackIsHidden: true
@ -20,8 +20,8 @@ CustomDeck:
Description: '' Description: ''
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"60302\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ GMNotes: "{\n \"id\": \"60302\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\
,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\"\ ,\n \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 6,\n \"cycle\": \"Investigator\
: false,\n \"wildIcons\": 6,\n \"cycle\": \"Investigator Packs\"\n}" \ Packs\"\n}"
GUID: 2c563c GUID: 2c563c
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -45,9 +45,9 @@ Transform:
posX: 8.97 posX: 8.97
posY: 3.81 posY: 3.81
posZ: -16.69 posZ: -16.69
rotX: 359.92 rotX: 0.0
rotY: 270.01 rotY: 270.0
rotZ: 0.02 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 452308 CardID: 452308
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'4523': '4523':
BackIsHidden: true BackIsHidden: true
@ -20,9 +20,8 @@ CustomDeck:
Description: Faithful Companion Description: Faithful Companion
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"08738\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ GMNotes: "{\n \"id\": \"08738\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\
,\n \"cost\": 3,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n\ ,\n \"cost\": 3,\n \"traits\": \"Ally. Creature.\",\n \"agilityIcons\": 1,\n\
\ \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ \ \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}"
: \"Edge of the Earth\"\n}"
GUID: 1bf025 GUID: 1bf025
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +39,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 78.59 posX: 78.59
posY: 3.33 posY: 3.33
posZ: 7.55 posZ: 7.55
rotX: 359.92 rotX: 0.0
rotY: 270.0 rotY: 270.0
rotZ: 0.6 rotZ: 1.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

View File

@ -5,9 +5,9 @@ AltLookAngle:
Autoraise: true Autoraise: true
CardID: 368841 CardID: 368841
ColorDiffuse: ColorDiffuse:
b: 0.713235259 b: 0.71324
g: 0.713235259 g: 0.71324
r: 0.713235259 r: 0.71324
CustomDeck: CustomDeck:
'3688': '3688':
BackIsHidden: true BackIsHidden: true
@ -21,8 +21,8 @@ Description: The Forgotten Daughter
DragSelectable: true DragSelectable: true
GMNotes: "{\n \"id\": \"01082\",\n \"alternate_ids\": [\n \"01582\"\n ],\n \ GMNotes: "{\n \"id\": \"01082\",\n \"alternate_ids\": [\n \"01582\"\n ],\n \
\ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 5,\n \"level\"\ \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 5,\n \"level\"\
: 1,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n\ : 1,\n \"traits\": \"Ally.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n\
\ \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}" }"
GUID: 9393ec GUID: 9393ec
Grid: true Grid: true
GridProjection: false GridProjection: false
@ -40,16 +40,16 @@ SidewaysCard: false
Snap: true Snap: true
Sticky: true Sticky: true
Tags: Tags:
- PlayerCard
- Asset - Asset
- PlayerCard
Tooltip: true Tooltip: true
Transform: Transform:
posX: 29.34 posX: 29.34
posY: 3.37 posY: 3.37
posZ: -58.91 posZ: -58.91
rotX: 0.08 rotX: 0.0
rotY: 269.99 rotY: 270.0
rotZ: 0.01 rotZ: 0.0
scaleX: 1.0 scaleX: 1.0
scaleY: 1.0 scaleY: 1.0
scaleZ: 1.0 scaleZ: 1.0

Some files were not shown because too many files have changed in this diff Show More