Merge branch 'master' into patches
All checks were successful
Build and Release / Build and Release (push) Successful in 5m16s
All checks were successful
Build and Release / Build and Release (push) Successful in 5m16s
This commit is contained in:
commit
7e1ed4f41a
1887
unpacked.ttslua
1887
unpacked.ttslua
File diff suppressed because it is too large
Load Diff
280
unpacked.xml
280
unpacked.xml
@ -31,7 +31,7 @@
|
||||
rectAlignment="LowerRight"
|
||||
width="35"
|
||||
height="146"
|
||||
offsetXY="-1 80"
|
||||
offsetXY="-1 120"
|
||||
spacing="2">
|
||||
<Button icon="cthulhu"
|
||||
tooltip="Campaigns"
|
||||
@ -47,6 +47,20 @@
|
||||
onClick="onClick_toggleUi(Options)"/>
|
||||
</VerticalLayout>
|
||||
|
||||
<!-- Navigation Overlay button (not visibly to Grey and Black) -->
|
||||
<Panel visibility="White|Brown|Red|Orange|Yellow|Green|Teal|Blue|Purple|Pink"
|
||||
color="#000000"
|
||||
outlineSize="1 1"
|
||||
outline="#303030"
|
||||
rectAlignment="LowerRight"
|
||||
width="35"
|
||||
height="35"
|
||||
offsetXY="-1 65">
|
||||
<Button icon="NavigationOverlayIcon"
|
||||
tooltip="Navigation Overlay"
|
||||
onClick="onClick_toggleUi(Navigation Overlay)"/>
|
||||
</Panel>
|
||||
|
||||
<!-- Basic UI that will be replaced based on title -->
|
||||
<VerticalLayout id="load_ui"
|
||||
visibility="Admin"
|
||||
@ -98,6 +112,7 @@
|
||||
</Panel>
|
||||
</VerticalLayout>
|
||||
|
||||
<!-- include TitleSplash.xml -->
|
||||
<!-- Title Splash when starting a scenario -->
|
||||
<Panel id="title_splash"
|
||||
height="220"
|
||||
@ -121,7 +136,181 @@
|
||||
horizontalOverflow="Overflow">
|
||||
</Text>
|
||||
</Panel>
|
||||
<!-- include TitleSplash.xml -->
|
||||
<!-- include NavigationOverlay.xml -->
|
||||
<!-- Default formatting -->
|
||||
<Defaults>
|
||||
<Text color="#FFFFFF"
|
||||
alignment="MiddleLeft" />
|
||||
|
||||
<Toggle isOn="False"
|
||||
rectAlignment="MiddleRight" />
|
||||
|
||||
<Cell dontUseTableCellBackground="true"
|
||||
outlineSize="0 1"
|
||||
outline="grey" />
|
||||
|
||||
<!-- options -->
|
||||
<Row class="nav_option-text"
|
||||
preferredHeight="45"/>
|
||||
<Cell class="nav_option-text"
|
||||
color="#333333"/>
|
||||
<Cell class="nav_option-button"
|
||||
color="#333333"/>
|
||||
<Text class="nav_option-header"
|
||||
fontSize="20"
|
||||
font="font_teutonic-arkham"/>
|
||||
<Cell class="claim"
|
||||
tooltip="Clicking this seat in the navigation overlay will now only swap the playercolor for you."
|
||||
tooltipPosition="Right" />
|
||||
|
||||
<!-- buttons at the bottom -->
|
||||
<Button class="bottomButtons"
|
||||
hoverClass="hover"
|
||||
pressClass="press"
|
||||
selectClass="select"
|
||||
color="#888888"
|
||||
minHeight="35"
|
||||
fontSize="24"
|
||||
font="font_teutonic-arkham"/>
|
||||
<Button class="hover"
|
||||
color="grey"/>
|
||||
<Button class="press"
|
||||
color="white"/>
|
||||
<Button class="select"
|
||||
color="white"/>
|
||||
|
||||
<!-- Navigation Panels -->
|
||||
<Panel class="navPanel"
|
||||
active="false"
|
||||
allowDragging="true"
|
||||
rectAlignment="LowerRight"
|
||||
returnToOriginalPositionWhenReleased="false"
|
||||
offsetXY="-40 0">
|
||||
</Panel>
|
||||
</Defaults>
|
||||
|
||||
<!-- full Panel -->
|
||||
<Panel id="navPanelFull"
|
||||
height="358"
|
||||
width="455"
|
||||
class="navPanel">
|
||||
</Panel>
|
||||
|
||||
<!-- Play Area only -->
|
||||
<Panel id="navPanelPlay"
|
||||
height="208"
|
||||
width="205"
|
||||
class="navPanel">
|
||||
</Panel>
|
||||
|
||||
<!-- Settings -->
|
||||
<TableLayout id="navPanelSettings"
|
||||
active="false"
|
||||
width="300"
|
||||
height="335"
|
||||
color="#000000"
|
||||
outlineSize="2 2"
|
||||
outline="grey"
|
||||
rectAlignment="MiddleCenter">
|
||||
|
||||
<!-- Header -->
|
||||
<Row preferredHeight="60">
|
||||
<Cell>
|
||||
<Panel padding="10 0 0 0">
|
||||
<Text font="font_teutonic-arkham"
|
||||
fontSize="35">Navigation Overlay</Text>
|
||||
</Panel>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Options -->
|
||||
<Row>
|
||||
<Cell>
|
||||
<TableLayout columnWidths="0 125"
|
||||
autoCalculateHeight="1"
|
||||
cellPadding="10 0 5 5">
|
||||
|
||||
<!-- Option: Custom pitch -->
|
||||
<Row class="nav_option-text">
|
||||
<Cell class="nav_option-text">
|
||||
<Text class="nav_option-header">Viewing angle in degrees:</Text>
|
||||
</Cell>
|
||||
<Cell class="nav_option-button">
|
||||
<Slider id="sliderPitch"
|
||||
onValueChanged="797ede/updatePitch"
|
||||
wholeNumbers="true"
|
||||
minValue="0"
|
||||
maxValue="90"
|
||||
value="75"
|
||||
tooltip="This controls the camera pitch ('nodding your head')."
|
||||
tooltipPosition="Right"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: Claim White -->
|
||||
<Row class="nav_option-text">
|
||||
<Cell class="nav_option-text">
|
||||
<Text class="nav_option-header">Claim "White" seat</Text>
|
||||
</Cell>
|
||||
<Cell class="nav_option-button claim">
|
||||
<Toggle id="claimWhite"
|
||||
onValueChanged="797ede/claimColor(White)"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: Claim Orange -->
|
||||
<Row class="nav_option-text">
|
||||
<Cell class="nav_option-text">
|
||||
<Text class="nav_option-header">Claim "Orange" seat</Text>
|
||||
</Cell>
|
||||
<Cell class="nav_option-button claim">
|
||||
<Toggle id="claimOrange"
|
||||
onValueChanged="797ede/claimColor(Orange)"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: Claim Green -->
|
||||
<Row class="nav_option-text">
|
||||
<Cell class="nav_option-text">
|
||||
<Text class="nav_option-header">Claim "Green" seat</Text>
|
||||
</Cell>
|
||||
<Cell class="nav_option-button claim">
|
||||
<Toggle id="claimGreen"
|
||||
onValueChanged="797ede/claimColor(Green)"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: Claim Red -->
|
||||
<Row class="nav_option-text">
|
||||
<Cell class="nav_option-text">
|
||||
<Text class="nav_option-header">Claim "Red" seat</Text>
|
||||
</Cell>
|
||||
<Cell class="nav_option-button claim">
|
||||
<Toggle id="claimRed"
|
||||
onValueChanged="797ede/claimColor(Red)"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
</TableLayout>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Buttons: Defaults and Close -->
|
||||
<Row preferredHeight="50">
|
||||
<Cell>
|
||||
<HorizontalLayout minHeight="55"
|
||||
flexibleHeight="0"
|
||||
padding="10 10 5 10"
|
||||
spacing="35">
|
||||
<Button class="bottomButtons"
|
||||
onClick="797ede/loadDefaultSettings">Load defaults</Button>
|
||||
<Button class="bottomButtons"
|
||||
onClick="797ede/toggleSettings">Close</Button>
|
||||
</HorizontalLayout>
|
||||
</Cell>
|
||||
</Row>
|
||||
</TableLayout>
|
||||
<!-- include NavigationOverlay.xml -->
|
||||
<!-- include OptionPanel.xml -->
|
||||
<!-- Default formatting -->
|
||||
<Defaults>
|
||||
@ -131,6 +320,8 @@
|
||||
<Toggle isOn="False"
|
||||
rectAlignment="MiddleRight" />
|
||||
|
||||
<Dropdown rectAlignment="MiddleCenter" />
|
||||
|
||||
<Cell dontUseTableCellBackground="true"
|
||||
outlineSize="0 1"
|
||||
outline="grey" />
|
||||
@ -151,7 +342,7 @@
|
||||
<Row class="group-header"
|
||||
preferredHeight="54" />
|
||||
<Cell class="group-header"
|
||||
columnSpan="2"
|
||||
columnSpan="3"
|
||||
color="#222222" />
|
||||
<Panel class="group-header"
|
||||
padding="5 0 0 0" />
|
||||
@ -163,9 +354,16 @@
|
||||
<Row class="option-text"
|
||||
preferredHeight="70"/>
|
||||
<Cell class="option-text"
|
||||
color="#333333"/>
|
||||
color="#333333"
|
||||
columnSpan="2"/>
|
||||
<Cell class="option-button"
|
||||
color="#333333"/>
|
||||
<Cell class="option-dropdowntext"
|
||||
color="#333333"
|
||||
columnSpan="1"/>
|
||||
<Cell class="option-dropdown"
|
||||
color="#333333"
|
||||
columnSpan="2"/>
|
||||
<VerticalLayout class="text-column"
|
||||
padding="10 0 0 0"
|
||||
spacing="5"/>
|
||||
@ -212,9 +410,9 @@
|
||||
<Row>
|
||||
<Cell>
|
||||
<VerticalScrollView horizontalScrollbarVisibility="AutohideAndExpandViewport">
|
||||
<TableLayout columnWidths="0 75"
|
||||
<TableLayout columnWidths="0 100 75"
|
||||
autoCalculateHeight="1"
|
||||
cellPadding="10 0 5 5">
|
||||
cellPadding="10 5 5 5">
|
||||
|
||||
<!-- Group: general settings -->
|
||||
<Row class="group-header">
|
||||
@ -226,6 +424,30 @@
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: card language -->
|
||||
<Row class="option-text">
|
||||
<Cell class="option-dropdowntext">
|
||||
<VerticalLayout class="text-column">
|
||||
<Text class="option-header">Card language</Text>
|
||||
<Text class="description">Downloading a campaign or importing a deck will use this language for cards (NOT FUNCTIONAL YET!).</Text>
|
||||
</VerticalLayout>
|
||||
</Cell>
|
||||
<Cell class="option-dropdown">
|
||||
<Panel padding="0 17 13 13">
|
||||
<Dropdown id="cardLanguage"
|
||||
onValueChanged="languageSelected(selectedIndex)">
|
||||
<Option>简体中文</Option>
|
||||
<Option>繁體中文</Option>
|
||||
<Option>Deutsch</Option>
|
||||
<Option>English</Option>
|
||||
<Option>Español</Option>
|
||||
<Option>Français</Option>
|
||||
<Option>Italiano</Option>
|
||||
</Dropdown>
|
||||
</Panel>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: play area snap tags -->
|
||||
<Row class="option-text">
|
||||
<Cell class="option-text">
|
||||
@ -296,7 +518,7 @@
|
||||
<Row class="option-text">
|
||||
<Cell class="option-text">
|
||||
<VerticalLayout class="text-column">
|
||||
<Text class="option-header">Use clickable clue-counters</Text>
|
||||
<Text class="option-header">Use clickable clue counters</Text>
|
||||
<Text class="description">Instead of automatically counting clues in the respective area on your playermat, this displays a clickable counter for clues.</Text>
|
||||
</VerticalLayout>
|
||||
</Cell>
|
||||
@ -310,7 +532,7 @@
|
||||
<Row class="option-text">
|
||||
<Cell class="option-text">
|
||||
<VerticalLayout class="text-column">
|
||||
<Text class="option-header">Use clickable resource counters</Text>
|
||||
<Text class="option-header">Use clickable resource tokens</Text>
|
||||
<Text class="description">This enables spawning of clickable resource tokens for player cards.</Text>
|
||||
</VerticalLayout>
|
||||
</Cell>
|
||||
@ -344,20 +566,6 @@
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: show chaos bag manager -->
|
||||
<Row class="option-text">
|
||||
<Cell class="option-text">
|
||||
<VerticalLayout class="text-column">
|
||||
<Text class="option-header">Chaos Bag Manager</Text>
|
||||
<Text class="description">Panel for easy addition or removal of chaos tokens to the bag - very useful for EotE because of Frost tokens!</Text>
|
||||
</VerticalLayout>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showChaosBagManager"
|
||||
onValueChanged="onClick_toggleOption(showChaosBagManager)"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: show clean up helper -->
|
||||
<Row class="option-text">
|
||||
<Cell class="option-text">
|
||||
@ -428,22 +636,6 @@
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: show navigation overlay -->
|
||||
<Row class="option-text">
|
||||
<Cell class="option-text">
|
||||
<VerticalLayout class="text-column">
|
||||
<Text class="option-header">Navigation Overlay</Text>
|
||||
<Text class="description">This enables an overlay for quickly moving the camera to various points on the table.</Text>
|
||||
</VerticalLayout>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showNavigationOverlay"
|
||||
onValueChanged="onClick_toggleOption(showNavigationOverlay)"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
|
||||
|
||||
<!-- Option: show search assistant -->
|
||||
<Row class="option-text">
|
||||
<Cell class="option-text">
|
||||
@ -457,20 +649,6 @@
|
||||
onValueChanged="onClick_toggleOption(showSearchAssistant)"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: show token arranger -->
|
||||
<Row class="option-text">
|
||||
<Cell class="option-text">
|
||||
<VerticalLayout class="text-column">
|
||||
<Text class="option-header">Token Arranger</Text>
|
||||
<Text class="description">See the contents of the chaos bag at a glance! This tool displays a sorted table of the tokens to allow easier guessing of your odds.</Text>
|
||||
</VerticalLayout>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showTokenArranger"
|
||||
onValueChanged="onClick_toggleOption(showTokenArranger)"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
</TableLayout>
|
||||
</VerticalScrollView>
|
||||
</Cell>
|
||||
|
@ -75,6 +75,12 @@ ComponentTags:
|
||||
normalized: largebox
|
||||
- displayed: SoundCube
|
||||
normalized: soundcube
|
||||
- displayed: CampaignBox
|
||||
normalized: campaignbox
|
||||
- displayed: CameraZoom_ignore
|
||||
normalized: camerazoom_ignore
|
||||
- displayed: TokenArranger
|
||||
normalized: tokenarranger
|
||||
CustomUIAssets:
|
||||
- Name: refresh
|
||||
Type: 0
|
||||
@ -99,10 +105,13 @@ CustomUIAssets:
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1782854877010106784/6E00433E3425D0A7C6121E0DDB6A79167BA78569/
|
||||
- Name: OverlayLarge
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1745699502804112656/A34D1F30E0DA0E283F300AE6D6B63F59FFC97730/
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2038486957000838167/1EF958D11A228817099C310F97817F61F84DDD91/
|
||||
- Name: OverlaySmall
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1745699502804112719/CFFC89BF9FB8439204EE19CF94180EC99450CD38/
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2038486957000850722/37F0D4848BA08788F79DB2D3FB6D11429CB1F861/
|
||||
- Name: NavigationOverlayIcon
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2038485431576357223/9B834B6C40D02D2796C4027D52FFFDF2F1DFBAA5/
|
||||
- Name: option-gear
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2026086584372569912/5CB461AEAE2E59D3064D90A776EB86C46081EC78/
|
||||
@ -121,6 +130,9 @@ CustomUIAssets:
|
||||
- Name: font_uglyqua
|
||||
Type: 1
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2027213118466516005/113C19D37CFFA9E554394FD5B11B32967F846A62/
|
||||
- Name: font_chinese_fzlibian
|
||||
Type: 1
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2028355502896482829/8DAB311590B97586309E66D795AC2C43D4913188/
|
||||
- Name: header_cover
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/5118935530977312342/0D22712378B1F9A5A1FC7DA40C355943C878DDC0/
|
||||
@ -202,7 +214,7 @@ CustomUIAssets:
|
||||
- Name: FinnIcon
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2037357792052848566/5DA900C430E97D3DFF2C9B8A3DB1CB2271791FC7/
|
||||
Date: 4/20/2023 8:03:20 PM
|
||||
Date: 8/26/2023 5:51:15 PM
|
||||
DecalPallet:
|
||||
- ImageURL: http://cloud-3.steamusercontent.com/ugc/1474319121424323663/BC5570ECF747F1B30224461B576E8B0FE7FA5F33/
|
||||
Name: Achivement Checkmark
|
||||
@ -210,7 +222,7 @@ DecalPallet:
|
||||
- ImageURL: https://i.imgur.com/saWedQ0.png
|
||||
Name: Victory Display
|
||||
Size: 15.0
|
||||
EpochTime: 1682039000
|
||||
EpochTime: 1693090275
|
||||
GameComplexity: ''
|
||||
GameMode: Arkham Horror LCG - Super Complete Edition
|
||||
GameType: ''
|
||||
@ -261,7 +273,7 @@ Lighting:
|
||||
LutIndex: 0
|
||||
ReflectionIntensity: 1.0
|
||||
LuaScript: !include 'unpacked.ttslua'
|
||||
LuaScriptState: '{"acknowledgedUpgradeVersions":[],"optionPanel":{"playAreaSnapTags":true,"showAttachmentHelper":false,"showChaosBagManager":false,"showCleanUpHelper":false,"showCustomPlaymatImages":false,"showCYOA":false,"showDisplacementTool":false,"showDrawButton":false,"showHandHelper":[],"showNavigationOverlay":false,"showSearchAssistant":[],"showTitleSplash":true,"showTokenArranger":false,"useClueClickers":false,"useSnapTags":true}}'
|
||||
LuaScriptState: '{"acknowledgedUpgradeVersions":[],"optionPanel":{"cardLanguage":"en","playAreaSnapTags":true,"showAttachmentHelper":false,"showCleanUpHelper":false,"showCustomPlaymatImages":false,"showCYOA":false,"showDisplacementTool":false,"showDrawButton":false,"showHandHelper":[],"showSearchAssistant":[],"showTitleSplash":true,"useClueClickers":false,"useSnapTags":true}}'
|
||||
MusicPlayer:
|
||||
AudioLibrary:
|
||||
- Item1: http://cloud-3.steamusercontent.com/ugc/784110538847453001/4481D1CC5684FCF04AB143954DEFE09E94BF5CEB/
|
||||
@ -468,6 +480,10 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Model The Scarlet Keys 300fcc.yaml'
|
||||
- !include 'unpacked/Custom_Token Search-A-Card 24051a.yaml'
|
||||
- !include 'unpacked/Custom_Tile Phase Tracker d0c8fa.yaml'
|
||||
- !include 'unpacked/Custom_Tile Phase Tracker Cache 557104.yaml'
|
||||
- !include 'unpacked/Custom_Tile Phase Tracker Cache 49922d.yaml'
|
||||
- !include 'unpacked/Custom_Tile Phase Tracker Cache 16832f.yaml'
|
||||
- !include 'unpacked/Custom_Tile Phase Tracker Cache 645841.yaml'
|
||||
- !include 'unpacked/Checker_white Token Spawn Tracker e3ffc9.yaml'
|
||||
- !include 'unpacked/Bag Token Source 124381.yaml'
|
||||
- !include 'unpacked/FogOfWarTrigger Game Data 3dbe47.yaml'
|
||||
@ -492,8 +508,12 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Assetbundle SoundCube 3c988f.yaml'
|
||||
- !include 'unpacked/go_game_piece_white Game Key Handler fce69c.yaml'
|
||||
- !include 'unpacked/3DText d628cc.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag The Colour Out of Oz be7d21.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Bloodborne - City of the Unseen 0.175 81651b.yaml'
|
||||
- !include 'unpacked/go_game_piece_black Navigation Overlay Handler 797ede.yaml'
|
||||
- !include 'unpacked/Custom_Tile Campaign ImporterExporter 334ee3.yaml'
|
||||
- !include 'unpacked/Custom_Token Token Arranger 022907.yaml'
|
||||
- !include 'unpacked/Custom_Token Chaos Bag Manager 023240.yaml'
|
||||
- !include 'unpacked/Custom_Model Half-Life b46db2.yaml'
|
||||
- !include 'unpacked/Custom_Model Circus Ex Mortis Campaign 93b8cb.yaml'
|
||||
PlayArea: 1.0
|
||||
PlayerCounts:
|
||||
- 0
|
||||
@ -501,7 +521,7 @@ PlayerCounts:
|
||||
PlayingTime:
|
||||
- 0
|
||||
- 0
|
||||
SaveName: Arkham SCE - 3.1.0
|
||||
SaveName: Arkham SCE - 3.2.0
|
||||
Sky: Sky_Museum
|
||||
SkyURL: https://i.imgur.com/GkQqaOF.jpg
|
||||
SnapPoints:
|
||||
|
@ -34,9 +34,9 @@ Text:
|
||||
fontSize: 84
|
||||
Tooltip: true
|
||||
Transform:
|
||||
posX: -19.57
|
||||
posX: -19.5
|
||||
posY: 1.7
|
||||
posZ: -83.39
|
||||
posZ: -84.0
|
||||
rotX: 90.0
|
||||
rotY: 90.0
|
||||
rotZ: 0.0
|
||||
|
@ -10,11 +10,22 @@ ColorDiffuse:
|
||||
g: 0.366520882
|
||||
r: 0.7058823
|
||||
ContainedObjects:
|
||||
- !include 'Bag All Player Cards 15bb07/Card Subject 5U-21 758b0a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Subject 5U-21 12d3de.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Regurgitation 0a1b3a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Reality Acid 0a1b3a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Reality Acid Reference 858b0a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ravenous 558b0a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hard Times 876557.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Pete''s Guitar 876557.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ashcan Pete (Parallel Front) 5294c3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ashcan Pete (Parallel Back) 5294c3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ashcan Pete (Parallel) 5294c3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Roland''s .38 Special 4edb91.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml'
|
||||
@ -1398,7 +1409,7 @@ ContainedObjects:
|
||||
- !include 'Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ghastly Possession (1) 63282f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Binder''s Jar (1) c72750.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml'
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"60522\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
|
||||
\ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
|
||||
3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
|
||||
\"Investigator Packs\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"60522\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 2,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n
|
||||
\ \"combatIcons\": 1,\r\n \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\":
|
||||
3,\r\n \"type\": \"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"Investigator Packs\"\r\n}\r"
|
||||
GUID: f8a977
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
|
||||
\ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\":
|
||||
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator
|
||||
Packs\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"60505\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 0,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n
|
||||
\ \"combatIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 2,\r\n \"type\":
|
||||
\"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"Investigator
|
||||
Packs\"\r\n}\r"
|
||||
GUID: 101a41
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n
|
||||
\ \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
|
||||
\ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
|
||||
4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
|
||||
\"The Innsmouth Conspiracy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"07305\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"cost\": 4,\r\n \"level\": 2,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n
|
||||
\ \"combatIcons\": 1,\r\n \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\":
|
||||
4,\r\n \"type\": \"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"The Innsmouth Conspiracy\"\r\n}\r"
|
||||
GUID: 4425b5
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n
|
||||
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
|
||||
\ \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":
|
||||
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth
|
||||
Conspiracy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"07025\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"cost\": 4,\r\n \"level\": 0,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n
|
||||
\ \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 4,\r\n \"type\":
|
||||
\"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"The
|
||||
Innsmouth Conspiracy\"\r\n}\r"
|
||||
GUID: a5087b
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"52001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\":
|
||||
2,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"52001\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 2,\r\n \"traits\": \"Item. Weapon. Firearm.\",\r\n
|
||||
\ \"combatIcons\": 2,\r\n \"uses\": [\r\n {\r\n \"count\": 6,\r\n \"type\":
|
||||
\"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"Return
|
||||
to the Path to Carcosa\"\r\n}\r"
|
||||
GUID: c026c9
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\":
|
||||
1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03020\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 0,\r\n \"traits\": \"Item. Weapon. Firearm.\",\r\n
|
||||
\ \"combatIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 6,\r\n \"type\":
|
||||
\"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"The
|
||||
Path to Carcosa\"\r\n}\r"
|
||||
GUID: b0f851
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"agilityIcons\":
|
||||
1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"06195-t\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 4,\r\n \"level\": 0,\r\n \"traits\": \"Item. Weapon. Firearm.\",\r\n
|
||||
\ \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 5,\r\n \"type\":
|
||||
\"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"The
|
||||
Dream-Eaters\"\r\n}\r"
|
||||
GUID: 41e560
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"agilityIcons\":
|
||||
1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"06195\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 4,\r\n \"level\": 0,\r\n \"traits\": \"Item. Weapon. Firearm.\",\r\n
|
||||
\ \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 5,\r\n \"type\":
|
||||
\"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"The
|
||||
Dream-Eaters\"\r\n}\r"
|
||||
GUID: c32e40
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,12 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03234\",\n \"alternate_ids\": [\n \"01688\"\n ],\n \"type\":
|
||||
\"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\":
|
||||
\"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"agilityIcons\":
|
||||
1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03234\",\r\n \"alternate_ids\": [\r\n \"01688\"\r\n
|
||||
\ ],\r\n \"type\": \"Asset\",\r\n \"class\": \"Rogue\",\r\n \"cost\": 3,\r\n
|
||||
\ \"level\": 2,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n \"combatIcons\":
|
||||
1,\r\n \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 3,\r\n
|
||||
\ \"type\": \"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: f57af7
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01047\",\n \"alternate_ids\": [\n \"01547\"\n ],\n \"type\":
|
||||
\"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\":
|
||||
\"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"uses\": [\n {\n
|
||||
\ \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n
|
||||
\ }\n ],\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01047\",\r\n \"alternate_ids\": [\r\n \"01547\"\r\n
|
||||
\ ],\r\n \"type\": \"Asset\",\r\n \"class\": \"Rogue\",\r\n \"cost\": 3,\r\n
|
||||
\ \"level\": 0,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n \"combatIcons\":
|
||||
1,\r\n \"uses\": [\r\n {\r\n \"count\": 3,\r\n \"type\": \"Ammo\",\r\n
|
||||
\ \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"Core\"\r\n}\r"
|
||||
GUID: fe2db3
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\":
|
||||
1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":
|
||||
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to
|
||||
Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03190\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 4,\r\n \"level\": 2,\r\n \"traits\": \"Item. Weapon. Firearm.\",\r\n
|
||||
\ \"combatIcons\": 1,\r\n \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\":
|
||||
4,\r\n \"type\": \"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: fe0cc0
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01016\",\n \"alternate_ids\": [\n \"01516\"\n ],\n \"type\":
|
||||
\"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\":
|
||||
\"Item. Weapon. Firearm.\",\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
|
||||
4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
|
||||
\"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01016\",\r\n \"alternate_ids\": [\r\n \"01516\"\r\n
|
||||
\ ],\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n \"cost\": 4,\r\n
|
||||
\ \"level\": 0,\r\n \"traits\": \"Item. Weapon. Firearm.\",\r\n \"agilityIcons\":
|
||||
1,\r\n \"uses\": [\r\n {\r\n \"count\": 4,\r\n \"type\": \"Ammo\",\r\n
|
||||
\ \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"Core\"\r\n}\r"
|
||||
GUID: 12660b
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Guardian
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05186\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 6,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
|
||||
\ \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 5,\n \"type\":
|
||||
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle
|
||||
Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05186\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 6,\r\n \"level\": 3,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n
|
||||
\ \"combatIcons\": 2,\r\n \"uses\": [\r\n {\r\n \"count\": 5,\r\n \"type\":
|
||||
\"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"The
|
||||
Circle Undone\"\r\n}\r"
|
||||
GUID: b492cb
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Rogue
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n
|
||||
\ \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
|
||||
\ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
|
||||
5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
|
||||
\"The Circle Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05187\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"cost\": 5,\r\n \"level\": 3,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n
|
||||
\ \"combatIcons\": 1,\r\n \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\":
|
||||
5,\r\n \"type\": \"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"The Circle Undone\"\r\n}\r"
|
||||
GUID: d4dbc7
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n
|
||||
\ \"cost\": 6,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
|
||||
\ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\":
|
||||
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle
|
||||
Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05115\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian|Rogue\",\r\n
|
||||
\ \"cost\": 6,\r\n \"level\": 0,\r\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\r\n
|
||||
\ \"combatIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 5,\r\n \"type\":
|
||||
\"Ammo\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"The
|
||||
Circle Undone\"\r\n}\r"
|
||||
GUID: 2c6509
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"08048\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n
|
||||
\ \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"combatIcons\":
|
||||
1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"08048\",\r\n \"type\": \"Event\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 0,\r\n \"traits\": \"Fortune. Gambit.\",\r\n \"combatIcons\":
|
||||
1,\r\n \"agilityIcons\": 1,\r\n \"cycle\": \"Edge of the Earth\"\r\n}\r"
|
||||
GUID: 5210c2
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03238\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"level\": 2,\n \"traits\": \"Fortune.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\":
|
||||
1,\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03238\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"level\": 2,\r\n \"traits\": \"Fortune.\",\r\n \"willpowerIcons\": 1,\r\n \"intellectIcons\":
|
||||
1,\r\n \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: 0edef1
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"willpowerIcons\":
|
||||
1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"02270\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 0,\r\n \"traits\": \"Fortune.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"intellectIcons\": 1,\r\n \"cycle\": \"The Dunwich Legacy\"\r\n}\r"
|
||||
GUID: 3f3488
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Blessed. Fortune.\",\n \"wildIcons\":
|
||||
1,\n \"cycle\": \"The Dream-Eaters\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"06245\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 0,\r\n \"traits\": \"Blessed. Fortune.\",\r\n \"wildIcons\":
|
||||
1,\r\n \"cycle\": \"The Dream-Eaters\"\r\n}\r"
|
||||
GUID: f21109
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\":
|
||||
1,\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03156\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 1,\r\n \"traits\": \"Spirit.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: 4cfcc7
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"60523\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\":
|
||||
1,\n \"cycle\": \"Investigator Packs\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"60523\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 0,\r\n \"level\": 2,\r\n \"traits\": \"Spirit.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"cycle\": \"Investigator Packs\"\r\n}\r"
|
||||
GUID: 71a760
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"60513\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\":
|
||||
1,\n \"cycle\": \"Investigator Packs\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"60513\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 0,\r\n \"traits\": \"Spirit.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"cycle\": \"Investigator Packs\"\r\n}\r"
|
||||
GUID: 48e516
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"07269-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"willpowerIcons\":
|
||||
2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"07269-t\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 3,\r\n \"traits\": \"Spirit. Blessed.\",\r\n \"willpowerIcons\":
|
||||
2,\r\n \"cycle\": \"The Innsmouth Conspiracy\"\r\n}\r"
|
||||
GUID: 125f13
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"07269\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"willpowerIcons\":
|
||||
2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"07269\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 3,\r\n \"traits\": \"Spirit. Blessed.\",\r\n \"willpowerIcons\":
|
||||
2,\r\n \"cycle\": \"The Innsmouth Conspiracy\"\r\n}\r"
|
||||
GUID: '176836'
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,8 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Weakness
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01515\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01515\",\r\n \"type\": \"Treachery\",\r\n \"class\":
|
||||
\"Neutral\",\r\n \"traits\": \"Madness.\",\r\n \"weakness\": true,\r\n \"cycle\":
|
||||
\"Core\"\r\n}\r"
|
||||
GUID: 35a7e9
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,8 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01015\",\r\n \"type\": \"Treachery\",\r\n \"class\":
|
||||
\"Neutral\",\r\n \"traits\": \"Madness.\",\r\n \"weakness\": true,\r\n \"cycle\":
|
||||
\"Core\"\r\n}\r"
|
||||
GUID: 79b4af
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,8 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Advanced
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"90040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"90040\",\r\n \"type\": \"Treachery\",\r\n \"class\":
|
||||
\"Neutral\",\r\n \"traits\": \"Madness.\",\r\n \"weakness\": true,\r\n \"cycle\":
|
||||
\"Standalone\"\r\n}\r"
|
||||
GUID: 89fe92
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Ally. Believer.
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 4,\n \"traits\": \"Ally. Believer.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\":
|
||||
1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"82022\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"cost\": 4,\r\n \"traits\": \"Ally. Believer.\",\r\n \"willpowerIcons\": 1,\r\n
|
||||
\ \"intellectIcons\": 1,\r\n \"wildIcons\": 1,\r\n \"cycle\": \"Standalone\"\r\n}\r"
|
||||
GUID: a4b514
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Library Intern
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\":
|
||||
1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"06324\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 4,\r\n \"traits\": \"Ally. Miskatonic.\",\r\n \"intellectIcons\":
|
||||
1,\r\n \"agilityIcons\": 1,\r\n \"cycle\": \"The Dream-Eaters\"\r\n}\r"
|
||||
GUID: 97e9ce
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05038\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n
|
||||
\ \"level\": 0,\n \"traits\": \"Innate.\",\n \"combatIcons\": 1,\n \"agilityIcons\":
|
||||
1,\n \"cycle\": \"The Circle Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05038\",\r\n \"type\": \"Skill\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"level\": 0,\r\n \"traits\": \"Innate.\",\r\n \"combatIcons\": 1,\r\n \"agilityIcons\":
|
||||
1,\r\n \"cycle\": \"The Circle Undone\"\r\n}\r"
|
||||
GUID: '051742'
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\":
|
||||
1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"07159\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 2,\r\n \"traits\": \"Item. Tome.\",\r\n \"intellectIcons\":
|
||||
1,\r\n \"combatIcons\": 1,\r\n \"cycle\": \"The Innsmouth Conspiracy\"\r\n}\r"
|
||||
GUID: a2d392
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,8 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Weakness
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04041\",\r\n \"type\": \"Treachery\",\r\n \"class\":
|
||||
\"Neutral\",\r\n \"traits\": \"Curse.\",\r\n \"weakness\": true,\r\n \"cycle\":
|
||||
\"The Forgotten Age\"\r\n}\r"
|
||||
GUID: 85e7d9
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Basic Weakness
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Humanoid. Cultist. Cursed.\",\n \"weakness\": true,\n \"basicWeaknessCount\":
|
||||
2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"07038\",\r\n \"type\": \"Enemy\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"traits\": \"Humanoid. Cultist. Cursed.\",\r\n \"weakness\": true,\r\n \"basicWeaknessCount\":
|
||||
2,\r\n \"cycle\": \"The Innsmouth Conspiracy\"\r\n}\r"
|
||||
GUID: ef91a9
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02266-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n
|
||||
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"cycle\": \"The Dunwich
|
||||
Legacy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"02266-t\",\r\n \"type\": \"Event\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"cost\": 0,\r\n \"level\": 3,\r\n \"traits\": \"Trick.\",\r\n \"cycle\": \"The
|
||||
Dunwich Legacy\"\r\n}\r"
|
||||
GUID: e5d5f0
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n
|
||||
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"cycle\": \"The Dunwich
|
||||
Legacy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"02266\",\r\n \"type\": \"Event\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"cost\": 0,\r\n \"level\": 3,\r\n \"traits\": \"Trick.\",\r\n \"cycle\": \"The
|
||||
Dunwich Legacy\"\r\n}\r"
|
||||
GUID: 074858
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: The Fateful Step
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The Circle
|
||||
Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05040\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 1,\r\n \"traits\": \"Tarot.\",\r\n \"cycle\": \"The
|
||||
Circle Undone\"\r\n}\r"
|
||||
GUID: 52a677
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Let Your Arrow Fly True
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The Circle
|
||||
Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05023\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 1,\r\n \"traits\": \"Tarot.\",\r\n \"cycle\": \"The
|
||||
Circle Undone\"\r\n}\r"
|
||||
GUID: c4d436
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Madness.
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02178\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 0,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\":
|
||||
\"The Dunwich Legacy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"02178\",\r\n \"type\": \"Treachery\",\r\n \"class\":
|
||||
\"Neutral\",\r\n \"cost\": 0,\r\n \"traits\": \"Madness.\",\r\n \"weakness\":
|
||||
true,\r\n \"cycle\": \"The Dunwich Legacy\"\r\n}\r"
|
||||
GUID: fb943f
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05037\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Gambit.\",\n \"combatIcons\":
|
||||
2,\n \"cycle\": \"The Circle Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05037\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 0,\r\n \"level\": 0,\r\n \"traits\": \"Tactic. Gambit.\",\r\n \"combatIcons\":
|
||||
2,\r\n \"cycle\": \"The Circle Undone\"\r\n}\r"
|
||||
GUID: 0bea17
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n
|
||||
\ \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\":
|
||||
\"The Dunwich Legacy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"02110\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"level\": 1,\r\n \"traits\": \"Talent.\",\r\n \"permanent\": true,\r\n \"cycle\":
|
||||
\"The Dunwich Legacy\"\r\n}\r"
|
||||
GUID: 731d2a
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04202\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\":
|
||||
1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten
|
||||
Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04202\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 2,\r\n \"traits\": \"Spirit.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"combatIcons\": 1,\r\n \"agilityIcons\": 1,\r\n \"cycle\": \"The Forgotten
|
||||
Age\"\r\n}\r"
|
||||
GUID: c077bf
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 7,\n \"level\": 5,\n \"traits\": \"Ally. Agency.\",\n \"willpowerIcons\":
|
||||
1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05274\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 7,\r\n \"level\": 5,\r\n \"traits\": \"Ally. Agency.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"intellectIcons\": 1,\r\n \"combatIcons\": 1,\r\n \"cycle\": \"The Circle
|
||||
Undone\"\r\n}\r"
|
||||
GUID: d6eda3
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Foundation Researcher
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"09763\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 3,\n \"traits\": \"Ally. Agency. Detective.\",\n \"intellectIcons\":
|
||||
1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"09763\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"cost\": 3,\r\n \"traits\": \"Ally. Agency. Detective.\",\r\n \"intellectIcons\":
|
||||
1,\r\n \"combatIcons\": 1,\r\n \"agilityIcons\": 1,\r\n \"cycle\": \"The Scarlet
|
||||
Keys\"\r\n}\r"
|
||||
GUID: d61c6a
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -12,16 +12,16 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: https://i.imgur.com/EcbhVuh.jpg/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2021606446230201640/A992318B1957FC69EB36B5E6FC87D226AAC5EC21/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"09010\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Humanoid. Coterie. Detective.\",\n \"weakness\": true,\n \"cycle\":
|
||||
\"The Scarlet Keys\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"09010\",\r\n \"type\": \"Enemy\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"traits\": \"Humanoid. Coterie. Detective.\",\r\n \"weakness\": true,\r\n \"cycle\":
|
||||
\"The Scarlet Keys\"\r\n}\r"
|
||||
GUID: 95b0cf
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: The Waitress
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01004-pb\",\n \"type\": \"Investigator\",\n \"class\":
|
||||
\"Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\":
|
||||
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01004-pb\",\r\n \"type\": \"Investigator\",\r\n \"class\":
|
||||
\"Mystic\",\r\n \"traits\": \"Sorcerer.\",\r\n \"willpowerIcons\": 5,\r\n \"intellectIcons\":
|
||||
2,\r\n \"combatIcons\": 2,\r\n \"agilityIcons\": 3,\r\n \"cycle\": \"Core\"\r\n}\r"
|
||||
GUID: 909f30
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: The Waitress
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01004-pf\",\n \"type\": \"Investigator\",\n \"class\":
|
||||
\"Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\":
|
||||
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01004-pf\",\r\n \"type\": \"Investigator\",\r\n \"class\":
|
||||
\"Mystic\",\r\n \"traits\": \"Sorcerer.\",\r\n \"willpowerIcons\": 5,\r\n \"intellectIcons\":
|
||||
2,\r\n \"combatIcons\": 2,\r\n \"agilityIcons\": 3,\r\n \"cycle\": \"Core\"\r\n}\r"
|
||||
GUID: 02db0a
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: The Waitress
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n
|
||||
\ \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n
|
||||
\ \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01004-p\",\r\n \"type\": \"Investigator\",\r\n \"class\":
|
||||
\"Mystic\",\r\n \"traits\": \"Sorcerer.\",\r\n \"willpowerIcons\": 5,\r\n \"intellectIcons\":
|
||||
2,\r\n \"combatIcons\": 2,\r\n \"agilityIcons\": 3,\r\n \"cycle\": \"Core\"\r\n}\r"
|
||||
GUID: 01b6ef
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,10 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: The Waitress
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01004\",\n \"alternate_ids\": [\n \"01504\"\n ],\n \"type\":
|
||||
\"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\":
|
||||
5,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\":
|
||||
\"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01004\",\r\n \"alternate_ids\": [\r\n \"01504\"\r\n
|
||||
\ ],\r\n \"type\": \"Investigator\",\r\n \"class\": \"Mystic\",\r\n \"traits\":
|
||||
\"Sorcerer.\",\r\n \"willpowerIcons\": 5,\r\n \"intellectIcons\": 2,\r\n \"combatIcons\":
|
||||
2,\r\n \"agilityIcons\": 3,\r\n \"cycle\": \"Core\"\r\n}\r"
|
||||
GUID: 25e2db
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,8 +19,8 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01004-m\",\n \"alternate_ids\": [\n \"01504-m\"\n ],\n
|
||||
\ \"type\": \"Minicard\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01004-m\",\r\n \"alternate_ids\": [\r\n \"01504-m\"\r\n
|
||||
\ ],\r\n \"type\": \"Minicard\"\r\n}\r"
|
||||
GUID: e53693
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,10 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: The Shaman
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n
|
||||
\ \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n
|
||||
\ \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03004\",\r\n \"type\": \"Investigator\",\r\n \"class\":
|
||||
\"Mystic\",\r\n \"traits\": \"Sorcerer.\",\r\n \"willpowerIcons\": 5,\r\n \"intellectIcons\":
|
||||
2,\r\n \"combatIcons\": 3,\r\n \"agilityIcons\": 3,\r\n \"cycle\": \"The Path
|
||||
to Carcosa\"\r\n}\r"
|
||||
GUID: 452ed8
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -12,34 +12,36 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: https://i.imgur.com/EcbhVuh.jpg/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2021606446230201640/A992318B1957FC69EB36B5E6FC87D226AAC5EC21/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"09040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"willpowerIcons\":
|
||||
1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Mending
|
||||
Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0
|
||||
Heal 2 damage.\u201D\"\n },\n {\n \"name\": \"Calming Distillate\",\n
|
||||
\ \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0 Heal 2 horror.\u201D\"\n
|
||||
\ },\n {\n \"name\": \"Enlightening Distillate\",\n \"xp\": 1,\n
|
||||
\ \"text\": \"Add this option: \u201C\u27D0 Place 1 charge or secret on an asset
|
||||
you control.\u201D\"\n },\n {\n \"name\": \"Quickening Distillate\",\n
|
||||
\ \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0 Move up to 2 times.\u201D\"\n
|
||||
\ },\n {\n \"name\": \"Refined\",\n \"xp\": 2,\n \"text\": \"Alchemical
|
||||
Distillation enters play with 2 additional supplies on it.\",\n \"replaces\":
|
||||
{\n \"uses\": [\n {\n \"count\": 5,\n \"type\":
|
||||
\"Supply\",\n \"token\": \"resource\"\n }\n ]\n }\n
|
||||
\ },\n {\n \"name\": \"Empowered\",\n \"xp\": 4,\n \"text\":
|
||||
\"When you initiate this skill test, you may increase its difficulty by 2. If you
|
||||
do, increase the value of the effect granted by each option by 1 for this test.\"\n
|
||||
\ },\n {\n \"name\": \"Perfected\",\n \"xp\": 5,\n \"text\":
|
||||
\"If you succeed by 2 or more, the chosen investigator may perform two different
|
||||
options instead of one.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"09040\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 0,\r\n \"traits\": \"Item. Science.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"uses\": [\r\n {\r\n \"count\": 3,\r\n \"type\": \"Supply\",\r\n
|
||||
\ \"token\": \"resource\"\r\n }\r\n ],\r\n \"customizations\": [\r\n {\r\n
|
||||
\ \"name\": \"Mending Distillate\",\r\n \"xp\": 1,\r\n \"text\": \"Add
|
||||
this option: \u201C\u27D0 Heal 2 damage.\u201D\"\r\n },\r\n {\r\n \"name\":
|
||||
\"Calming Distillate\",\r\n \"xp\": 1,\r\n \"text\": \"Add this option:
|
||||
\u201C\u27D0 Heal 2 horror.\u201D\"\r\n },\r\n {\r\n \"name\": \"Enlightening
|
||||
Distillate\",\r\n \"xp\": 1,\r\n \"text\": \"Add this option: \u201C\u27D0
|
||||
Place 1 charge or secret on an asset you control.\u201D\"\r\n },\r\n {\r\n
|
||||
\ \"name\": \"Quickening Distillate\",\r\n \"xp\": 1,\r\n \"text\":
|
||||
\"Add this option: \u201C\u27D0 Move up to 2 times.\u201D\"\r\n },\r\n {\r\n
|
||||
\ \"name\": \"Refined\",\r\n \"xp\": 2,\r\n \"text\": \"Alchemical
|
||||
Distillation enters play with 2 additional supplies on it.\",\r\n \"replaces\":
|
||||
{\r\n \"uses\": [\r\n {\r\n \"count\": 5,\r\n \"type\":
|
||||
\"Supply\",\r\n \"token\": \"resource\"\r\n }\r\n ]\r\n
|
||||
\ }\r\n },\r\n {\r\n \"name\": \"Empowered\",\r\n \"xp\": 4,\r\n
|
||||
\ \"text\": \"When you initiate this skill test, you may increase its difficulty
|
||||
by 2. If you do, increase the value of the effect granted by each option by 1 for
|
||||
this test.\"\r\n },\r\n {\r\n \"name\": \"Perfected\",\r\n \"xp\":
|
||||
5,\r\n \"text\": \"If you succeed by 2 or more, the chosen investigator may
|
||||
perform two different options instead of one.\"\r\n }\r\n ],\r\n \"cycle\":
|
||||
\"The Scarlet Keys\"\r\n}\r"
|
||||
GUID: 502a4d
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"willpowerIcons\":
|
||||
1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":
|
||||
\"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to
|
||||
the Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"52007\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"cost\": 0,\r\n \"level\": 2,\r\n \"traits\": \"Spell.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"intellectIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 4,\r\n
|
||||
\ \"type\": \"Charge\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"Return to the Path to Carcosa\"\r\n}\r"
|
||||
GUID: 283e54
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\":
|
||||
1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03032\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 0,\r\n \"traits\": \"Spell.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"uses\": [\r\n {\r\n \"count\": 3,\r\n \"type\": \"Charge\",\r\n
|
||||
\ \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: 54832d
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Renowned Historian
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 2,\n \"traits\": \"Ally. Wayfarer.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\":
|
||||
1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04051\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"cost\": 2,\r\n \"traits\": \"Ally. Wayfarer.\",\r\n \"willpowerIcons\": 1,\r\n
|
||||
\ \"intellectIcons\": 1,\r\n \"wildIcons\": 1,\r\n \"cycle\": \"The Forgotten
|
||||
Age\"\r\n}\r"
|
||||
GUID: c49b4b
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Fearless Flatfoot
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Detective. Police.\",\n \"intellectIcons\":
|
||||
1,\n \"cycle\": \"The Circle Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05151\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 4,\r\n \"level\": 0,\r\n \"traits\": \"Ally. Detective. Police.\",\r\n
|
||||
\ \"intellectIcons\": 1,\r\n \"cycle\": \"The Circle Undone\"\r\n}\r"
|
||||
GUID: ae20e0
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04309-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n
|
||||
\ \"level\": 5,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 2,\n \"cycle\":
|
||||
\"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04309-t\",\r\n \"type\": \"Skill\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"level\": 5,\r\n \"traits\": \"Fortune.\",\r\n \"wildIcons\": 2,\r\n \"cycle\":
|
||||
\"The Forgotten Age\"\r\n}\r"
|
||||
GUID: ff1dfe
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04309\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n
|
||||
\ \"level\": 5,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 2,\n \"cycle\":
|
||||
\"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04309\",\r\n \"type\": \"Skill\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"level\": 5,\r\n \"traits\": \"Fortune.\",\r\n \"wildIcons\": 2,\r\n \"cycle\":
|
||||
\"The Forgotten Age\"\r\n}\r"
|
||||
GUID: 7d3a27
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"53009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\":
|
||||
1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"53009\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 1,\r\n \"traits\": \"Spell. Blessed.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"agilityIcons\": 1,\r\n \"cycle\": \"Return to the Forgotten Age\"\r\n}\r"
|
||||
GUID: 9e4e11
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04313\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
|
||||
\ \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"wildIcons\":
|
||||
1,\n \"cycle\": \"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04313\",\r\n \"type\": \"Event\",\r\n \"class\": \"Survivor\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 3,\r\n \"traits\": \"Spell. Blessed.\",\r\n \"wildIcons\":
|
||||
1,\r\n \"cycle\": \"The Forgotten Age\"\r\n}\r"
|
||||
GUID: 83c86b
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Speaker to the Dead
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Sorcerer.\",\n \"intellectIcons\":
|
||||
1,\n \"cycle\": \"The Dunwich Legacy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"02232\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"cost\": 4,\r\n \"level\": 0,\r\n \"traits\": \"Ally. Sorcerer.\",\r\n \"intellectIcons\":
|
||||
1,\r\n \"cycle\": \"The Dunwich Legacy\"\r\n}\r"
|
||||
GUID: 53867b
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,10 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: The Student
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"07002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n
|
||||
\ \"traits\": \"Miskatonic. Scholar.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\":
|
||||
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Innsmouth
|
||||
Conspiracy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"07002\",\r\n \"type\": \"Investigator\",\r\n \"class\":
|
||||
\"Seeker\",\r\n \"traits\": \"Miskatonic. Scholar.\",\r\n \"willpowerIcons\":
|
||||
2,\r\n \"intellectIcons\": 2,\r\n \"combatIcons\": 2,\r\n \"agilityIcons\": 2,\r\n
|
||||
\ \"cycle\": \"The Innsmouth Conspiracy\"\r\n}\r"
|
||||
GUID: 05b950
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n
|
||||
\ \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"intellectIcons\":
|
||||
1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03148\",\r\n \"type\": \"Event\",\r\n \"class\": \"Guardian\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 1,\r\n \"traits\": \"Tactic.\",\r\n \"intellectIcons\":
|
||||
1,\r\n \"combatIcons\": 1,\r\n \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: a1fd61
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,10 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: The Operator
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"09011\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n
|
||||
\ \"traits\": \"Chosen. Cursed.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\":
|
||||
3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Scarlet Keys\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"09011\",\r\n \"type\": \"Investigator\",\r\n \"class\":
|
||||
\"Mystic\",\r\n \"traits\": \"Chosen. Cursed.\",\r\n \"willpowerIcons\": 3,\r\n
|
||||
\ \"intellectIcons\": 3,\r\n \"combatIcons\": 3,\r\n \"agilityIcons\": 3,\r\n
|
||||
\ \"cycle\": \"The Scarlet Keys\"\r\n}\r"
|
||||
GUID: 4c2a3d
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Basic Weakness
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01096\",\n \"alternate_ids\": [\n \"01596\"\n ],\n \"type\":
|
||||
\"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"weakness\":
|
||||
true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01096\",\r\n \"alternate_ids\": [\r\n \"01596\"\r\n
|
||||
\ ],\r\n \"type\": \"Treachery\",\r\n \"class\": \"Neutral\",\r\n \"traits\":
|
||||
\"Madness.\",\r\n \"weakness\": true,\r\n \"basicWeaknessCount\": 2,\r\n \"cycle\":
|
||||
\"Core\"\r\n}\r"
|
||||
GUID: 2210c1
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -12,16 +12,16 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: https://i.imgur.com/EcbhVuh.jpg/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2021606446230201640/A992318B1957FC69EB36B5E6FC87D226AAC5EC21/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"09049\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n
|
||||
\ \"level\": 0,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\":
|
||||
\"The Scarlet Keys\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"09049\",\r\n \"type\": \"Skill\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"level\": 0,\r\n \"traits\": \"Practiced.\",\r\n \"wildIcons\": 1,\r\n \"cycle\":
|
||||
\"The Scarlet Keys\"\r\n}\r"
|
||||
GUID: 80285f
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 3,\n \"traits\": \"Talent.\",\n \"wildIcons\": 2,\n \"cycle\": \"The
|
||||
Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03010\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"cost\": 3,\r\n \"traits\": \"Talent.\",\r\n \"wildIcons\": 2,\r\n \"cycle\":
|
||||
\"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: 7b6ab5
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03108\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"willpowerIcons\":
|
||||
1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03108\",\r\n \"type\": \"Event\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 0,\r\n \"traits\": \"Insight.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"combatIcons\": 1,\r\n \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: a8e495
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"07303\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\":
|
||||
\"The Innsmouth Conspiracy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"07303\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"level\": 3,\r\n \"traits\": \"Talent.\",\r\n \"permanent\": true,\r\n \"cycle\":
|
||||
\"The Innsmouth Conspiracy\"\r\n}\r"
|
||||
GUID: 7b7d14
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,11 @@ CustomDeck:
|
||||
UniqueBack: true
|
||||
Description: Item. Relic.
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\":
|
||||
1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":
|
||||
\"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"83056\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"cost\": 3,\r\n \"traits\": \"Item. Relic.\",\r\n \"willpowerIcons\": 1,\r\n
|
||||
\ \"intellectIcons\": 1,\r\n \"wildIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\":
|
||||
4,\r\n \"type\": \"Charge\",\r\n \"token\": \"resource\"\r\n }\r\n
|
||||
\ ],\r\n \"cycle\": \"Standalone\"\r\n}\r"
|
||||
GUID: 0ce113
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Unidentified
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\":
|
||||
1,\n \"cycle\": \"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04022\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 1,\r\n \"level\": 1,\r\n \"traits\": \"Item. Relic.\",\r\n \"intellectIcons\":
|
||||
1,\r\n \"cycle\": \"The Forgotten Age\"\r\n}\r"
|
||||
GUID: 9bc46e
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Transient Thoughts
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"agilityIcons\":
|
||||
2,\n \"cycle\": \"Return to the Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"53004\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 4,\r\n \"traits\": \"Item. Relic.\",\r\n \"agilityIcons\":
|
||||
2,\r\n \"cycle\": \"Return to the Forgotten Age\"\r\n}\r"
|
||||
GUID: 3289b0
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Knowledge of the Elders
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\":
|
||||
2,\n \"cycle\": \"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04230\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 4,\r\n \"traits\": \"Item. Relic.\",\r\n \"intellectIcons\":
|
||||
2,\r\n \"cycle\": \"The Forgotten Age\"\r\n}\r"
|
||||
GUID: 863f91
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Minds in Harmony
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\":
|
||||
2,\n \"cycle\": \"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04231\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 4,\r\n \"traits\": \"Item. Relic.\",\r\n \"willpowerIcons\":
|
||||
2,\r\n \"cycle\": \"The Forgotten Age\"\r\n}\r"
|
||||
GUID: 9c56d3
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,8 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Task.\",\n \"weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03015\",\r\n \"type\": \"Treachery\",\r\n \"class\":
|
||||
\"Neutral\",\r\n \"traits\": \"Task.\",\r\n \"weakness\": true,\r\n \"cycle\":
|
||||
\"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: d8705c
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Mysterious Soothsayer
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Clairvoyant.\",\n \"wildIcons\":
|
||||
1,\n \"cycle\": \"The Circle Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05283\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 4,\r\n \"traits\": \"Ally. Clairvoyant.\",\r\n \"wildIcons\":
|
||||
1,\r\n \"cycle\": \"The Circle Undone\"\r\n}\r"
|
||||
GUID: 03a4de
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05278\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n
|
||||
\ \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\":
|
||||
\"The Circle Undone\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"05278\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"level\": 3,\r\n \"traits\": \"Talent.\",\r\n \"permanent\": true,\r\n \"cycle\":
|
||||
\"The Circle Undone\"\r\n}\r"
|
||||
GUID: 006d44
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"08124\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Mystic\",\n
|
||||
\ \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"wildIcons\": 1,\n
|
||||
\ \"uses\": [\n {\n \"count\": 2,\n \"replenish\": 2,\n \"type\":
|
||||
\"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of
|
||||
the Earth\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"08124\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker|Rogue|Mystic\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 3,\r\n \"traits\": \"Talent.\",\r\n \"wildIcons\":
|
||||
1,\r\n \"uses\": [\r\n {\r\n \"count\": 2,\r\n \"replenish\": 2,\r\n
|
||||
\ \"type\": \"Resource\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"Edge of the Earth\"\r\n}\r"
|
||||
GUID: 452db2
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"60302\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n
|
||||
\ \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 6,\n \"cycle\": \"Investigator
|
||||
Packs\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"60302\",\r\n \"type\": \"Skill\",\r\n \"class\": \"Rogue\",\r\n
|
||||
\ \"traits\": \"Innate. Developed.\",\r\n \"wildIcons\": 6,\r\n \"cycle\": \"Investigator
|
||||
Packs\"\r\n}\r"
|
||||
GUID: 2c563c
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Faithful Companion
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"08738\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 3,\n \"traits\": \"Ally. Creature.\",\n \"agilityIcons\": 1,\n \"wildIcons\":
|
||||
1,\n \"cycle\": \"Edge of the Earth\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"08738\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Neutral\",\r\n
|
||||
\ \"cost\": 3,\r\n \"traits\": \"Ally. Creature.\",\r\n \"agilityIcons\": 1,\r\n
|
||||
\ \"wildIcons\": 1,\r\n \"cycle\": \"Edge of the Earth\"\r\n}\r"
|
||||
GUID: 1bf025
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: The Forgotten Daughter
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01082\",\n \"alternate_ids\": [\n \"01582\"\n ],\n \"type\":
|
||||
\"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 5,\n \"level\": 1,\n \"traits\":
|
||||
\"Ally.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01082\",\r\n \"alternate_ids\": [\r\n \"01582\"\r\n
|
||||
\ ],\r\n \"type\": \"Asset\",\r\n \"class\": \"Survivor\",\r\n \"cost\": 5,\r\n
|
||||
\ \"level\": 1,\r\n \"traits\": \"Ally.\",\r\n \"willpowerIcons\": 1,\r\n \"cycle\":
|
||||
\"Core\"\r\n}\r"
|
||||
GUID: 9393ec
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,10 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: The Forgotten Daughter
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02308\",\n \"alternate_ids\": [\n \"01691\"\n ],\n \"type\":
|
||||
\"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 4,\n \"level\": 3,\n \"traits\":
|
||||
\"Ally.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The
|
||||
Dunwich Legacy\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"02308\",\r\n \"alternate_ids\": [\r\n \"01691\"\r\n
|
||||
\ ],\r\n \"type\": \"Asset\",\r\n \"class\": \"Survivor\",\r\n \"cost\": 4,\r\n
|
||||
\ \"level\": 3,\r\n \"traits\": \"Ally.\",\r\n \"willpowerIcons\": 1,\r\n \"agilityIcons\":
|
||||
1,\r\n \"cycle\": \"The Dunwich Legacy\"\r\n}\r"
|
||||
GUID: fb9dbb
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"60402\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"cost\": 3,\n \"traits\": \"Talent.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\":
|
||||
1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"60402\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"cost\": 3,\r\n \"traits\": \"Talent.\",\r\n \"willpowerIcons\": 1,\r\n \"agilityIcons\":
|
||||
1,\r\n \"wildIcons\": 1,\r\n \"cycle\": \"Investigator Packs\"\r\n}\r"
|
||||
GUID: 4fbdb2
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"60205\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\":
|
||||
2,\n \"cycle\": \"Investigator Packs\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"60205\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 0,\r\n \"traits\": \"Ritual.\",\r\n \"willpowerIcons\":
|
||||
2,\r\n \"cycle\": \"Investigator Packs\"\r\n}\r"
|
||||
GUID: e69708
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,12 +19,12 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"willpowerIcons\":
|
||||
1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\":
|
||||
\"Doom\",\n \"token\": \"doom\"\n },\n {\n \"count\": 2,\n \"type\":
|
||||
\"Horror\",\n \"token\": \"horror\"\n }\n ],\n \"cycle\": \"The Path to
|
||||
Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03271\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"cost\": 0,\r\n \"level\": 3,\r\n \"traits\": \"Ally. Sorcerer.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"combatIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 1,\r\n
|
||||
\ \"type\": \"Doom\",\r\n \"token\": \"doom\"\r\n },\r\n {\r\n \"count\":
|
||||
2,\r\n \"type\": \"Horror\",\r\n \"token\": \"horror\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: 65b30d
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01063\",\n \"alternate_ids\": [\n \"01563\"\n ],\n \"type\":
|
||||
\"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\":
|
||||
\"Ally. Sorcerer.\",\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\":
|
||||
1,\n \"type\": \"Doom\",\n \"token\": \"doom\"\n }\n ],\n \"cycle\":
|
||||
\"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01063\",\r\n \"alternate_ids\": [\r\n \"01563\"\r\n
|
||||
\ ],\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n \"cost\": 1,\r\n
|
||||
\ \"level\": 0,\r\n \"traits\": \"Ally. Sorcerer.\",\r\n \"willpowerIcons\": 1,\r\n
|
||||
\ \"uses\": [\r\n {\r\n \"count\": 1,\r\n \"type\": \"Doom\",\r\n \"token\":
|
||||
\"doom\"\r\n }\r\n ],\r\n \"cycle\": \"Core\"\r\n}\r"
|
||||
GUID: 7307c4
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03266\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"willpowerIcons\":
|
||||
1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\":
|
||||
\"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path
|
||||
to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03266\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 3,\r\n \"level\": 4,\r\n \"traits\": \"Spell.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"intellectIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 3,\r\n
|
||||
\ \"type\": \"Charge\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: 536b52
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04109\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\":
|
||||
\"The Forgotten Age\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"04109\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"level\": 0,\r\n \"traits\": \"Talent.\",\r\n \"permanent\": true,\r\n \"cycle\":
|
||||
\"The Forgotten Age\"\r\n}\r"
|
||||
GUID: e425d0
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"50007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"willpowerIcons\":
|
||||
2,\n \"intellectIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"50007\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"cost\": 0,\r\n \"level\": 2,\r\n \"traits\": \"Talent.\",\r\n \"willpowerIcons\":
|
||||
2,\r\n \"intellectIcons\": 2,\r\n \"cycle\": \"Return to the Night of the Zealot\"\r\n}\r"
|
||||
GUID: 644af9
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"60428\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
|
||||
\ \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"willpowerIcons\":
|
||||
2,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"replenish\":
|
||||
2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n
|
||||
\ \"cycle\": \"Investigator Packs\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"60428\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 4,\r\n \"traits\": \"Talent.\",\r\n \"willpowerIcons\":
|
||||
2,\r\n \"intellectIcons\": 2,\r\n \"uses\": [\r\n {\r\n \"count\": 2,\r\n
|
||||
\ \"replenish\": 2,\r\n \"type\": \"Resource\",\r\n \"token\": \"resource\"\r\n
|
||||
\ }\r\n ],\r\n \"cycle\": \"Investigator Packs\"\r\n}\r"
|
||||
GUID: ca23d4
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,10 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"01062\",\n \"alternate_ids\": [\n \"01562\"\n ],\n \"type\":
|
||||
\"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\":
|
||||
\"Talent.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"01062\",\r\n \"alternate_ids\": [\r\n \"01562\"\r\n
|
||||
\ ],\r\n \"type\": \"Asset\",\r\n \"class\": \"Mystic\",\r\n \"cost\": 2,\r\n
|
||||
\ \"level\": 0,\r\n \"traits\": \"Talent.\",\r\n \"willpowerIcons\": 1,\r\n \"intellectIcons\":
|
||||
1,\r\n \"cycle\": \"Core\"\r\n}\r"
|
||||
GUID: 9e4505
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Prophecy Foretold
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03193\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"intellectIcons\":
|
||||
1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\":
|
||||
\"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path
|
||||
to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03193\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 3,\r\n \"traits\": \"Spell.\",\r\n \"intellectIcons\":
|
||||
1,\r\n \"agilityIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 3,\r\n
|
||||
\ \"type\": \"Charge\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: 3d35aa
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Markings of Isis
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"52004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"intellectIcons\":
|
||||
1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\":
|
||||
\"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to
|
||||
the Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"52004\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 3,\r\n \"traits\": \"Spell.\",\r\n \"intellectIcons\":
|
||||
1,\r\n \"combatIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 3,\r\n
|
||||
\ \"type\": \"Charge\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"Return to the Path to Carcosa\"\r\n}\r"
|
||||
GUID: 66d5a3
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Guiding Stones
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\":
|
||||
1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\":
|
||||
\"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path
|
||||
to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03192\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 2,\r\n \"level\": 3,\r\n \"traits\": \"Spell.\",\r\n \"willpowerIcons\":
|
||||
1,\r\n \"intellectIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 3,\r\n
|
||||
\ \"type\": \"Charge\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n
|
||||
\ \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: a14a11
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,9 +19,9 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Untranslated
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"03025\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Occult. Tome.\",\n \"intellectIcons\":
|
||||
1,\n \"cycle\": \"The Path to Carcosa\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"03025\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 0,\r\n \"level\": 0,\r\n \"traits\": \"Item. Occult. Tome.\",\r\n
|
||||
\ \"intellectIcons\": 1,\r\n \"cycle\": \"The Path to Carcosa\"\r\n}\r"
|
||||
GUID: cbfc12
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -19,11 +19,11 @@ CustomDeck:
|
||||
UniqueBack: false
|
||||
Description: Gateway to Paradise
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"08044\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
|
||||
\ \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\":
|
||||
2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":
|
||||
\"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of
|
||||
the Earth\"\n}"
|
||||
GMNotes: "{\r\n \"id\": \"08044\",\r\n \"type\": \"Asset\",\r\n \"class\": \"Seeker\",\r\n
|
||||
\ \"cost\": 4,\r\n \"level\": 4,\r\n \"traits\": \"Ritual.\",\r\n \"willpowerIcons\":
|
||||
2,\r\n \"wildIcons\": 1,\r\n \"uses\": [\r\n {\r\n \"count\": 4,\r\n \"type\":
|
||||
\"Leyline\",\r\n \"token\": \"resource\"\r\n }\r\n ],\r\n \"cycle\": \"Edge
|
||||
of the Earth\"\r\n}\r"
|
||||
GUID: 098132
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user