Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
bc03ffd88a | |||
85cb7bc7e2 | |||
e5aea0cf67 | |||
d41b69bf4a | |||
ff647aeaae | |||
2a0701c8f4 | |||
c3f686e633 | |||
e99f60bf3f | |||
f3c9f3af0b |
@ -20,14 +20,10 @@ jobs:
|
||||
run: tts_yaml_unpacker pack unpacked.yaml "Arkham SCE Adam_${{ github.ref_name }}.json"
|
||||
- name: zip json
|
||||
run: python -m zipfile -c "Arkham SCE Adam_${{ github.ref_name }}.zip" "Arkham SCE Adam_${{ github.ref_name }}.json"
|
||||
|
||||
- name: setup go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: '>=1.20.1'
|
||||
- name: Create Release
|
||||
uses: https://gitea.com/actions/release-action@main
|
||||
uses: akkuman/gitea-release-action@v1
|
||||
env:
|
||||
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
|
||||
with:
|
||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
||||
files: "Arkham SCE Adam_${{ github.ref_name }}.zip"
|
||||
title: "Patched ${{ github.ref_name }}"
|
||||
name: "Patched ${{ github.ref_name }}"
|
||||
|
2157
unpacked.ttslua
2157
unpacked.ttslua
File diff suppressed because it is too large
Load Diff
126
unpacked.xml
126
unpacked.xml
@ -73,7 +73,6 @@
|
||||
|
||||
<!-- window to select downloadable content -->
|
||||
<VerticalLayout id="downloadWindow"
|
||||
visibility="Admin"
|
||||
color="black"
|
||||
active="false"
|
||||
height="800"
|
||||
@ -568,16 +567,13 @@
|
||||
<!-- Default formatting -->
|
||||
<Defaults>
|
||||
<Text color="#FFFFFF"
|
||||
alignment="MiddleLeft" />
|
||||
alignment="MiddleLeft"/>
|
||||
|
||||
<Toggle isOn="False"
|
||||
rectAlignment="MiddleRight" />
|
||||
|
||||
<Dropdown rectAlignment="MiddleCenter" />
|
||||
<Dropdown rectAlignment="MiddleCenter"/>
|
||||
|
||||
<Cell dontUseTableCellBackground="true"
|
||||
outlineSize="0 1"
|
||||
outline="grey" />
|
||||
outline="grey"/>
|
||||
|
||||
<!-- main window -->
|
||||
<TableLayout class="window"
|
||||
@ -589,20 +585,20 @@
|
||||
outline="grey"
|
||||
showAnimation="SlideIn_Right"
|
||||
hideAnimation="SlideOut_Right"
|
||||
animationDuration="0.2" />
|
||||
animationDuration="0.2"/>
|
||||
|
||||
<!-- group headers -->
|
||||
<Row class="group-header"
|
||||
preferredHeight="44" />
|
||||
preferredHeight="44"/>
|
||||
<Cell class="group-header"
|
||||
padding="10 10 0 0"
|
||||
columnSpan="3"
|
||||
color="#222222" />
|
||||
color="#222222"/>
|
||||
<Panel class="group-header"
|
||||
padding="5 0 0 0" />
|
||||
padding="5 0 0 0"/>
|
||||
<Text class="group-header"
|
||||
fontSize="28"
|
||||
font="font_teutonic-arkham" />
|
||||
font="font_teutonic-arkham"/>
|
||||
|
||||
<!-- options -->
|
||||
<Row class="option-text"
|
||||
@ -631,6 +627,14 @@
|
||||
font="font_teutonic-arkham"/>
|
||||
<Panel class="doubleColumn-wrapper"
|
||||
padding="0 17 3 3"/>
|
||||
<Button class="optionToggle"
|
||||
image="option_off"
|
||||
rectAlignment="MiddleRight"
|
||||
offsetXY="-30 0"
|
||||
colors="#FFFFFF|#dfdfdf"
|
||||
height="36"
|
||||
width="65"
|
||||
ignoreLayout="True"/>
|
||||
|
||||
<!-- buttons at the bottom -->
|
||||
<Button class="bottomButtons"
|
||||
@ -652,7 +656,6 @@
|
||||
<!-- Option Panel -->
|
||||
<TableLayout id="optionPanel"
|
||||
class="window"
|
||||
visibility="Admin"
|
||||
rectAlignment="LowerRight"
|
||||
offsetXY="-50 80"
|
||||
raycastTarget="true">
|
||||
@ -718,8 +721,24 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showTitleSplash"
|
||||
onValueChanged="onClick_toggleOption(showTitleSplash)"/>
|
||||
<Button class="optionToggle"
|
||||
id="showTitleSplash"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: Enable all card helpers -->
|
||||
<Row class="option-text"
|
||||
tooltip="Enable all card helpers (usually enabled via context menu entries).
Examples: False Covenant and Book of Living Myths">
|
||||
<Cell class="option-text">
|
||||
<Panel class="singleColumn-wrapper">
|
||||
<Text class="option-header">Enable all card helpers</Text>
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Button class="optionToggle"
|
||||
id="enableCardHelpers"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -742,8 +761,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="playAreaSnapTags"
|
||||
onValueChanged="onClick_toggleOption(playAreaSnapTags)"/>
|
||||
<Button class="optionToggle"
|
||||
id="playAreaSnapTags"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -756,8 +776,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="playAreaConnections"
|
||||
onValueChanged="onClick_toggleOption(playAreaConnections)"/>
|
||||
<Button class="optionToggle"
|
||||
id="playAreaConnections"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -787,8 +808,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="changePlayAreaImage"
|
||||
onValueChanged="onClick_toggleOption(changePlayAreaImage)"/>
|
||||
<Button class="optionToggle"
|
||||
id="changePlayAreaImage"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -811,8 +833,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="useSnapTags"
|
||||
onValueChanged="onClick_toggleOption(useSnapTags)"/>
|
||||
<Button class="optionToggle"
|
||||
id="useSnapTags"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -825,8 +848,24 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showDrawButton"
|
||||
onValueChanged="onClick_toggleOption(showDrawButton)"/>
|
||||
<Button class="optionToggle"
|
||||
id="showDrawButton"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: use class-specific texture -->
|
||||
<Row class="option-text"
|
||||
tooltip="Controls whether a class-specific playermat texture should be automatically loaded.">
|
||||
<Cell class="option-text">
|
||||
<Panel class="singleColumn-wrapper">
|
||||
<Text class="option-header">Use class-specific texture</Text>
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Button class="optionToggle"
|
||||
id="useClassTexture"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -839,8 +878,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="useClueClickers"
|
||||
onValueChanged="onClick_toggleOption(useClueClickers)"/>
|
||||
<Button class="optionToggle"
|
||||
id="useClueClickers"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -864,7 +904,7 @@
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
<!-- Option: remove a player mat -->
|
||||
<!-- Option: remove a playermat -->
|
||||
<Row class="option-text"
|
||||
tooltip="Remove an unused playermat for more table space.
Displayed are the default colors.">
|
||||
<Cell class="option-singleColumn">
|
||||
@ -905,8 +945,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showAttachmentHelper"
|
||||
onValueChanged="onClick_toggleOption(showAttachmentHelper)"/>
|
||||
<Button class="optionToggle"
|
||||
id="showAttachmentHelper"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -919,8 +960,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showCleanUpHelper"
|
||||
onValueChanged="onClick_toggleOption(showCleanUpHelper)"/>
|
||||
<Button class="optionToggle"
|
||||
id="showCleanUpHelper"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -933,8 +975,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showCYOA"
|
||||
onValueChanged="onClick_toggleOption(showCYOA)"/>
|
||||
<Button class="optionToggle"
|
||||
id="showCYOA"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -947,8 +990,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showDisplacementTool"
|
||||
onValueChanged="onClick_toggleOption(showDisplacementTool)"/>
|
||||
<Button class="optionToggle"
|
||||
id="showDisplacementTool"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -961,8 +1005,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showHandHelper"
|
||||
onValueChanged="onClick_toggleOption(showHandHelper)"/>
|
||||
<Button class="optionToggle"
|
||||
id="showHandHelper"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
|
||||
@ -975,8 +1020,9 @@
|
||||
</Panel>
|
||||
</Cell>
|
||||
<Cell class="option-button">
|
||||
<Toggle id="showSearchAssistant"
|
||||
onValueChanged="onClick_toggleOption(showSearchAssistant)"/>
|
||||
<Button class="optionToggle"
|
||||
id="showSearchAssistant"
|
||||
onClick="onClick_toggleOption"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
</TableLayout>
|
||||
|
424
unpacked.yaml
424
unpacked.yaml
@ -71,33 +71,18 @@ ComponentTags:
|
||||
normalized: investigator
|
||||
- displayed: chaosBag
|
||||
normalized: chaosbag
|
||||
- displayed: ActionToken
|
||||
normalized: actiontoken
|
||||
- displayed: LargeBox
|
||||
normalized: largebox
|
||||
- displayed: CampaignBox
|
||||
normalized: campaignbox
|
||||
- displayed: CameraZoom_ignore
|
||||
normalized: camerazoom_ignore
|
||||
- displayed: UniversalToken
|
||||
normalized: universaltoken
|
||||
CustomUIAssets:
|
||||
- Name: refresh
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1695031152736214852/EC3BBEF1A1788381A8F4C5ACB7FB27770CAF03C5/
|
||||
- Name: close
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1695031152736214756/2EEB07E453A7ECF4BE5A1030A253185B37A7CDAB/
|
||||
- Name: cthulhu
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1782854877010107768/BC6A97F193385D01C1A9149B68923F55A284CB2D/
|
||||
- Name: dark-cult
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1782854877010108105/08594607341D6537C28A08A34CE82159025AB8DB/
|
||||
- Name: yog-sothoth
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1782854877010107124/D8042D1A1B08CFB7E76488B09216B4611D85A2B9/
|
||||
- Name: elder-sign
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1782854877010107442/43BC029410751208A90AE7FDEBCB587A0E9403D7/
|
||||
- Name: devourer
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/1782854877010106784/6E00433E3425D0A7C6121E0DDB6A79167BA78569/
|
||||
@ -113,24 +98,18 @@ CustomUIAssets:
|
||||
- Name: option-gear
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2026086584372569912/5CB461AEAE2E59D3064D90A776EB86C46081EC78/
|
||||
- Name: font_birmingham
|
||||
- Name: option_on
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2462982115668997008/2178787B67B3C96F3419EDBAB8420E39893756BC/
|
||||
- Name: option_off
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2462982115668996901/D6438ECBB11DECC6DB9987589FF526FBAD4D2368/
|
||||
- Name: font_arkhamicons
|
||||
Type: 1
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2027213118466443497/3CF9BB9AF968D245961494CC9A151774EB9BA638/
|
||||
- Name: font_columbus
|
||||
Type: 1
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2027213118466515872/F473E4ACC75ACB6CE07457C45290B4912E0B3286/
|
||||
- Name: font_oldremington
|
||||
Type: 1
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2027213118466515932/AFCE53F1E1D9580D166F53AD9EB0D77A331D4A26/
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2462982115649258367/C20CC4C299A6FE5F1ECAB968E15BE590337CC019/
|
||||
- Name: font_teutonic-arkham
|
||||
Type: 1
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2027213118467703445/89328E273B4C5180BF491516CE998DE3C604E162/
|
||||
- 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/2280574378889753624/53E7443E2A9957BC5CA4D73B67D5C1C30971C9F9/
|
||||
@ -143,24 +122,18 @@ CustomUIAssets:
|
||||
- Name: header_olive
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2280574378889753733/F67B7B37FF7AA253B6D697E577DF54A3E76030C2/
|
||||
- Name: option_on
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2024962321889555728/22ABD35CBB49A001F3A5318E4AFCFB22D24FEA39/
|
||||
- Name: option_off
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2024962321889555661/6643E5CC9160FF4624672C255D0DF7B313DA00A5/
|
||||
- Name: SpeechBubble
|
||||
Type: 0
|
||||
URL: https://i.imgur.com/6MReiEO.png
|
||||
- Name: Inv-Roland
|
||||
Type: 0
|
||||
URL: https://i.imgur.com/lx6unDY.png
|
||||
- Name: NextArrow
|
||||
Type: 0
|
||||
URL: https://i.imgur.com/MztSQis.png
|
||||
- Name: Exit
|
||||
Type: 0
|
||||
URL: https://i.imgur.com/8qmTXwt.png
|
||||
- Name: Inv-Roland
|
||||
Type: 0
|
||||
URL: https://i.imgur.com/lx6unDY.png
|
||||
- Name: Inv-Mandy
|
||||
Type: 0
|
||||
URL: https://i.imgur.com/hniMC5g.png
|
||||
@ -224,7 +197,37 @@ CustomUIAssets:
|
||||
- Name: box-cover-mask-wide
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2115061298538827369/A20C2ECB8ECDC1B0AD8B2B38F68CA1C1F5E07D37/
|
||||
Date: Fri Feb 16 18:27:41 UTC 2024
|
||||
- Name: token-skull
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2380784374775547231/E0FEEF462DE4E7704832CA2415D0D027A6BF5041/
|
||||
- Name: token-bless
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2380784374775547028/7855033DE0EB1FDDF706E1303054D35FE0902532/
|
||||
- Name: token-curse
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2380784374775547135/2360372CBE9452CB7B4D135BE13BBA6D46B7D427/
|
||||
- Name: token-cultist
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2380784374792650461/10D8037632900AA86045BDD42A564716D5855B1B/
|
||||
- Name: token-tablet
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2380784374792650857/29DAE514E5C838C24C90ABBFFF92B1359B9A2F76/
|
||||
- Name: token-elder-thing
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2380784374792650683/1C046B6335317CA1AEBFC80645EEC18852D83D80/
|
||||
- Name: token-frost
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2380784374792650766/73E07A50BE6FD9BED266F3421B472C4BF913DE81/
|
||||
- Name: token-auto-fail
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2510267932886739653/CB7AA2D73777EF5938A6E6CD664B2ABA52B6E20A/
|
||||
- Name: token-eldersign
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2540675016035917168/C0D6F531A85FD94C2F54825DFC50781B5B499A1D/
|
||||
- Name: token-custom-token
|
||||
Type: 0
|
||||
URL: http://cloud-3.steamusercontent.com/ugc/2380784374792650571/E4C2B2B69282A4EE15FE290FF6B08BEFC8FCA65C/
|
||||
Date: Mon Jul 8 20:19:48 CEST 2024
|
||||
DecalPallet:
|
||||
- ImageURL: http://cloud-3.steamusercontent.com/ugc/1474319121424323663/BC5570ECF747F1B30224461B576E8B0FE7FA5F33/
|
||||
Name: Achivement Checkmark
|
||||
@ -233,7 +236,7 @@ DecalPallet:
|
||||
Name: Victory Display
|
||||
Size: 15
|
||||
Decals: []
|
||||
EpochTime: 1708108061
|
||||
EpochTime: 1720462788
|
||||
GameComplexity: ''
|
||||
GameMode: Arkham Horror LCG - Super Complete Edition
|
||||
GameType: ''
|
||||
@ -284,7 +287,7 @@ Lighting:
|
||||
LutIndex: 0
|
||||
ReflectionIntensity: 1
|
||||
LuaScript: !include 'unpacked.ttslua'
|
||||
LuaScriptState: '{"acknowledgedUpgradeVersions":[],"chaosTokensGUID":[],"optionPanel":{"cardLanguage":"en","changePlayAreaImage":false,"playAreaConnectionColor":{"a":1,"b":0.4,"g":0.4,"r":0.4},"playAreaConnections":true,"playAreaSnapTags":true,"showAttachmentHelper":false,"showCleanUpHelper":false,"showCYOA":false,"showDisplacementTool":false,"showDrawButton":false,"showHandHelper":[],"showSearchAssistant":[],"showTitleSplash":true,"useClueClickers":false,"useResourceCounters":"disabled","useSnapTags":true}}'
|
||||
LuaScriptState: '{"acknowledgedUpgradeVersions":[],"chaosTokensGUID":[],"optionPanel":{"cardLanguage":"en","changePlayAreaImage":false,"enableCardHelpers":true,"playAreaConnectionColor":{"a":1,"b":0.4,"g":0.4,"r":0.4},"playAreaConnections":true,"playAreaSnapTags":true,"showAttachmentHelper":false,"showCleanUpHelper":false,"showCYOA":false,"showDisplacementTool":false,"showDrawButton":false,"showHandHelper":false,"showSearchAssistant":false,"showTitleSplash":true,"useClassTexture":true,"useClueClickers":false,"useResourceCounters":"disabled","useSnapTags":true}}'
|
||||
MusicPlayer:
|
||||
AudioLibrary:
|
||||
- Item1: http://cloud-3.steamusercontent.com/ugc/784110538847453001/4481D1CC5684FCF04AB143954DEFE09E94BF5CEB/
|
||||
@ -342,11 +345,14 @@ MusicPlayer:
|
||||
Note: ''
|
||||
ObjectStates:
|
||||
- !include 'unpacked/go_game_piece_white GUID Reference Handler 123456.yaml'
|
||||
- !include 'unpacked/go_game_piece_white Game Key Handler fce69c.yaml'
|
||||
- !include 'unpacked/Checker_white Token Spawn Tracker e3ffc9.yaml'
|
||||
- !include 'unpacked/HandTrigger 5fe087.yaml'
|
||||
- !include 'unpacked/HandTrigger be2f17.yaml'
|
||||
- !include 'unpacked/HandTrigger 0285cc.yaml'
|
||||
- !include 'unpacked/HandTrigger a70eee.yaml'
|
||||
- !include 'unpacked/ScriptingTrigger a2f932.yaml'
|
||||
- !include 'unpacked/FogOfWarTrigger 3aab97.yaml'
|
||||
- !include 'unpacked/Custom_Assetbundle TableLegBottomRight afc863.yaml'
|
||||
- !include 'unpacked/Custom_Assetbundle TableLegBottomLeft c8edca.yaml'
|
||||
- !include 'unpacked/Custom_Assetbundle TableLegTopLeft 393bf7.yaml'
|
||||
@ -402,7 +408,9 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Model_Bag Trash 5f896a.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Trash 147e80.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Trash f7b6c8.yaml'
|
||||
- !include 'unpacked/Custom_Tile Patch Notes f47225.yaml'
|
||||
- !include 'unpacked/Custom_PDF Rules Reference d99993.yaml'
|
||||
- !include 'unpacked/Custom_PDF Latest FAQ faqfaq.yaml'
|
||||
- !include 'unpacked/Custom_Model_Infinite_Bag Doom tokens 16724b.yaml'
|
||||
- !include 'unpacked/Custom_Model_Infinite_Bag Clue tokens fae2f6.yaml'
|
||||
- !include 'unpacked/Custom_Model_Infinite_Bag Clue tokens 3b2550.yaml'
|
||||
@ -416,8 +424,6 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Model_Infinite_Bag Damage Tokens 480bda.yaml'
|
||||
- !include 'unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml'
|
||||
- !include 'unpacked/Custom_Model_Infinite_Bag Connection markers 170f10.yaml'
|
||||
- !include 'unpacked/FogOfWarTrigger 3aab97.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml'
|
||||
- !include 'unpacked/Custom_Model Clue Counter 37be78.yaml'
|
||||
- !include 'unpacked/Custom_Model Clue Counter 1769ed.yaml'
|
||||
@ -426,8 +432,7 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Token Master Clue Counter 4a3aa4.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Legacy Assets 7165a9.yaml'
|
||||
- !include 'unpacked/Custom_Token Play Area 721ba2.yaml'
|
||||
- !include 'unpacked/Bag Additional Player Cards 2cba6b.yaml'
|
||||
- !include 'unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Additional Player Cards 2cba6b.yaml'
|
||||
- !include 'unpacked/Custom_Token Chaos Bag Stat Tracker 766620.yaml'
|
||||
- !include 'unpacked/Checker_white Token Spawn Tool 36b4ee.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Standalone Scenarios 77a5f9.yaml'
|
||||
@ -448,8 +453,6 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Model_Bag Chaos Bag fea079.yaml'
|
||||
- !include 'unpacked/Custom_Tile Data Helper 708279.yaml'
|
||||
- !include 'unpacked/Custom_Token BlessCurse Manager 5933fb.yaml'
|
||||
- !include 'unpacked/Notecard d8d357.yaml'
|
||||
- !include 'unpacked/ScriptingTrigger a2f932.yaml'
|
||||
- !include 'unpacked/Custom_Model Edge of the Earth 895eaa.yaml'
|
||||
- !include 'unpacked/Custom_Model The Dream-Eaters a16a1a.yaml'
|
||||
- !include 'unpacked/Custom_Model The Feast of Hemlock Vale c740af.yaml'
|
||||
@ -459,27 +462,11 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Tile Playermat 2 Orange bd0ff4.yaml'
|
||||
- !include 'unpacked/Custom_Tile Playermat 3 Green 383d8b.yaml'
|
||||
- !include 'unpacked/Custom_Tile Playermat 4 Red 0840d5.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 2691e1.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 748245.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 271b17.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 5bafdf.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 012577.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 04765b.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral b71036.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 1cb302.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral bbc5d4.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 429bb3.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 183dbe.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral b80db6.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral af1927.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 0329cc.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 5bec40.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 5825ca.yaml'
|
||||
- !include 'unpacked/Custom_Token Lead Investigator acaa93.yaml'
|
||||
- !include 'unpacked/Custom_Tile ArkhamDB Deck Importer a28140.yaml'
|
||||
- !include 'unpacked/Checker_white Configuration 03804b.yaml'
|
||||
- !include 'unpacked/Custom_Token Drawing Tool 280086.yaml'
|
||||
- !include 'unpacked/Custom_Token Playmat Image Swapper b7b45b.yaml'
|
||||
- !include 'unpacked/Custom_Token PlayArea Image Swapper b7b45b.yaml'
|
||||
- !include 'unpacked/Bag All Player Cards 15bb07.yaml'
|
||||
- !include 'unpacked/Custom_Token Investigator Skill Tracker af7ed7.yaml'
|
||||
- !include 'unpacked/Custom_Token Investigator Skill Tracker e598c2.yaml'
|
||||
@ -499,12 +486,7 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Tile Token Remover 39b175.yaml'
|
||||
- !include 'unpacked/Custom_Tile Token Remover 2ba7a5.yaml'
|
||||
- !include 'unpacked/Custom_Tile Token Remover 0a5a29.yaml'
|
||||
- !include 'unpacked/ScriptingTrigger TokenDiscardZone 457de3.yaml'
|
||||
- !include 'unpacked/ScriptingTrigger TokenDiscardZone 457de4.yaml'
|
||||
- !include 'unpacked/ScriptingTrigger TokenDiscardZone 457de5.yaml'
|
||||
- !include 'unpacked/ScriptingTrigger TokenDiscardZone 457de6.yaml'
|
||||
- !include 'unpacked/Custom_Tile Decoration - Map 6161b4.yaml'
|
||||
- !include 'unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets fcfa7f.yaml'
|
||||
- !include 'unpacked/BlockRectangle Table Divider 612072.yaml'
|
||||
- !include 'unpacked/BlockRectangle Table Divider 975c39.yaml'
|
||||
- !include 'unpacked/BlockRectangle Table Divider 75937e.yaml'
|
||||
@ -513,10 +495,10 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Model Decoration - Ammo b43845.yaml'
|
||||
- !include 'unpacked/Custom_Model Decoration - Ammo d35ee9.yaml'
|
||||
- !include 'unpacked/Custom_Token Victory Display 6ccd6d.yaml'
|
||||
- !include 'unpacked/Custom_Tile Campaign Overview e03c01.yaml'
|
||||
- !include 'unpacked/Custom_Tile Official Releases Overview 8e22bb.yaml'
|
||||
- !include 'unpacked/Custom_Tile Fan-Made Expansion Overview de7cae.yaml'
|
||||
- !include 'unpacked/Bag OptionPanel Source 830bd0.yaml'
|
||||
- !include 'unpacked/Custom_Assetbundle SoundCube 3c988f.yaml'
|
||||
- !include 'unpacked/go_game_piece_white Game Key Handler fce69c.yaml'
|
||||
- !include 'unpacked/Custom_Tile Token Spawning Reference f8b3a7.yaml'
|
||||
- !include 'unpacked/3DText d628cc.yaml'
|
||||
- !include 'unpacked/go_game_piece_black Navigation Overlay Handler 797ede.yaml'
|
||||
@ -524,7 +506,7 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Token Token Arranger 022907.yaml'
|
||||
- !include 'unpacked/Custom_Tile Chaos Bag Manager 023240.yaml'
|
||||
- !include 'unpacked/BlockRectangle Placeholder Box Dummy a93466.yaml'
|
||||
- !include 'unpacked/Custom_Model The Matter of Britain 194cc5.yaml'
|
||||
- !include 'unpacked/Custom_Model Lovecrafter 3077 b08d20.yaml'
|
||||
- !include 'unpacked/Custom_Tile Tokencache_+1 a15273.yaml'
|
||||
- !include 'unpacked/Custom_Tile Tokencache_0 0a8592.yaml'
|
||||
- !include 'unpacked/Custom_Tile Tokencache_-1 b644d2.yaml'
|
||||
@ -545,6 +527,18 @@ ObjectStates:
|
||||
- !include 'unpacked/Custom_Tile Tokencache_Curse 16a9a7.yaml'
|
||||
- !include 'unpacked/Custom_Tile Tokencache_Frost b2b7be.yaml'
|
||||
- !include 'unpacked/BlockSquare Physics Detector b300d8.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 834ad5.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral a84ae4.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 762df8.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 589c7d.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 642585.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 6441b3.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral f2d25a.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral a5476b.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 06ee01.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 88d9ff.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral 42ec66.yaml'
|
||||
- !include 'unpacked/Custom_Tile Neutral f94579.yaml'
|
||||
PlayArea: 1
|
||||
PlayerCounts:
|
||||
- 0
|
||||
@ -552,7 +546,7 @@ PlayerCounts:
|
||||
PlayingTime:
|
||||
- 0
|
||||
- 0
|
||||
SaveName: Arkham SCE - 3.6.0
|
||||
SaveName: Arkham SCE - 3.9.0
|
||||
Sky: Sky_Museum
|
||||
SkyURL: https://i.imgur.com/GkQqaOF.jpg
|
||||
SnapPoints:
|
||||
@ -620,70 +614,6 @@ SnapPoints:
|
||||
x: -3.85
|
||||
y: 1.58
|
||||
z: -10.39
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: 31.67
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: 29.73
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: 27.8
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: 25.86
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: 23.93
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: 21.99
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: 20.06
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: -20.62
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: -22.55
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: -24.49
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: -26.43
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: -28.36
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: -30.3
|
||||
- Position:
|
||||
x: -45.3
|
||||
y: 1.48
|
||||
z: -32.23
|
||||
- Position:
|
||||
x: -28.64
|
||||
y: 1.48
|
||||
z: -38.65
|
||||
Rotation:
|
||||
x: 0
|
||||
y: 315
|
||||
z: 0
|
||||
- Position:
|
||||
x: -56.24
|
||||
y: 1.49
|
||||
@ -804,182 +734,80 @@ SnapPoints:
|
||||
x: -26
|
||||
y: 1.48
|
||||
z: -87
|
||||
- Position:
|
||||
x: 60
|
||||
y: 1.48
|
||||
z: 48
|
||||
- Position:
|
||||
x: -42
|
||||
y: 1.48
|
||||
z: 89
|
||||
- Position:
|
||||
x: -42
|
||||
y: 1.48
|
||||
z: 71
|
||||
- Position:
|
||||
x: -62
|
||||
y: 1.48
|
||||
z: 71
|
||||
- Position:
|
||||
x: -62
|
||||
y: 1.48
|
||||
z: 89
|
||||
TabStates:
|
||||
'10':
|
||||
body: "Created by Whimsical\n\nAnything that passes over the remover that isn't
|
||||
a card, deck or chaos token will be deleted.\r\nTo use the remover, right click
|
||||
on it, choose the \"Enable\" option, and take your card with resources/horror/damage
|
||||
and swipe it over the remover. You may wish to unlock and/or copy the remover
|
||||
to your play area first."
|
||||
'1':
|
||||
body: 'Welcome to Arkham Horror LCG - Super Complete Edition!
|
||||
|
||||
|
||||
Make sure to take the tour that can be started with the token in the middle
|
||||
of the main playarea. Some basic notes:
|
||||
|
||||
|
||||
DECKBUILDING
|
||||
|
||||
- All currently existing investigators and player cards are accessible via the
|
||||
player card panel in the upper left corner of the table.
|
||||
|
||||
|
||||
- On the leftside underneath the Investigators, you will find the ArkhamDB Deckimporter.
|
||||
Insert your deck ID and it will build the deck automatically for you.
|
||||
|
||||
|
||||
SCENARIOS & SETUP
|
||||
|
||||
- Arkham Horror LCG comes with a core campaign (Night of the Zealot) and several
|
||||
expansions. Within each box you will find all the cards required for each scenario
|
||||
setup, as well as a the official campaign guide PDF.
|
||||
|
||||
|
||||
2. Each scenario is setup differently, and while some of the work has been prepared
|
||||
beforehand (such as building encounter decks), you will have to refer to the
|
||||
Campaign Guide for specific instructions on how to set up each scenario.
|
||||
|
||||
|
||||
INVESTIGATOR PLAYMAT AND GAMEPLAY
|
||||
|
||||
- Playermats are scripted to automate most of the gameplay for you.'
|
||||
color: Grey
|
||||
id: 10
|
||||
title: Token Remover
|
||||
id: 1
|
||||
title: Basic Intro
|
||||
visibleColor:
|
||||
b: 0.5
|
||||
g: 0.5
|
||||
r: 0.5
|
||||
'11':
|
||||
body: 'By Whimsical. Requires Numlock set to On.
|
||||
|
||||
Numpad 1: Cut top 3 cards of deck
|
||||
|
||||
Numpad 2: Cut top 6 cards of deck
|
||||
|
||||
Numpad 3: Cut top 9 cards of deck
|
||||
|
||||
Numpad 4: Spawn Damage
|
||||
|
||||
Numpad 5: Spawn Connection Marker
|
||||
|
||||
Numpad 6: Spawn Horror
|
||||
|
||||
Numpad 7: Spawn Doom
|
||||
|
||||
Numpad 8: Spawn Clue
|
||||
|
||||
Numpad 9: Spawn Resource
|
||||
|
||||
Numpad 0: Draw lines between selected objects. Hold to draw lines from mouseover
|
||||
object to other selected objects.'
|
||||
color: Grey
|
||||
id: 11
|
||||
title: Numpad Hotkeys
|
||||
visibleColor:
|
||||
b: 0.5
|
||||
g: 0.5
|
||||
r: 0.5
|
||||
'7':
|
||||
'2':
|
||||
body: The server host can enable or disable cards in hands being hidden from other
|
||||
players by going to the menu at the top of the TTS screen, clicking options,
|
||||
and choosing Hands. The "Disable" setting reveals all player hands to all players,
|
||||
while the "Default" setting means that each player can only see the cards in
|
||||
their own hand.
|
||||
color: Grey
|
||||
id: 7
|
||||
id: 2
|
||||
title: How to Hide Hands
|
||||
visibleColor:
|
||||
b: 0.5
|
||||
g: 0.5
|
||||
r: 0.5
|
||||
'8':
|
||||
body: "Welcome to Arkham Horror LCG - Super Complete Edition!\r\n\r\nBelow you
|
||||
will find all the features and instructions this mod is loaded with, that will
|
||||
make your AH LCG experience easier.\r\n\r\nDECKBUILDING\r\n1. All current existing
|
||||
investigators are on the right-hand side, and within each chest you will find
|
||||
their investigator-specific assets and weaknesses. Also included is a basic
|
||||
starter deck which only requires you to add a basic random weakness to get going.\r\n\r\n2.
|
||||
On the left-hand side you will find both the weakness decks as well as lvl 0
|
||||
cards sorted by class. To reveal the cards, click on each corresponding token
|
||||
to deal the cards onto the table. Cards are sorted by order of Skill, event
|
||||
and Asset cards top-down and increasing resource cost, left to right. \r\n\r\n3.
|
||||
On the upper side you have the upgrade cards. Similarly, click each token to
|
||||
deal the cards out onto the table. Cards are arranged both in increasing xp
|
||||
cost and resource cost, left to right. Typically, these are the cards you will
|
||||
be spending XP on between scenarios to purchase and improve your deck.\r\n4.
|
||||
On the right-hand side underneath the Investigators, you will find the automated
|
||||
ArkhamDB Deckbuilder (coded and maintained by Grabben). Click the load cards
|
||||
button to activate the Deckbuilder, check ArkhamDB for your chosen deck\u2019s
|
||||
URL and insert its number code following the instructions on the deckbuilder,
|
||||
and it will build the deck automatically for you.\r\n\r\nSCENARIOS & SETUP\r\n1.
|
||||
\tArkham Horror LCG comes with a core campaign (Night of the Zealot) and several
|
||||
expansions (The Dunwich Legacy, The Path to Carcosa & The Forgotten Age). Within
|
||||
each box you will find the volumes that contain all the cards required for each
|
||||
scenario setup, as well as a tablet linking to the official campaign guide PDF.
|
||||
Also included are chaos token cards and a Campaign Log.\r\n\r\n2. \tEach scenario
|
||||
is setup differently, and while some of the work has been prepared beforehand
|
||||
(such as building encounter decks), you will have to refer to the Campaign Guide
|
||||
for specific instructions on how to set up each scenario.\r\n\r\n3. \tThe chaos
|
||||
bag is always placed on the scenario setup mat in the upper right-hand corner
|
||||
onto a snap point that tilts it at a 45-degree angle. Each scenario volume will
|
||||
contain a difficulty card, where you will have the choice of four difficulties.
|
||||
Press the button on the card according to the difficulty of your choosing and
|
||||
the chaos bag will automatically be configured with the tokens specific to that
|
||||
difficulty. In campaign play it is recommended to save your decks and chaos
|
||||
bag at the end of your scenario to carry over onto the next, as often tokens
|
||||
are added or removed from the chaos bag depending on actions or decisions made
|
||||
during the game. These additional tokens can be drawn from the token reserve
|
||||
book resting next to the newspaper in the middle of the main table \u2013 right
|
||||
click it and search for the token you need.\n\r\n4. \tWhen placing location
|
||||
cards, always place them face down on the main play area (the dark map of Arkham,
|
||||
Massachusetts) with the number of clues per location unrevealed. The mod is
|
||||
scripted so that when you flip said location cards (usually when entering the
|
||||
location with an investigator), if it contains clues, the number of clues specific
|
||||
to that location will automatically spawn. Note, that the mod only spawns tokens
|
||||
in relation to the number of players currently set on the playmat player settings.
|
||||
To set the number of players, left-click on the \"Investigators Playing\" number
|
||||
to increase, or right-click to decrease.\r\n\n5. To make location mapping easier,
|
||||
you can draw location connector tokens from the arrow-shaped container below
|
||||
the main play area. Each token has three states (one way, two way and four way)
|
||||
to use them accordingly to better visualize how your locations connect.\n\r\n6.
|
||||
\tIf you require additional doom or clue tokens, these are located on the scenario
|
||||
playmat in their corresponding containers. A handy Doom counter has been also
|
||||
been added to track the doom on the agenda \u2013 left-click to add to add,
|
||||
and right-click to deduct. Keep in mind that any doom spawned on enemies, locations
|
||||
or assets needs to be mentally added to the doom in play on the agenda to account
|
||||
for total doom.\r\n\r\nINVESTIGATOR PLAYMAT AND GAMEPLAY\r\n1. \tInvestigator
|
||||
mats are scripted to automate most of the gameplay for you. wdw\n\r\n2. \tEach
|
||||
mat has slots for inventory, where if you play an asset (for example you put
|
||||
a gun that has 4 ammo into your right-hand slot), the mod will automatically
|
||||
spawn the 4 resource tokens onto your equipped card.\n\r\n3.\tThe draw encounter
|
||||
button on the left-hand side will draw the topmost card from the encounter deck
|
||||
and put it in your threat area. Left-clicking will draw the card face-down,
|
||||
and right-clicking will draw the card face-up. When you draw a weakness, or
|
||||
engage an enemy, it is recommended you put it in your threat area, and once
|
||||
you defeat the enemy or treachery, you can send it to the encounter discard
|
||||
pile by clicking the discard button. If you defeat an enemy with a victory point,
|
||||
make sure not to discard to the discard pile, but pick the card up and drop
|
||||
it at the victory display.\n\r\n4. \tThe Click for Chaos button does just that,
|
||||
draw a random chaos token from your chaos bag. Clicking a second time, sends
|
||||
your chaos token back into the bag, which is then shuffled. If one player clicks
|
||||
to draw a token and doesn\u2019t click a second time to send it back, the click
|
||||
from another player on his personal mat will send the token back first, and
|
||||
the next click will draw the token. Additionally, right-clicking the button
|
||||
will continue drawing tokens and line them up next to each other, which is useful
|
||||
for specific draw conditions the game may require from you. Left-clicking again
|
||||
will send all drawn tokens back to the bag.\n\nADDITIONAL FEATURES:\n1. Over
|
||||
20 Fan-made scenarios created by the thriving community of Arkham Horror LCG
|
||||
have been included. Some of these are one-scenario missions, others are long
|
||||
involved campaigns spanning multiple scenarios. These are all contained in \"The
|
||||
Side Missions\". This boxset also includes the official FFG-created sidemissions
|
||||
Curse of the Rougarou, Carnevale of Horrors, Labrynths of Lunacy and The Eternal
|
||||
Slumber. Read the rulebook on including a side-mission into an ongoing campaign,
|
||||
or play it as a one-off adventure! Setup instructions are included in each
|
||||
volume.\n\n2. If you are not a fan of the dark themed Arkham map for the playmat,
|
||||
you can change the image on it to any you like. At the top left hand side of
|
||||
the playmat is an image icon, which when clicked will reveal a image swap panel.
|
||||
Input the URL for the image you want to repalce the playmat with, and the panel
|
||||
will apply the image for you. Keep in mind this will not change the existing
|
||||
snap points on the current playmat.\n\r\nAs a final comment, please be sure
|
||||
to let me know on the mod page in steam workshop if you find any bugs, issues
|
||||
or have any suggestions for improvement!\r\n\r\n\r\n \r\n\r\n"
|
||||
color: Grey
|
||||
id: 8
|
||||
title: Basic Intro
|
||||
visibleColor:
|
||||
b: 0.5
|
||||
g: 0.5
|
||||
r: 0.5
|
||||
'9':
|
||||
body: "Implemented by Tikatoy\nIdea conceived by Cadentia\n\nVersion 3.3\n\nTop
|
||||
buttons manage bless tokens, bottom buttons manage curse tokens\nADD - creates
|
||||
a new token and adds it to the chaos bag\nREMOVE - removes a token from the
|
||||
chaos bag and destroys it\nTAKE - takes a token from the chaos bag and places
|
||||
it below the manager (for sealing)\nRETURN - returns the last token taken from
|
||||
the chaos bag to the chaos bag\n\nTo use Parallel Wendy, go to Options -> Game
|
||||
Keys, then bind a key or mouse button to Wendy's Menu. Hover over any card (won't
|
||||
work on decks) then press the bound key. Right-click seal/release options will
|
||||
be added to the card.\n\n---Other Notes---\n\nOnly use ONE token manager at
|
||||
a time\nTokens are limited to 10 of each type in play\nBless and curse tokens
|
||||
should be in the chaos bag before trying to REMOVE or TAKE them\nEach action
|
||||
logs a message which ends with (# in bag/# taken); hit enter to view log\n**WARNING**:
|
||||
Tracking # of tokens in bag and in play will NOT persist between saves\n\r"
|
||||
color: Grey
|
||||
id: 9
|
||||
title: Bless / Curse Manager
|
||||
visibleColor:
|
||||
b: 0.5
|
||||
g: 0.5
|
||||
r: 0.5
|
||||
Table: Table_None
|
||||
Tags: []
|
||||
Turns:
|
||||
|
@ -1,55 +0,0 @@
|
||||
AltLookAngle:
|
||||
x: 0
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
Bag:
|
||||
Order: 0
|
||||
ColorDiffuse:
|
||||
b: 0
|
||||
g: 0.36652
|
||||
r: 0.70588
|
||||
Description: 'Put any cards in here to add them to the indices for the player card
|
||||
panel and deck importer.
|
||||
|
||||
|
||||
Select the ''update index'' entry in the context menu of this bag once you''ve added
|
||||
all cards.
|
||||
|
||||
|
||||
This can be used for custom cards too.'
|
||||
DragSelectable: true
|
||||
GMNotes: ''
|
||||
GUID: 2cba6b
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
Hands: false
|
||||
HideWhenFaceDown: false
|
||||
IgnoreFoW: false
|
||||
LayoutGroupSortIndex: 0
|
||||
Locked: true
|
||||
LuaScript: !include 'Bag Additional Player Cards 2cba6b.ttslua'
|
||||
LuaScriptState: ''
|
||||
MaterialIndex: -1
|
||||
MeasureMovement: false
|
||||
MeshIndex: -1
|
||||
Name: Bag
|
||||
Nickname: Additional Player Cards
|
||||
Number: 0
|
||||
Snap: true
|
||||
Sticky: true
|
||||
Tags:
|
||||
- AllCardsHotfix
|
||||
Tooltip: true
|
||||
Transform:
|
||||
posX: 60
|
||||
posY: 1.2
|
||||
posZ: 48
|
||||
rotX: 0
|
||||
rotY: 0
|
||||
rotZ: 0
|
||||
scaleX: 1.5
|
||||
scaleY: 1.5
|
||||
scaleZ: 1.5
|
||||
Value: 0
|
||||
XmlUI: ''
|
@ -41,14 +41,20 @@ local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (
|
||||
|
||||
return require, loaded, register, modules
|
||||
end)(nil)
|
||||
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
require("playercards/AllCardsBag")
|
||||
end)
|
||||
__bundle_register("playercards/AllCardsBag", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
local cardIdIndex = { }
|
||||
local classAndLevelIndex = { }
|
||||
local basicWeaknessList = { }
|
||||
local uniqueWeaknessList = { }
|
||||
local cycleIndex = { }
|
||||
local guidReferenceApi = require("core/GUIDReferenceApi")
|
||||
|
||||
local cardIdIndex = {}
|
||||
local classAndLevelIndex = {}
|
||||
local basicWeaknessList = {}
|
||||
local uniqueWeaknessList = {}
|
||||
local cycleIndex = {}
|
||||
|
||||
local indexingDone = false
|
||||
local otherCardsDetected = false
|
||||
|
||||
function onLoad()
|
||||
self.addContextMenuItem("Rebuild Index", startIndexBuild)
|
||||
@ -56,13 +62,13 @@ function onLoad()
|
||||
Wait.frames(startIndexBuild, 30)
|
||||
end
|
||||
|
||||
-- Called by Hotfix bags when they load. If we are still loading indexes, then
|
||||
-- Called by Hotfix bags when they load. If we are still loading indexes, then
|
||||
-- the all cards and hotfix bags are being loaded together, and we can ignore
|
||||
-- this call as the hotfix will be included in the initial indexing. If it is
|
||||
-- this call as the hotfix will be included in the initial indexing. If it is
|
||||
-- called once indexing is complete it means the hotfix bag has been added
|
||||
-- later, and we should rebuild the index to integrate the hotfix bag.
|
||||
function rebuildIndexForHotfix()
|
||||
if (indexingDone) then
|
||||
if indexingDone then
|
||||
startIndexBuild()
|
||||
end
|
||||
end
|
||||
@ -70,23 +76,23 @@ end
|
||||
-- Resets all current bag indexes
|
||||
function clearIndexes()
|
||||
indexingDone = false
|
||||
cardIdIndex = { }
|
||||
classAndLevelIndex = { }
|
||||
classAndLevelIndex["Guardian-upgrade"] = { }
|
||||
classAndLevelIndex["Seeker-upgrade"] = { }
|
||||
classAndLevelIndex["Mystic-upgrade"] = { }
|
||||
classAndLevelIndex["Survivor-upgrade"] = { }
|
||||
classAndLevelIndex["Rogue-upgrade"] = { }
|
||||
classAndLevelIndex["Neutral-upgrade"] = { }
|
||||
classAndLevelIndex["Guardian-level0"] = { }
|
||||
classAndLevelIndex["Seeker-level0"] = { }
|
||||
classAndLevelIndex["Mystic-level0"] = { }
|
||||
classAndLevelIndex["Survivor-level0"] = { }
|
||||
classAndLevelIndex["Rogue-level0"] = { }
|
||||
classAndLevelIndex["Neutral-level0"] = { }
|
||||
cycleIndex = { }
|
||||
basicWeaknessList = { }
|
||||
uniqueWeaknessList = { }
|
||||
cardIdIndex = {}
|
||||
classAndLevelIndex = {}
|
||||
classAndLevelIndex["Guardian-upgrade"] = {}
|
||||
classAndLevelIndex["Seeker-upgrade"] = {}
|
||||
classAndLevelIndex["Mystic-upgrade"] = {}
|
||||
classAndLevelIndex["Survivor-upgrade"] = {}
|
||||
classAndLevelIndex["Rogue-upgrade"] = {}
|
||||
classAndLevelIndex["Neutral-upgrade"] = {}
|
||||
classAndLevelIndex["Guardian-level0"] = {}
|
||||
classAndLevelIndex["Seeker-level0"] = {}
|
||||
classAndLevelIndex["Mystic-level0"] = {}
|
||||
classAndLevelIndex["Survivor-level0"] = {}
|
||||
classAndLevelIndex["Rogue-level0"] = {}
|
||||
classAndLevelIndex["Neutral-level0"] = {}
|
||||
cycleIndex = {}
|
||||
basicWeaknessList = {}
|
||||
uniqueWeaknessList = {}
|
||||
end
|
||||
|
||||
-- Clears the bag indexes and starts the coroutine to rebuild the indexes
|
||||
@ -101,288 +107,372 @@ function onObjectLeaveContainer(container, _)
|
||||
end
|
||||
end
|
||||
|
||||
-- Create the card indexes by iterating all cards in the bag, parsing their
|
||||
-- metadata, and creating the keyed lookup tables for the cards. This is a
|
||||
-- coroutine which will spread the workload by processing 20 cards before
|
||||
-- yielding. Based on the current count of cards this will require
|
||||
-- approximately 60 frames to complete.
|
||||
-- Create the card indexes by iterating all cards in the bag, parsing their metadata
|
||||
-- and creating the keyed lookup tables for the cards. This is a coroutine which will
|
||||
-- spread the workload by processing 20 cards before yielding.
|
||||
function buildIndex()
|
||||
local cardCount = 0
|
||||
indexingDone = false
|
||||
if (self.getData().ContainedObjects == nil) then
|
||||
return 1
|
||||
end
|
||||
for i, cardData in ipairs(self.getData().ContainedObjects) do
|
||||
local cardMetadata = JSON.decode(cardData.GMNotes)
|
||||
if (cardMetadata ~= nil) then
|
||||
addCardToIndex(cardData, cardMetadata)
|
||||
cardCount = cardCount + 1
|
||||
if cardCount > 9 then
|
||||
cardCount = 0
|
||||
coroutine.yield(0)
|
||||
end
|
||||
otherCardsDetected = false
|
||||
|
||||
-- process the allcardsbag itself
|
||||
for _, cardData in ipairs(self.getData().ContainedObjects) do
|
||||
addCardToIndex(cardData)
|
||||
cardCount = cardCount + 1
|
||||
if cardCount > 19 then
|
||||
cardCount = 0
|
||||
coroutine.yield(0)
|
||||
end
|
||||
end
|
||||
local hotfixBags = getObjectsWithTag("AllCardsHotfix")
|
||||
for _, hotfixBag in ipairs(hotfixBags) do
|
||||
if (#hotfixBag.getObjects() > 0) then
|
||||
for i, cardData in ipairs(hotfixBag.getData().ContainedObjects) do
|
||||
if cardData.ContainedObjects then
|
||||
for j, deepCardData in ipairs(cardData.ContainedObjects) do
|
||||
local deepCardMetadata = JSON.decode(deepCardData.GMNotes)
|
||||
if deepCardMetadata ~= nil then
|
||||
addCardToIndex(deepCardData, deepCardMetadata)
|
||||
cardCount = cardCount + 1
|
||||
if cardCount > 9 then
|
||||
cardCount = 0
|
||||
coroutine.yield(0)
|
||||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
local cardMetadata = JSON.decode(cardData.GMNotes)
|
||||
if cardMetadata ~= nil then
|
||||
addCardToIndex(cardData, cardMetadata)
|
||||
cardCount = cardCount + 1
|
||||
if cardCount > 9 then
|
||||
cardCount = 0
|
||||
coroutine.yield(0)
|
||||
end
|
||||
|
||||
-- process hotfix bags (and the additional playercards bag)
|
||||
for _, hotfixBag in ipairs(getObjectsWithTag("AllCardsHotfix")) do
|
||||
local hotfixData = hotfixBag.getData()
|
||||
|
||||
-- if the bag is empty, continue with the next bag
|
||||
if not hotfixData.ContainedObjects then
|
||||
goto nextBag
|
||||
end
|
||||
|
||||
for _, cardData in ipairs(hotfixData.ContainedObjects) do
|
||||
if cardData.ContainedObjects then
|
||||
-- process containers
|
||||
for _, deepCardData in ipairs(cardData.ContainedObjects) do
|
||||
addCardToIndex(deepCardData)
|
||||
cardCount = cardCount + 1
|
||||
if cardCount > 19 then
|
||||
cardCount = 0
|
||||
coroutine.yield(0)
|
||||
end
|
||||
end
|
||||
else
|
||||
-- process single cards
|
||||
addCardToIndex(cardData)
|
||||
cardCount = cardCount + 1
|
||||
if cardCount > 19 then
|
||||
cardCount = 0
|
||||
coroutine.yield(0)
|
||||
end
|
||||
end
|
||||
end
|
||||
::nextBag::
|
||||
end
|
||||
|
||||
buildSupplementalIndexes()
|
||||
updatePlayerCardPanel()
|
||||
indexingDone = true
|
||||
return 1
|
||||
end
|
||||
|
||||
-- Adds a card to any indexes it should be a part of, based on its metadata.
|
||||
-- Adds a card to any indexes it should be a part of, based on its metadata
|
||||
---@param cardData table TTS object data for the card
|
||||
---@param cardMetadata table SCED metadata for the card
|
||||
function addCardToIndex(cardData, cardMetadata)
|
||||
-- use the ZoopGuid as fallback if no id present
|
||||
if cardMetadata.id == nil and cardMetadata.TtsZoopGuid then
|
||||
cardMetadata.id = cardMetadata.TtsZoopGuid
|
||||
function addCardToIndex(cardData)
|
||||
-- using the more efficient 'json.parse()' to speed this process up
|
||||
local status, cardMetadata = pcall(function() return json.parse(cardData.GMNotes) end)
|
||||
|
||||
-- if an error happens, fallback to the regular parser
|
||||
if status ~= true or cardMetadata == nil then
|
||||
log("Fast parser failed for " .. cardData.Nickname .. ", using old parser instead.")
|
||||
cardMetadata = JSON.decode(cardData.GMNotes)
|
||||
end
|
||||
|
||||
-- if metadata was not valid JSON or empty, don't add the card
|
||||
if not cardMetadata == nil then
|
||||
log("Error parsing " .. cardData.Nickname)
|
||||
return
|
||||
end
|
||||
|
||||
-- use the ZoopGuid as fallback if no id present
|
||||
cardMetadata.id = cardMetadata.id or cardMetadata.TtsZoopGuid
|
||||
cardIdIndex[cardMetadata.id] = { data = cardData, metadata = cardMetadata }
|
||||
if (cardMetadata.alternate_ids ~= nil) then
|
||||
|
||||
-- also add data for alternate ids
|
||||
if cardMetadata.alternate_ids ~= nil then
|
||||
for _, alternateId in ipairs(cardMetadata.alternate_ids) do
|
||||
cardIdIndex[alternateId] = { data = cardData, metadata = cardMetadata }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Creates the supplemental indexes for classes, weaknesses etc.
|
||||
function buildSupplementalIndexes()
|
||||
for cardId, card in pairs(cardIdIndex) do
|
||||
local cardData = card.data
|
||||
local cardMetadata = card.metadata
|
||||
-- If the ID key and the metadata ID don't match this is a duplicate card created by an
|
||||
-- alternate_id, and we should skip it
|
||||
if cardId == cardMetadata.id then
|
||||
-- Add card to the basic weakness list, if appropriate. Some weaknesses have
|
||||
-- multiple copies, and are added multiple times
|
||||
if cardMetadata.weakness then
|
||||
table.insert(uniqueWeaknessList, cardMetadata.id)
|
||||
if cardMetadata.basicWeaknessCount ~= nil then
|
||||
for i = 1, cardMetadata.basicWeaknessCount do
|
||||
table.insert(basicWeaknessList, cardMetadata.id)
|
||||
-- If the ID key and the metadata ID don't match this is a duplicate card created by an alternate_id, and we should skip it
|
||||
if cardId == card.metadata.id then
|
||||
-- Add card to the basic weakness list, if appropriate. Some weaknesses have multiple copies, and are added multiple times
|
||||
if card.metadata.weakness then
|
||||
table.insert(uniqueWeaknessList, card.metadata.id)
|
||||
if card.metadata.basicWeaknessCount ~= nil then
|
||||
for i = 1, card.metadata.basicWeaknessCount do
|
||||
table.insert(basicWeaknessList, card.metadata.id)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Add the card to the appropriate class and level indexes
|
||||
local isGuardian = false
|
||||
local isSeeker = false
|
||||
local isMystic = false
|
||||
local isRogue = false
|
||||
local isSurvivor = false
|
||||
local isNeutral = false
|
||||
local upgradeKey
|
||||
-- Excludes signature cards (which have no class or level) and alternate
|
||||
-- ID entries
|
||||
if (cardMetadata.class ~= nil and cardMetadata.level ~= nil) then
|
||||
isGuardian = string.match(cardMetadata.class, "Guardian")
|
||||
isSeeker = string.match(cardMetadata.class, "Seeker")
|
||||
isMystic = string.match(cardMetadata.class, "Mystic")
|
||||
isRogue = string.match(cardMetadata.class, "Rogue")
|
||||
isSurvivor = string.match(cardMetadata.class, "Survivor")
|
||||
isNeutral = string.match(cardMetadata.class, "Neutral")
|
||||
if (cardMetadata.level > 0) then
|
||||
-- Excludes signature cards (which have no class or level)
|
||||
if card.metadata.class ~= nil and card.metadata.level ~= nil then
|
||||
local upgradeKey = "-level0"
|
||||
if card.metadata.level > 0 then
|
||||
upgradeKey = "-upgrade"
|
||||
else
|
||||
upgradeKey = "-level0"
|
||||
end
|
||||
if (isGuardian) then
|
||||
table.insert(classAndLevelIndex["Guardian"..upgradeKey], cardMetadata.id)
|
||||
end
|
||||
if (isSeeker) then
|
||||
table.insert(classAndLevelIndex["Seeker"..upgradeKey], cardMetadata.id)
|
||||
end
|
||||
if (isMystic) then
|
||||
table.insert(classAndLevelIndex["Mystic"..upgradeKey], cardMetadata.id)
|
||||
end
|
||||
if (isRogue) then
|
||||
table.insert(classAndLevelIndex["Rogue"..upgradeKey], cardMetadata.id)
|
||||
end
|
||||
if (isSurvivor) then
|
||||
table.insert(classAndLevelIndex["Survivor"..upgradeKey], cardMetadata.id)
|
||||
end
|
||||
if (isNeutral) then
|
||||
table.insert(classAndLevelIndex["Neutral"..upgradeKey], cardMetadata.id)
|
||||
end
|
||||
|
||||
local cycleName = cardMetadata.cycle
|
||||
-- parse classes (separated by "|") and add the card to the appropriate class and level indices
|
||||
for str in card.metadata.class:gmatch("([^|]+)") do
|
||||
table.insert(classAndLevelIndex[str .. upgradeKey], card.metadata.id)
|
||||
end
|
||||
|
||||
-- add to cycle index
|
||||
local cycleName = card.metadata.cycle
|
||||
if cycleName ~= nil then
|
||||
cycleName = string.lower(cycleName)
|
||||
if string.match(cycleName, "return") then
|
||||
cycleName = string.sub(cycleName, 11)
|
||||
end
|
||||
if cycleName == "the night of the zealot" then
|
||||
cycleName = "core"
|
||||
end
|
||||
if cycleIndex[cycleName] == nil then
|
||||
cycleIndex[cycleName] = { }
|
||||
end
|
||||
table.insert(cycleIndex[cycleName], cardMetadata.id)
|
||||
|
||||
-- remove "return to " from cycle names
|
||||
cycleName = cycleName:gsub("return to ", "")
|
||||
|
||||
-- override cycle name for night of the zealot
|
||||
cycleName = cycleName:gsub("the night of the zealot", "core")
|
||||
else
|
||||
-- track cards without defined cycle (should only be fan-made cards)
|
||||
cycleName = "other"
|
||||
otherCardsDetected = true
|
||||
end
|
||||
|
||||
-- maybe initialize table
|
||||
if cycleIndex[cycleName] == nil then
|
||||
cycleIndex[cycleName] = {}
|
||||
end
|
||||
table.insert(cycleIndex[cycleName], card.metadata.id)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- sort class and level indices
|
||||
for _, indexTable in pairs(classAndLevelIndex) do
|
||||
table.sort(indexTable, cardComparator)
|
||||
end
|
||||
|
||||
-- sort cycle indices
|
||||
for _, indexTable in pairs(cycleIndex) do
|
||||
table.sort(indexTable)
|
||||
end
|
||||
|
||||
-- sort weakness indices
|
||||
table.sort(basicWeaknessList, cardComparator)
|
||||
table.sort(uniqueWeaknessList, cardComparator)
|
||||
end
|
||||
|
||||
-- Comparison function used to sort the class card bag indexes. Sorts by card
|
||||
-- level, then name, then subname.
|
||||
-- Comparison function used to sort the class card bag indexes. Sorts by card level, then name, then subname.
|
||||
function cardComparator(id1, id2)
|
||||
local card1 = cardIdIndex[id1]
|
||||
local card2 = cardIdIndex[id2]
|
||||
|
||||
if (card1.metadata.level ~= card2.metadata.level) then
|
||||
if card1.metadata.level ~= card2.metadata.level then
|
||||
return card1.metadata.level < card2.metadata.level
|
||||
end
|
||||
if (card1.data.Nickname ~= card2.data.Nickname) then
|
||||
elseif card1.data.Nickname ~= card2.data.Nickname then
|
||||
return card1.data.Nickname < card2.data.Nickname
|
||||
else
|
||||
return card1.data.Description < card2.data.Description
|
||||
end
|
||||
return card1.data.Description < card2.data.Description
|
||||
end
|
||||
|
||||
-- inform the player card panel about the presence of other cards (no cycle -> fan-made)
|
||||
function updatePlayerCardPanel()
|
||||
local panel = guidReferenceApi.getObjectByOwnerAndType("Mythos", "PlayerCardPanel")
|
||||
panel.call("createXML", otherCardsDetected)
|
||||
end
|
||||
|
||||
---@return boolean: If true, the bag is currently not indexing and ready to be accessed
|
||||
function isIndexReady()
|
||||
if not indexingDone then
|
||||
broadcastToAll("Still loading player cards, please try again in a few seconds", { 0.9, 0.2, 0.2 })
|
||||
end
|
||||
return indexingDone
|
||||
end
|
||||
|
||||
-- Returns a specific card from the bag, based on ArkhamDB ID
|
||||
-- Params table:
|
||||
-- id: String ID of the card to retrieve
|
||||
-- Return: If the indexes are still being constructed, an empty table is
|
||||
-- returned. Otherwise, a single table with the following fields
|
||||
-- cardData: TTS object data, suitable for spawning the card
|
||||
-- cardMetadata: Table of parsed metadata
|
||||
---@param params table ID of the card to retrieve
|
||||
---@return table: If the indexes are still being constructed, returns an empty table.
|
||||
-- Otherwise, a single table with the following fields
|
||||
-- data: TTS object data, suitable for spawning the card
|
||||
-- metadata: Table of parsed metadata
|
||||
function getCardById(params)
|
||||
if (not indexingDone) then
|
||||
broadcastToAll("Still loading player cards, please try again in a few seconds", {0.9, 0.2, 0.2})
|
||||
return { }
|
||||
end
|
||||
if not isIndexReady() then return {} end
|
||||
return cardIdIndex[params.id]
|
||||
end
|
||||
|
||||
-- Returns a list of cards from the bag matching a class and level (0 or upgraded)
|
||||
-- Params table:
|
||||
-- class: String class to retrieve ("Guardian", "Seeker", etc)
|
||||
-- isUpgraded: true for upgraded cards (Level 1-5), false for Level 0
|
||||
-- Return: If the indexes are still being constructed, returns an empty table.
|
||||
-- Otherwise, a list of tables, each with the following fields
|
||||
-- cardData: TTS object data, suitable for spawning the card
|
||||
-- cardMetadata: Table of parsed metadata
|
||||
---@param params table
|
||||
-- class: String class to retrieve ("Guardian", "Seeker", etc)
|
||||
-- isUpgraded: true for upgraded cards (Level 1-5), false for Level 0
|
||||
---@return table: If the indexes are still being constructed, returns an empty table.
|
||||
-- Otherwise, a list of tables, each with the following fields
|
||||
-- data: TTS object data, suitable for spawning the card
|
||||
-- metadata: Table of parsed metadata
|
||||
function getCardsByClassAndLevel(params)
|
||||
if (not indexingDone) then
|
||||
broadcastToAll("Still loading player cards, please try again in a few seconds", {0.9, 0.2, 0.2})
|
||||
return { }
|
||||
end
|
||||
local upgradeKey
|
||||
if (params.upgraded) then
|
||||
if not isIndexReady() then return {} end
|
||||
|
||||
local upgradeKey = "-level0"
|
||||
if params.upgraded then
|
||||
upgradeKey = "-upgrade"
|
||||
end
|
||||
return classAndLevelIndex[params.class .. upgradeKey]
|
||||
end
|
||||
|
||||
-- Returns a list of cards from the bag matching a cycle
|
||||
---@param params table
|
||||
-- cycle: String cycle to retrieve ("The Scarlet Keys" etc.)
|
||||
-- sortByMetadata: true to sort the table by metadata instead of ID
|
||||
---@return table: If the indexes are still being constructed, returns an empty table.
|
||||
-- Otherwise, a list of tables, each with the following fields
|
||||
-- data: TTS object data, suitable for spawning the card
|
||||
-- metadata: Table of parsed metadata
|
||||
function getCardsByCycle(params)
|
||||
if not isIndexReady() then return {} end
|
||||
|
||||
if not params.sortByMetadata then
|
||||
return cycleIndex[string.lower(params.cycle)]
|
||||
end
|
||||
|
||||
-- sort list by metadata (useful for custom cards without proper IDs)
|
||||
local cardList = {}
|
||||
for _, id in ipairs(cycleIndex[string.lower(params.cycle)]) do
|
||||
table.insert(cardList, id)
|
||||
end
|
||||
|
||||
table.sort(cardList, metadataSortFunction)
|
||||
return cardList
|
||||
end
|
||||
|
||||
-- sorts cards by metadata: class, type, level, name and then description
|
||||
function metadataSortFunction(id1, id2)
|
||||
local card1 = cardIdIndex[id1]
|
||||
local card2 = cardIdIndex[id2]
|
||||
|
||||
-- extract class per card
|
||||
local classValue1 = getClassValueFromString(card1.metadata.class)
|
||||
local classValue2 = getClassValueFromString(card2.metadata.class)
|
||||
|
||||
-- conversion tables to simplify type sorting
|
||||
local typeConversion = {
|
||||
Asset = 1,
|
||||
Event = 2,
|
||||
Skill = 3
|
||||
}
|
||||
|
||||
if classValue1 ~= classValue2 then
|
||||
return classValue1 < classValue2
|
||||
elseif typeConversion[card1.metadata.type] ~= typeConversion[card2.metadata.type] then
|
||||
return typeConversion[card1.metadata.type] < typeConversion[card2.metadata.type]
|
||||
elseif card1.metadata.level ~= card2.metadata.level then
|
||||
return card1.metadata.level < card2.metadata.level
|
||||
elseif card1.data.Nickname ~= card2.data.Nickname then
|
||||
return card1.data.Nickname < card2.data.Nickname
|
||||
else
|
||||
upgradeKey = "-level0"
|
||||
return card1.data.Description < card2.data.Description
|
||||
end
|
||||
return classAndLevelIndex[params.class..upgradeKey];
|
||||
end
|
||||
|
||||
function getCardsByCycle(cycleName)
|
||||
if (not indexingDone) then
|
||||
broadcastToAll("Still loading player cards, please try again in a few seconds", {0.9, 0.2, 0.2})
|
||||
return { }
|
||||
-- helper function to calculate the class value for sorting from the "|" separated string
|
||||
function getClassValueFromString(s)
|
||||
local classValueList = {
|
||||
Guardian = 1,
|
||||
Seeker = 2,
|
||||
Rogue = 3,
|
||||
Mystic = 4,
|
||||
Survivor = 5,
|
||||
Neutral = 6
|
||||
}
|
||||
local classValue = 0
|
||||
for str in s:gmatch("([^|]+)") do
|
||||
-- this sorts multiclass cards
|
||||
classValue = classValue * 10 + classValueList[str]
|
||||
end
|
||||
return cycleIndex[string.lower(cycleName)]
|
||||
return classValue
|
||||
end
|
||||
|
||||
-- Searches the bag for cards which match the given name and returns a list. Note that this is
|
||||
-- an O(n) search without index support. It may be slow.
|
||||
-- Searches the bag for cards which match the given name and returns a list. Note that this is
|
||||
-- an O(n) search without index support. It may be slow.
|
||||
-- Parameter array must contain these fields to define the search:
|
||||
-- name String or string fragment to search for names
|
||||
-- exact Whether the name match should be exact
|
||||
-- name: String or string fragment to search for names
|
||||
-- exact: Whether the name match should be exact
|
||||
function getCardsByName(params)
|
||||
local name = params.name
|
||||
local exact = params.exact
|
||||
local results = { }
|
||||
local results = {}
|
||||
|
||||
-- Track cards (by ID) that we've added to avoid duplicates that may come from alternate IDs
|
||||
local addedCards = { }
|
||||
local addedCards = {}
|
||||
for _, cardData in pairs(cardIdIndex) do
|
||||
if (not addedCards[cardData.metadata.id]) then
|
||||
if (exact and (string.lower(cardData.data.Nickname) == string.lower(name)))
|
||||
or (not exact and string.find(string.lower(cardData.data.Nickname), string.lower(name), 1, true)) then
|
||||
table.insert(results, cardData)
|
||||
addedCards[cardData.metadata.id] = true
|
||||
table.insert(results, cardData)
|
||||
addedCards[cardData.metadata.id] = true
|
||||
end
|
||||
end
|
||||
end
|
||||
return results
|
||||
end
|
||||
|
||||
-- Gets a random basic weakness from the bag. Once a given ID has been returned
|
||||
-- it will be removed from the list and cannot be selected again until a reload
|
||||
-- occurs or the indexes are rebuilt, which will refresh the list to include all
|
||||
-- weaknesses.
|
||||
-- Return: String ID of the selected weakness.
|
||||
-- Gets a random basic weakness from the bag. Once a given ID has been returned it will be
|
||||
-- removed from the list and cannot be selected again until a reload occurs or the indexes
|
||||
-- are rebuilt, which will refresh the list to include all weaknesses.
|
||||
---@return string: ID of the selected weakness
|
||||
function getRandomWeaknessId()
|
||||
local availableWeaknesses = buildAvailableWeaknesses()
|
||||
if (#availableWeaknesses > 0) then
|
||||
local availableWeaknesses = buildAvailableWeaknesses()
|
||||
if #availableWeaknesses > 0 then
|
||||
return availableWeaknesses[math.random(#availableWeaknesses)]
|
||||
end
|
||||
end
|
||||
|
||||
-- Constructs a list of available basic weaknesses by starting with the full pool of basic
|
||||
-- weaknesses then removing any which are currently in the play or deck construction areas
|
||||
-- Return: Table array of weakness IDs which are valid to choose from
|
||||
function buildAvailableWeaknesses()
|
||||
local weaknessesInPlay = { }
|
||||
---@param traits? string Trait(s) to use as filter
|
||||
---@return table: Array of weakness IDs which are valid to choose from
|
||||
function buildAvailableWeaknesses(traits)
|
||||
local weaknessesInPlay = {}
|
||||
local allObjects = getAllObjects()
|
||||
for _, object in ipairs(allObjects) do
|
||||
if (object.name == "Deck") then
|
||||
if object.type == "Deck" then
|
||||
for _, cardData in ipairs(object.getData().ContainedObjects) do
|
||||
local cardMetadata = JSON.decode(cardData.GMNotes)
|
||||
incrementWeaknessCount(weaknessesInPlay, cardMetadata)
|
||||
incrementWeaknessCount(weaknessesInPlay, JSON.decode(cardData.GMNotes))
|
||||
end
|
||||
elseif (object.name == "Card") then
|
||||
local cardMetadata = JSON.decode(object.getGMNotes())
|
||||
incrementWeaknessCount(weaknessesInPlay, cardMetadata)
|
||||
elseif object.type == "Card" then
|
||||
incrementWeaknessCount(weaknessesInPlay, JSON.decode(object.getGMNotes()))
|
||||
end
|
||||
end
|
||||
|
||||
local availableWeaknesses = { }
|
||||
local availableWeaknesses = {}
|
||||
for _, weaknessId in ipairs(basicWeaknessList) do
|
||||
if (weaknessesInPlay[weaknessId] ~= nil and weaknessesInPlay[weaknessId] > 0) then
|
||||
weaknessesInPlay[weaknessId] = weaknessesInPlay[weaknessId] - 1
|
||||
else
|
||||
table.insert(availableWeaknesses, weaknessId)
|
||||
if traits then
|
||||
-- split the string into separate traits (separated by "|")
|
||||
local allowedTraits = {}
|
||||
for str in traits:gmatch("([^|]+)") do
|
||||
-- remove dots
|
||||
str = str:gsub("[%.]", "")
|
||||
|
||||
-- remove leading and trailing whitespace
|
||||
str = str:match("^%s*(.-)%s*$")
|
||||
|
||||
-- make sure string ends with a dot
|
||||
str = string.lower(str .. ".")
|
||||
table.insert(allowedTraits, str)
|
||||
end
|
||||
|
||||
-- make sure the trait is present on the weakness
|
||||
local card = cardIdIndex[weaknessId]
|
||||
for _, allowedTrait in ipairs(allowedTraits) do
|
||||
if string.contains(string.lower(card.metadata.traits), allowedTrait) then
|
||||
table.insert(availableWeaknesses, weaknessId)
|
||||
break
|
||||
end
|
||||
end
|
||||
else
|
||||
table.insert(availableWeaknesses, weaknessId)
|
||||
end
|
||||
end
|
||||
end
|
||||
return availableWeaknesses
|
||||
@ -398,8 +488,8 @@ end
|
||||
|
||||
-- Helper function that adds one to the table entry for the number of weaknesses in play
|
||||
function incrementWeaknessCount(table, cardMetadata)
|
||||
if (isBasicWeakness(cardMetadata)) then
|
||||
if (table[cardMetadata.id] == nil) then
|
||||
if isBasicWeakness(cardMetadata) then
|
||||
if table[cardMetadata.id] == nil then
|
||||
table[cardMetadata.id] = 1
|
||||
else
|
||||
table[cardMetadata.id] = table[cardMetadata.id] + 1
|
||||
@ -409,12 +499,61 @@ end
|
||||
|
||||
function isBasicWeakness(cardMetadata)
|
||||
return cardMetadata ~= nil
|
||||
and cardMetadata.weakness
|
||||
and cardMetadata.basicWeaknessCount ~= nil
|
||||
and cardMetadata.basicWeaknessCount > 0
|
||||
and cardMetadata.weakness
|
||||
and cardMetadata.basicWeaknessCount ~= nil
|
||||
and cardMetadata.basicWeaknessCount > 0
|
||||
end
|
||||
end)
|
||||
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
require("playercards/AllCardsBag")
|
||||
__bundle_register("core/GUIDReferenceApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local GUIDReferenceApi = {}
|
||||
|
||||
local function getGuidHandler()
|
||||
return getObjectFromGUID("123456")
|
||||
end
|
||||
|
||||
-- Returns the matching object
|
||||
---@param owner string Parent object for this search
|
||||
---@param type string Type of object to search for
|
||||
---@return any: Object reference to the matching object
|
||||
GUIDReferenceApi.getObjectByOwnerAndType = function(owner, type)
|
||||
return getGuidHandler().call("getObjectByOwnerAndType", { owner = owner, type = type })
|
||||
end
|
||||
|
||||
-- Returns all matching objects as a table with references
|
||||
---@param type string Type of object to search for
|
||||
---@return table: List of object references to matching objects
|
||||
GUIDReferenceApi.getObjectsByType = function(type)
|
||||
return getGuidHandler().call("getObjectsByType", type)
|
||||
end
|
||||
|
||||
-- Returns all matching objects as a table with references
|
||||
---@param owner string Parent object for this search
|
||||
---@return table: List of object references to matching objects
|
||||
GUIDReferenceApi.getObjectsByOwner = function(owner)
|
||||
return getGuidHandler().call("getObjectsByOwner", owner)
|
||||
end
|
||||
|
||||
-- Sends new information to the reference handler to edit the main index
|
||||
---@param owner string Parent of the object
|
||||
---@param type string Type of the object
|
||||
---@param guid string GUID of the object
|
||||
GUIDReferenceApi.editIndex = function(owner, type, guid)
|
||||
return getGuidHandler().call("editIndex", {
|
||||
owner = owner,
|
||||
type = type,
|
||||
guid = guid
|
||||
})
|
||||
end
|
||||
|
||||
-- Returns the owner of an object or the object it's located on
|
||||
---@param object tts__GameObject Object for this search
|
||||
---@return string: Parent of the object or object it's located on
|
||||
GUIDReferenceApi.getOwnerOfObject = function(object)
|
||||
return getGuidHandler().call("getOwnerOfObject", object)
|
||||
end
|
||||
|
||||
return GUIDReferenceApi
|
||||
end
|
||||
end)
|
||||
return __bundle_require("__root")
|
@ -16,6 +16,11 @@ ContainedObjects:
|
||||
- !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/CardCustom Rex Murphy (Parallel) 0a5492.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Rex Murphy (Parallel Back) 0a5493.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Rex Murphy (Parallel Front) 0a5494.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Search for the Truth 4156dd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Rex''s Curse 033a36.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'
|
||||
@ -25,47 +30,47 @@ ContainedObjects:
|
||||
46b147.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/CardCustom Book of Living Myths c5fb1f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Weeping Yurei 541bd9.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Book of Living Myths c5fb1f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Weeping Yurei 541bd9.yaml'
|
||||
- !include "Bag All Player Cards 15bb07/CardCustom K\u014Dhaku Narukami cea427.yaml"
|
||||
- !include "Bag All Player Cards 15bb07/CardCustom K\u014Dhaku Narukami 54eaa7.yaml"
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Ad Hoc c9fb2f.yaml'
|
||||
- !include "Bag All Player Cards 15bb07/Card K\u014Dhaku Narukami 54eaa7.yaml"
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ad Hoc c9fb2f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hasty Repairs 0821d5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Wilson Richards ceb426.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Wilson Richards 55eab5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Ancestral Token c1fb1f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Aetheric Current (Yoth) 84ad64.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Aetheric Current (Yuggoth) 84ad65.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Failed Experiment acd281.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Flux Stabilizer 55990a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Kate Winthrop ce2322.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Wilson Richards 55eab5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ancestral Token c1fb1f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Aetheric Current (Yoth) 84ad64.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Aetheric Current (Yuggoth) 84ad65.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Failed Experiment acd281.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Flux Stabilizer 55990a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Kate Winthrop ce2322.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Kate Winthrop ce2323.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Hatchet (1) 2ea0d3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Token of Faith (3) 2ea0d1.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Transmogrify 9965dd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Absolution aef183.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Confound (3) 9965de.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Strong-Armed (1) 294d6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Survival Technique (2) 2ea0d4.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Scrimshaw Charm c1fb2e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Vamp (3) add233.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Well-Dressed c6ac33.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hatchet (1) 2ea0d3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Token of Faith (3) 2ea0d1.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Transmogrify 9965dd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Absolution aef183.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Confound (3) 9965de.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Strong-Armed (1) 294d6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Survival Technique (2) 2ea0d4.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Scrimshaw Charm c1fb2e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Vamp (3) add233.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Well-Dressed c6ac33.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Fine Tuning (1) 103fbd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Prismatic Spectacles (2) 3adcf5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Drain Essence 9965aa.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Fake Credentials acd38d.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Cat Mask 847ed6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Prismatic Spectacles (2) 3adcf5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Drain Essence 9965aa.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Fake Credentials acd38d.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Cat Mask 847ed6.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 Eldritch Tongue e8765a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Eldritch Tongue e8765a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Tinker 102fbd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hand-Eye Coordination (1) 102fcd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom False Surrender adf28e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Purified 294d6a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom The Key of Solomon (4) ae54c6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card False Surrender adf28e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Purified 294d6a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card The Key of Solomon (4) ae54c6.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'
|
||||
@ -1505,6 +1510,11 @@ ContainedObjects:
|
||||
- !include 'Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Hypnotic Gaze (2) (Taboo) e2bc50.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Old Keyring (3) (Taboo) e7d989.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Pay Day (1) (Taboo) 9f0b35.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Scavenging (2) (Taboo) ff4aeb.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Scavenging (Taboo) 1b76c8.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml'
|
||||
- !include "Bag All Player Cards 15bb07/Card Isamara Ordo\xF1ez 860cd7.yaml"
|
||||
- !include 'Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml'
|
||||
@ -1538,7 +1548,7 @@ ContainedObjects:
|
||||
- !include 'Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 4f3637.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Trish Scarborough (Taboo) 2ce76d.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 52956d.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 0a5491.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Rex Murphy (Taboo) 0a5491.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Runic Axe Upgrade Sheet (Taboo) 4d729b.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Power Word Upgrade Sheet (Taboo) ebce85.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 957c32.yaml'
|
||||
@ -1617,77 +1627,77 @@ ContainedObjects:
|
||||
- !include 'Bag All Player Cards 15bb07/Card Final Rhapsody 561775.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Jim Culver (Parallel Back) aba863.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom The Beyond 37ab47.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Devil (2) 2a0ba5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Devil (2) 2a0ba5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Alessandra Zorzi cea425.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Alessandra Zorzi 54eaa5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Zamacona 541ba9.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Wicked Athame c9fb1f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Wolf Mask 975d89.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Beguile 019526.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Ofuda 860c1e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Providential (2) 2cf42a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Vamp add232.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom I''ll Pay You Back! 40e1ca.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Occult Reliquary (3) acd0c2.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Grift df75d7.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Guided by Faith aef282.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Alessandra Zorzi 54eaa5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Zamacona 541ba9.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Wicked Athame c9fb1f.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Wolf Mask 975d89.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Beguile 019526.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ofuda 860c1e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Providential (2) 2cf42a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Vamp add232.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card I''ll Pay You Back! 40e1ca.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Occult Reliquary (3) acd0c2.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Grift df75d7.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Guided by Faith aef282.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Hank Samson 3764cc.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Hank Samson 3764cd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Hank Samson (Assistant) 3764ce.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Hank Samson (Warden) 3764cf.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Hold Up aef182.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Pelt Shipment aa11bc.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Stir the Pot (5) add252.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Snitch (2) add242.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hank Samson 3764cd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hank Samson (Assistant) 3764ce.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hank Samson (Warden) 3764cf.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hold Up aef182.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Pelt Shipment aa11bc.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Stir the Pot (5) add252.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Snitch (2) add242.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Where''s Pa 9aba43.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Persistence (1) 2cf51.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Stouthearted 265ad2.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Control Variable 133868.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Blackmail File de456d.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Speak to the Dead c763aa.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Accursed e91c5e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Throw the Book at Them! d617ab.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Fox Mask 4144cd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/CardCustom Mouse Mask 32ad21.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Task Force (0) a5c06a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Persistence (1) 2cf51.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Stouthearted 265ad2.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Control Variable 133868.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Blackmail File de456d.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Speak to the Dead c763aa.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Accursed e91c5e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Throw the Book at Them! d617ab.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Fox Mask 4144cd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Mouse Mask 32ad21.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Task Force a5c06a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Microscope (4) fbd296.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Back Injury f6c482.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Lightfooted (0) fe1fb6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Lightfooted fe1fb6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Bewitching (3) db335c.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Flurry of Blows (5) 9e7bc8.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card British Bull Dog (2) 7b7050.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Bianca Die Katz (0) 897a94.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Bianca Die Katz 897a94.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Dirty Deeds (3) aa2d6a.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Esoteric Method (1) 9250e1.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Katana (0) f5beb5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Katana f5beb5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ethereal Weaving (3) 697efd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Putrescent Rot 2d1e60.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ravenous Myconid (4) df93ca.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Second Wind (2) c3c979.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Fire Axe (2) 326ec3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Stir the Pot (0) c25479.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Stir the Pot c25479.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Keeper of the Key 014086.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Bide Your Time (0) 24d3b3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Thorough Inquiry (0) c6b644.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Bide Your Time 24d3b3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Thorough Inquiry c6b644.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Steady-Handed (1) 9181f7.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Dawn Star (1) 8b15d7.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Seal of the Elders (5) d2b649.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Keep Faith (2) 73e4ee.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Mariner''s Compass (2) 596053.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Bank Job (0) c4dfa2.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Bank Job c4dfa2.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Abyssal Rot bbeac6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Maimed Hand cb14d3.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Testing Sprint (0) a4846b.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Testing Sprint a4846b.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Blade of Yoth c61a83.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Call the Beyond (2) 0dd070.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Gabriel Carillo (1) 7e1088.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Diabolical Luck (0) 1fea59.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Cleaning Kit (0) d07668.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Diabolical Luck 1fea59.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Cleaning Kit d07668.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Evanescent Ascension 9e763b.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Matchbox (0) b533db.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card British Bull Dog (0) 9b76a0.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Matchbox b533db.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card British Bull Dog 9b76a0.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Twilight Diadem a2f8f8.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Rod of Carnamagos (0) 66ec64.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Rod of Carnamagos 66ec64.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Spectral Razor (2) b38ded.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ethereal Form (2) e58c7b.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Cleaning Kit (3) 94c3e1.yaml'
|
||||
@ -1696,7 +1706,7 @@ ContainedObjects:
|
||||
- !include 'Bag All Player Cards 15bb07/Card Fake Credentials (4) 7ebb67.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Hunting Jacket (2) 5355fa.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Dark Horse (5) d00e4d.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Antediluvian Hymn (0) ba4746.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Antediluvian Hymn ba4746.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Aember Rot 3e6219.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card The Silver Moth 2c6dc1.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Scarlet Rot fe476c.yaml'
|
||||
@ -1711,7 +1721,16 @@ ContainedObjects:
|
||||
- !include 'Bag All Player Cards 15bb07/Card Bianca Die Katz 992ccd.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Servant of Brass 06bc7e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Read the Signs (2) 5ce4d4.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Elaborate Distraction (0) d1422e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Elaborate Distraction d1422e.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Dr. Rosa Marquez 62d5a6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card The Pearl Diary 34a7b5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Ajax f8a7c6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Corn Husk Doll 3602f5.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card The Hemlock Curse 0d0a2c.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Worry Rock 5e5dc6.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Little Sylvie 153a42.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Prismatic Shard 27fe24.yaml'
|
||||
- !include 'Bag All Player Cards 15bb07/Card Helen Peters 33bfa1.yaml'
|
||||
Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: ''
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -20,7 +20,7 @@ CustomDeck:
|
||||
Description: Advanced
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"90040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\n}"
|
||||
\ \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Red Tide Rising\"\n}"
|
||||
GUID: 89fe92
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 125300
|
||||
CardID: 917316
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'1253':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2278324186529136565/AE4B753BBB284EB12A0BDE36CEA3CD763C835AC0/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -33,7 +33,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Absolution
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94732
|
||||
CardID: 917408
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 20100
|
||||
CardID: 917417
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'201':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2172484009070977509/27A8CCF2BC48CAD909180D64177E86B8232F66C6/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -33,7 +33,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Accursed
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -20,8 +20,9 @@ CustomDeck:
|
||||
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}"
|
||||
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"uses\": [\n {\n
|
||||
\ \"count\": 3,\n \"type\": \"Universal\",\n \"token\": \"universalActionAbility\"\n
|
||||
\ }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}"
|
||||
GUID: e92f21
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -20,8 +20,9 @@ CustomDeck:
|
||||
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}"
|
||||
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"uses\": [\n {\n
|
||||
\ \"count\": 3,\n \"type\": \"Universal\",\n \"token\": \"universalActionAbility\"\n
|
||||
\ }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}"
|
||||
GUID: 074858
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 9100
|
||||
CardID: 917300
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'91':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2223150865961116295/72473371D0DB68709B4B1B9343A748510A1BB30A/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -33,7 +33,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Ad Hoc
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94733
|
||||
CardID: 917409
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 1700
|
||||
CardID: 917303
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'17':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2279448008875866961/175F57B97C6DEC14F1F6E6420A318A76D38FFE8A/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -33,7 +33,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Aetheric Current (Yoth)
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 12700
|
||||
CardID: 917302
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'127':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2279448008875867121/DD34A54C059F9DE340A3C54406A276D202D1C329/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -33,7 +33,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Aetheric Current (Yuggoth)
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -21,14 +21,15 @@ 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 \"deck_requirements\":
|
||||
{\n \"size\": 30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\":
|
||||
[\n {\n \"01012\": 1,\n \"90018\": 1\n },\n {\n \"01013\":
|
||||
1,\n \"90019\": 1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\":
|
||||
[\n \"mystic\",\n \"neutral\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 5\n }\n },\n {\n \"faction\": [\n \"spell\",\n
|
||||
\ \"occult\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
3\n }\n }\n ]\n}"
|
||||
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Bad Blood\",\n
|
||||
\ \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"01012\":
|
||||
1,\n \"90018\": 1\n },\n {\n \"01013\": 1,\n \"90019\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"faction\": [\n \"spell\",\n \"occult\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
|
||||
\ }\n ]\n}"
|
||||
GUID: 909f30
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -21,14 +21,14 @@ 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 \"deck_requirements\":
|
||||
{\n \"size\": 30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\":
|
||||
[\n {\n \"01012\": 1,\n \"90018\": 1\n },\n {\n \"01013\":
|
||||
1,\n \"90019\": 1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\":
|
||||
[\n \"mystic\",\n \"neutral\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 5\n }\n },\n {\n \"faction\": [\n \"survivor\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 2\n }\n
|
||||
\ }\n ]\n}"
|
||||
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Bad Blood\",\n
|
||||
\ \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"01012\":
|
||||
1,\n \"90018\": 1\n },\n {\n \"01013\": 1,\n \"90019\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"faction\": [\n \"survivor\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 0,\n \"max\": 2\n }\n }\n ]\n}"
|
||||
GUID: 02db0a
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -21,14 +21,15 @@ 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 \"deck_requirements\":
|
||||
{\n \"size\": 30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\":
|
||||
[\n {\n \"01012\": 1,\n \"90018\": 1\n },\n {\n \"01013\":
|
||||
1,\n \"90019\": 1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\":
|
||||
[\n \"mystic\",\n \"neutral\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 5\n }\n },\n {\n \"faction\": [\n \"spell\",\n
|
||||
\ \"occult\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
3\n }\n }\n ]\n}"
|
||||
\ \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Bad Blood\",\n \"extraToken\":
|
||||
\"None\",\n \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"01012\": 1,\n \"90018\": 1\n
|
||||
\ },\n {\n \"01013\": 1,\n \"90019\": 1\n }\n ]\n
|
||||
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"faction\": [\n \"spell\",\n \"occult\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
|
||||
\ }\n ]\n}"
|
||||
GUID: 01b6ef
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -22,10 +22,10 @@ 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 \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"01012\": 1,\n \"90018\": 1\n
|
||||
\ },\n {\n \"01013\": 1,\n \"90019\": 1\n }\n ]\n
|
||||
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
|
||||
\"Core\",\n \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\":
|
||||
30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"01012\":
|
||||
1,\n \"90018\": 1\n },\n {\n \"01013\": 1,\n \"90019\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"faction\": [\n \"survivor\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 0,\n \"max\": 2\n }\n }\n ]\n}"
|
||||
@ -70,15 +70,15 @@ States:
|
||||
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 \"deck_requirements\":
|
||||
{\r\n \"size\": 30,\r\n \"randomBasicWeaknessCount\": 1,\r\n \"signatures\":
|
||||
[\r\n {\r\n \"01012\": 1,\r\n \"90018\": 1\r\n },\r\n
|
||||
\ {\r\n \"01013\": 1,\r\n \"90019\": 1\r\n }\r\n ]\r\n
|
||||
\ },\r\n \"deck_options\": [\r\n {\r\n \"faction\": [\r\n \"mystic\",\r\n
|
||||
\ \"neutral\"\r\n ],\r\n \"level\": {\r\n \"min\": 0,\r\n
|
||||
\ \"max\": 5\r\n }\r\n },\r\n {\r\n \"faction\": [\r\n
|
||||
\ \"survivor\"\r\n ],\r\n \"level\": {\r\n \"min\": 0,\r\n
|
||||
\ \"max\": 2\r\n }\r\n }\r\n ]\r\n}\r\n"
|
||||
2,\r\n \"agilityIcons\": 3,\r\n \"cycle\": \"Core\",\r\n \"extraToken\":
|
||||
\"Reaction\", \r\n \"deck_requirements\": {\r\n \"size\": 30,\r\n \"randomBasicWeaknessCount\":
|
||||
1,\r\n \"signatures\": [\r\n {\r\n \"01012\": 1,\r\n \"90018\":
|
||||
1\r\n },\r\n {\r\n \"01013\": 1,\r\n \"90019\": 1\r\n
|
||||
\ }\r\n ]\r\n },\r\n \"deck_options\": [\r\n {\r\n \"faction\":
|
||||
[\r\n \"mystic\",\r\n \"neutral\"\r\n ],\r\n \"level\":
|
||||
{\r\n \"min\": 0,\r\n \"max\": 5\r\n }\r\n },\r\n {\r\n
|
||||
\ \"faction\": [\r\n \"survivor\"\r\n ],\r\n \"level\":
|
||||
{\r\n \"min\": 0,\r\n \"max\": 2\r\n }\r\n }\r\n ]\r\n}\r\n"
|
||||
GUID: 6797bb
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -81,12 +81,12 @@ States:
|
||||
- Minicard
|
||||
Tooltip: true
|
||||
Transform:
|
||||
posX: 40.7253036
|
||||
posY: 1.29860592
|
||||
posZ: 66.7765656
|
||||
rotX: 1.697304e-07
|
||||
rotY: 270.0102
|
||||
rotZ: 2.00479718e-07
|
||||
posX: 40
|
||||
posY: 1.3
|
||||
posZ: 66
|
||||
rotX: 0
|
||||
rotY: 270
|
||||
rotZ: 0
|
||||
scaleX: 0.6
|
||||
scaleY: 1
|
||||
scaleZ: 0.6
|
||||
|
56
unpacked/Bag All Player Cards 15bb07/Card Ajax f8a7c6.yaml
Normal file
56
unpacked/Bag All Player Cards 15bb07/Card Ajax f8a7c6.yaml
Normal file
@ -0,0 +1,56 @@
|
||||
AltLookAngle:
|
||||
x: 0
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 537606
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'5376':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2453969772006056023/3B1E7D4CD84213ED69594B15606531799383F4AA/
|
||||
NumHeight: 3
|
||||
NumWidth: 9
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: Faithful Steed
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"10642\",\n \"type\": \"Asset\",\n \"slot\": \"Ally\",\n
|
||||
\ \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Ally. Creature.\",\n
|
||||
\ \"cycle\": \"The Feast of Hemlock Vale\"\n}"
|
||||
GUID: f8a7c6
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
Hands: true
|
||||
HideWhenFaceDown: true
|
||||
IgnoreFoW: false
|
||||
LayoutGroupSortIndex: 0
|
||||
Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
Nickname: Ajax
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
||||
Tags:
|
||||
- Asset
|
||||
- PlayerCard
|
||||
Tooltip: true
|
||||
Transform:
|
||||
posX: 31.17
|
||||
posY: 3.67
|
||||
posZ: 11.69
|
||||
rotX: 0
|
||||
rotY: 270
|
||||
rotZ: 0
|
||||
scaleX: 1
|
||||
scaleY: 1
|
||||
scaleZ: 1
|
||||
Value: 0
|
||||
XmlUI: ''
|
@ -22,7 +22,7 @@ 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
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
\ \"extraToken\": \"None\",\n \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"03014\": 1\n },\n {\n \"03015\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
|
@ -3,31 +3,32 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 1100
|
||||
CardID: 117303
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'11':
|
||||
'1173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2172484009071330094/3AEFB558D789BC525F50DCC0217FA17627EB91BF/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2172484009071330266/6DD06B74E6DD4F473AB47C39DD17DF9FAD8B1455/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2424696374430631817/A15FFE0907238AB578CFEB119974545A4408E3A1/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430631996/4C0628EA8BAEB615CBF9575C1B2F0389EED9C4B7/
|
||||
NumHeight: 2
|
||||
NumWidth: 4
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
UniqueBack: true
|
||||
Description: The Countess
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"10009\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n
|
||||
\ \"traits\": \"Drifter. Socialite.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\":
|
||||
4,\n \"combatIcons\": 2,\n \"agilityIcons\": 4,\n \"cycle\": \"The Feast of Hemlock
|
||||
Vale\",\n \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"10010\": 3\n },\n {\n \"10011\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"rogue\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"special\": [\n \"parley\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n }\n ]\n}"
|
||||
Vale\",\n \"extraToken\": \"Parley\",\n \"deck_requirements\": {\n \"size\":
|
||||
30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"10010\":
|
||||
3\n },\n {\n \"10011\": 1\n }\n ]\n },\n \"deck_options\":
|
||||
[\n {\n \"faction\": [\n \"rogue\",\n \"neutral\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n
|
||||
\ \"special\": [\n \"parley\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 5\n }\n }\n ]\n}"
|
||||
GUID: 54eaa5
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
@ -39,7 +40,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Alessandra Zorzi
|
||||
SidewaysCard: true
|
||||
Snap: true
|
@ -22,13 +22,14 @@ 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 \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"07008\": 1\n },\n {\n \"07009\":
|
||||
1\n }\n ]\n \n },\n \"deck_options\": [\n {\n \"faction\":
|
||||
[\n \"seeker\",\n \"neutral\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 5\n }\n },\n {\n \"trait\": [\n \"practiced\"\n
|
||||
\ ],\n \"type\": [\n \"skill\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 3\n }\n }\n ]\n}"
|
||||
Conspiracy\",\n \"extraToken\": \"None\",\n \"deck_requirements\": {\n \"size\":
|
||||
30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"07008\":
|
||||
1\n },\n {\n \"07009\": 1\n }\n ]\n \n },\n \"deck_options\":
|
||||
[\n {\n \"faction\": [\n \"seeker\",\n \"neutral\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n
|
||||
\ \"trait\": [\n \"practiced\"\n ],\n \"type\": [\n \"skill\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
|
||||
\ }\n ]\n}"
|
||||
GUID: 05b950
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -22,13 +22,13 @@ 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
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"09012\": 1,\n \"09013\": 1\n
|
||||
\ },\n {\n \"09014\": 1\n }\n ]\n },\n \"deck_options\":
|
||||
[\n {\n \"faction\": [\n \"mystic\",\n \"neutral\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n
|
||||
\ \"trait\": [\n \"charm\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 4\n }\n }\n ]\n}"
|
||||
\ \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"09012\":
|
||||
1,\n \"09013\": 1\n },\n {\n \"09014\": 1\n }\n ]\n
|
||||
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"trait\": [\n \"charm\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 4\n }\n }\n ]\n}"
|
||||
GUID: 4c2a3d
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
238
unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.ttslua
Normal file
238
unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.ttslua
Normal file
@ -0,0 +1,238 @@
|
||||
-- Bundled by luabundle {"version":"1.6.0"}
|
||||
local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)
|
||||
local loadingPlaceholder = {[{}] = true}
|
||||
|
||||
local register
|
||||
local modules = {}
|
||||
|
||||
local require
|
||||
local loaded = {}
|
||||
|
||||
register = function(name, body)
|
||||
if not modules[name] then
|
||||
modules[name] = body
|
||||
end
|
||||
end
|
||||
|
||||
require = function(name)
|
||||
local loadedModule = loaded[name]
|
||||
|
||||
if loadedModule then
|
||||
if loadedModule == loadingPlaceholder then
|
||||
return nil
|
||||
end
|
||||
else
|
||||
if not modules[name] then
|
||||
if not superRequire then
|
||||
local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name)
|
||||
error('Tried to require ' .. identifier .. ', but no such module has been registered')
|
||||
else
|
||||
return superRequire(name)
|
||||
end
|
||||
end
|
||||
|
||||
loaded[name] = loadingPlaceholder
|
||||
loadedModule = modules[name](require, loaded, register, modules)
|
||||
loaded[name] = loadedModule
|
||||
end
|
||||
|
||||
return loadedModule
|
||||
end
|
||||
|
||||
return require, loaded, register, modules
|
||||
end)(nil)
|
||||
__bundle_register("playercards/CardsWithHelper", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
--[[ Library for cards that have helpers
|
||||
This file is used to share code between cards with helpers.
|
||||
It syncs the visibility of the helper with the option panel and
|
||||
makes sure the card has the respective tag.
|
||||
Additionally, it will call 'initiliaze()' and 'shutOff()'
|
||||
in the parent file if they are present.
|
||||
|
||||
Instructions:
|
||||
1) Define the global variables before requiring this file:
|
||||
hasXML = true (whether the card has an XML display)
|
||||
isHelperEnabled = false (default state of the helper, should be 'false')
|
||||
|
||||
2) In 'onLoad()'', call 'syncDisplayWithOptionPanel()'
|
||||
----------------------------------------------------------]]
|
||||
|
||||
local optionPanelApi = require("core/OptionPanelApi")
|
||||
|
||||
-- if the respective option is enabled in onLoad(), enable the helper
|
||||
function syncDisplayWithOptionPanel()
|
||||
self.addTag("CardWithHelper")
|
||||
local options = optionPanelApi.getOptions()
|
||||
if options.enableCardHelpers then
|
||||
setHelperState(true)
|
||||
else
|
||||
updateDisplay()
|
||||
end
|
||||
end
|
||||
|
||||
-- forces a new state
|
||||
function setHelperState(newState)
|
||||
isHelperEnabled = newState
|
||||
updateSave()
|
||||
updateDisplay()
|
||||
end
|
||||
|
||||
-- toggles the current state
|
||||
function toggleHelper()
|
||||
isHelperEnabled = not isHelperEnabled
|
||||
updateSave()
|
||||
updateDisplay()
|
||||
end
|
||||
|
||||
-- updates the visibility and calls events (after a small delay to allow XML being set)
|
||||
function updateDisplay()
|
||||
Wait.frames(actualDisplayUpdate, 5)
|
||||
end
|
||||
|
||||
function actualDisplayUpdate()
|
||||
if isHelperEnabled then
|
||||
self.clearContextMenu()
|
||||
self.addContextMenuItem("Disable Helper", toggleHelper)
|
||||
if hasXML then self.UI.show("Helper") end
|
||||
if initialize then initialize() end
|
||||
else
|
||||
self.clearContextMenu()
|
||||
self.addContextMenuItem("Enable Helper", toggleHelper)
|
||||
if hasXML then self.UI.hide("Helper") end
|
||||
if shutOff then shutOff() end
|
||||
end
|
||||
end
|
||||
end)
|
||||
__bundle_register("core/OptionPanelApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local OptionPanelApi = {}
|
||||
|
||||
-- loads saved options
|
||||
---@param options table Set a new state for the option table
|
||||
OptionPanelApi.loadSettings = function(options)
|
||||
return Global.call("loadSettings", options)
|
||||
end
|
||||
|
||||
---@return any: Table of option panel state
|
||||
OptionPanelApi.getOptions = function()
|
||||
return Global.getTable("optionPanel")
|
||||
end
|
||||
|
||||
return OptionPanelApi
|
||||
end
|
||||
end)
|
||||
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
require("playercards/cards/Analysis")
|
||||
end)
|
||||
__bundle_register("playercards/cards/Analysis", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
require("playercards/CardsWithHelper")
|
||||
require("playercards/CardsThatRedrawTokens")
|
||||
end)
|
||||
__bundle_register("playercards/CardsThatRedrawTokens", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
--[[ Library for cards that return and redraw tokens
|
||||
This file is used to add an XML button to a card, turned on via context menu.
|
||||
Valid options modify the appearance of the XML button, as well as the
|
||||
behavior of the return and redraw function. Set options before requiring this file.
|
||||
|
||||
Parameters for the return and redraw functions. Typically set VALID_TOKENS or INVALID_TOKENS, not both.
|
||||
If there are no restrictions on which tokens can be redrawn (e.g. Wendy Adams), keep both empty.
|
||||
* VALID_TOKENS --@type table
|
||||
- keyed table which lists all tokens that can be redrawn by the card
|
||||
- example usage: "False Covenant"
|
||||
> VALID_TOKENS = {
|
||||
> ["Curse"] = true
|
||||
> }
|
||||
|
||||
* INVALID_TOKENS --@type table
|
||||
- keyed table which lists all tokens that cannot be redrawn by the card
|
||||
- example usage: "Custom Ammunition"
|
||||
> INVALID_TOKENS = {
|
||||
> ["Auto-fail"] = true
|
||||
> }
|
||||
|
||||
* DRAW_SPECIFIC_TOKEN --@type string (name of token or nil)
|
||||
- if set, will attempt to draw that specific token
|
||||
|
||||
* RETURN_TO_POOL --@type string
|
||||
- allows for the name of the card to be passed onto Global for any special handling
|
||||
|
||||
The following parameters modify the appearence of the XML button and are not listed as part of a table.
|
||||
- buttonHeight (default is 450)
|
||||
- buttonWidth (default is 1400)
|
||||
- buttonPosition (default is "0 -55 -22")
|
||||
- buttonFontSize (default is 250)
|
||||
- buttonRotation (change if button is placed on an investigator cards)
|
||||
- buttonLabel (default is "Redraw Token")
|
||||
- buttonIcon (to add an icon to the right)
|
||||
- buttonColor (default is "#77674DE6")
|
||||
|
||||
----------------------------------------------------------
|
||||
EXAMPLE: Claypool's Furs
|
||||
This card can only redraw the Frost token, and is replaced with a random token from the bag.
|
||||
As a nice reminder the XML button takes on the Frost color and icon with the text "Cancel".
|
||||
> buttonValue = "Cancel"
|
||||
> buttonIcon = "token-frost"
|
||||
> buttonColor = "#404450E6"
|
||||
> buttonFontSize = 300
|
||||
|
||||
> VALID_TOKENS = {
|
||||
> ["Frost"] = true
|
||||
> }
|
||||
>
|
||||
> require...
|
||||
----------------------------------------------------------]]
|
||||
|
||||
-- intentionally global
|
||||
hasXML = true
|
||||
isHelperEnabled = false
|
||||
|
||||
function updateSave()
|
||||
self.script_state = JSON.encode({ isHelperEnabled = isHelperEnabled })
|
||||
end
|
||||
|
||||
function onLoad(savedData)
|
||||
if savedData and savedData ~= "" then
|
||||
local loadedData = JSON.decode(savedData)
|
||||
isHelperEnabled = loadedData.isHelperEnabled
|
||||
end
|
||||
createHelperXML()
|
||||
syncDisplayWithOptionPanel()
|
||||
end
|
||||
|
||||
function createHelperXML()
|
||||
local xmlTable = { {
|
||||
tag = "Button",
|
||||
attributes = {
|
||||
active = "false",
|
||||
id = "Helper",
|
||||
height = buttonHeight or 450,
|
||||
width = buttonWidth or 1400,
|
||||
rotation = buttonRotation or "0 0 180",
|
||||
scale = "0.1 0.1 1",
|
||||
position = buttonPosition or "0 -55 -22",
|
||||
padding = "50 50 50 50",
|
||||
font = "font_teutonic-arkham",
|
||||
fontSize = buttonFontSize or 250,
|
||||
onClick = "triggerXMLTokenLabelCreation",
|
||||
color = buttonColor or "#77674DE6",
|
||||
textColor = "White"
|
||||
},
|
||||
value = buttonLabel or "Redraw Token"
|
||||
} }
|
||||
if buttonIcon then
|
||||
xmlTable[1].attributes.iconWidth = "400"
|
||||
xmlTable[1].attributes.iconAlignment = "Right"
|
||||
xmlTable[1].attributes.icon = buttonIcon
|
||||
end
|
||||
self.UI.setXmlTable(xmlTable)
|
||||
end
|
||||
|
||||
function triggerXMLTokenLabelCreation()
|
||||
Global.call("activeRedrawEffect", {
|
||||
VALID_TOKENS = VALID_TOKENS,
|
||||
INVALID_TOKENS = INVALID_TOKENS,
|
||||
RETURN_TO_POOL = RETURN_TO_POOL
|
||||
})
|
||||
end
|
||||
end)
|
||||
return __bundle_require("__root")
|
@ -30,7 +30,7 @@ HideWhenFaceDown: true
|
||||
IgnoreFoW: false
|
||||
LayoutGroupSortIndex: 0
|
||||
Locked: false
|
||||
LuaScript: ''
|
||||
LuaScript: !include 'Card Analysis 80285f.ttslua'
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 4900
|
||||
CardID: 917311
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'49':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2279447674651244606/B2275AD213AF8DD0B65170BD4E5E5E98E233A6C7/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -34,7 +34,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Ancestral Token
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94737
|
||||
CardID: 917415
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
@ -35,7 +35,7 @@ LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
Nickname: Antediluvian Hymn (0)
|
||||
Nickname: Antediluvian Hymn
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378962
|
||||
CardID: 378953
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378917
|
||||
CardID: 378959
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
@ -21,7 +21,8 @@ Description: Basic Weakness
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"08130\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Injury.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n
|
||||
\ \"cycle\": \"Edge of the Earth\"\n}"
|
||||
\ \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Damage\",\n \"token\":
|
||||
\"damage\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}"
|
||||
GUID: 8f1420
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -21,11 +21,11 @@ Description: The Drifter
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02005-pb\",\n \"type\": \"Investigator\",\n \"class\":
|
||||
\"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\":
|
||||
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\",\n
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"90047\": 1,\n \"02014\": 1\n
|
||||
\ },\n {\n \"90048\": 1,\n \"02015\": 1\n }\n ]\n
|
||||
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\"\n
|
||||
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"On the Road Again\",\n
|
||||
\ \"extraToken\": \"FreeTrigger\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"90047\":
|
||||
1,\n \"02014\": 1\n },\n {\n \"90048\": 1,\n \"02015\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
|
||||
\ },\n {\n \"faction\": [\n \"neutral\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n \"trait\":
|
||||
|
@ -21,11 +21,11 @@ Description: The Drifter
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02005-pf\",\n \"type\": \"Investigator\",\n \"class\":
|
||||
\"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\":
|
||||
2,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\",\n
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"90047\": 1,\n \"02014\": 1\n
|
||||
\ },\n {\n \"90048\": 1,\n \"02015\": 1\n }\n ]\n
|
||||
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\",\n
|
||||
2,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"On the Road Again\",\n
|
||||
\ \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"90047\":
|
||||
1,\n \"02014\": 1\n },\n {\n \"90048\": 1,\n \"02015\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
0\n },\n \"limit\": 5,\n \"error\": \"You cannot have more than 5
|
||||
|
@ -21,11 +21,11 @@ Description: The Drifter
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n
|
||||
\ \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\": 2,\n
|
||||
\ \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\",\n
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"90047\": 1,\n \"02014\": 1\n
|
||||
\ },\n {\n \"90048\": 1,\n \"02015\": 1\n }\n ]\n
|
||||
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\"\n
|
||||
\ \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"On the Road Again\",\n
|
||||
\ \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"90047\":
|
||||
1,\n \"02014\": 1\n },\n {\n \"90048\": 1,\n \"02015\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
|
||||
\ },\n {\n \"faction\": [\n \"neutral\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n \"trait\":
|
||||
|
@ -22,10 +22,10 @@ DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"02005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n
|
||||
\ \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\": 2,\n
|
||||
\ \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\",\n
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"90047\": 1,\n \"02014\": 1\n
|
||||
\ },\n {\n \"90048\": 1,\n \"02015\": 1\n }\n ]\n
|
||||
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\",\n
|
||||
\ \"extraToken\": \"FreeTrigger\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"90047\":
|
||||
1,\n \"02014\": 1\n },\n {\n \"90048\": 1,\n \"02015\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
0\n },\n \"limit\": 5,\n \"error\": \"You cannot have more than 5
|
||||
|
@ -21,7 +21,9 @@ Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"09091\",\n \"type\": \"Asset\",\n \"slot\": \"Body\",\n
|
||||
\ \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n
|
||||
\ \"combatIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}"
|
||||
\ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\":
|
||||
\"PlayItem\",\n \"token\": \"universalActionAbility\"\n }\n ],\n \"cycle\":
|
||||
\"The Scarlet Keys\"\n}"
|
||||
GUID: b5d894
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94760
|
||||
CardID: 917458
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94723
|
||||
CardID: 917361
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
@ -35,7 +35,7 @@ LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
Nickname: Bank Job (0)
|
||||
Nickname: Bank Job
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 200
|
||||
CardID: 917305
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'2':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2172484009071331078/3553DC91D67F802BAFFE9F674DBE991C2D439867/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -33,7 +33,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Beguile
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94728
|
||||
CardID: 917401
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,28 +3,28 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94720
|
||||
CardID: 917354
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: Singing Your Songs
|
||||
Description: Singing Your Song
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"10062\",\n \"type\": \"Asset\",\n \"slot\": \"Ally\",\n
|
||||
\ \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally.
|
||||
Criminal. Socialite.\",\n \"bonded\": [\n {\n \"count\": 1,\n \"id\":
|
||||
\"10063\"\n }\n ],\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
|
||||
10,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n
|
||||
\ \"cycle\": \"The Feast of Hemlock Vale\"\n}"
|
||||
Criminal. Socialite.\",\n \"bonded\": [\n {\n \"count\": 1,\n \"maxCount\":
|
||||
1,\n \"id\": \"10063\"\n }\n ],\n \"agilityIcons\": 1,\n \"uses\": [\n
|
||||
\ {\n \"count\": 10,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n
|
||||
\ }\n ],\n \"cycle\": \"The Feast of Hemlock Vale\"\n}"
|
||||
GUID: 897a94
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
@ -37,7 +37,7 @@ LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
Nickname: Bianca "Die Katz" (0)
|
||||
Nickname: Bianca "Die Katz"
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
@ -3,21 +3,21 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94721
|
||||
CardID: 917355
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
Description: Enemy
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"10063\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid.
|
||||
Criminal. Socialite.\",\n \"victory\": 0,\n \"cycle\": \"The Feast of Hemlock
|
||||
@ -39,7 +39,7 @@ SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
||||
Tags:
|
||||
- ScenarioCard
|
||||
- PlayerCard
|
||||
Tooltip: true
|
||||
Transform:
|
||||
posX: 48.98
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94755
|
||||
CardID: 917451
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
@ -21,7 +21,8 @@ Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"10129\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Double.\",\n \"wildIcons\": 1,\n
|
||||
\ \"cycle\": \"The Feast of Hemlock Vale\"\n}"
|
||||
\ \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Universal\",\n \"token\":
|
||||
\"universalActionAbility\"\n }\n ],\n \"cycle\": \"The Feast of Hemlock Vale\"\n}"
|
||||
GUID: 24d3b3
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
@ -34,7 +35,7 @@ LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
Nickname: Bide Your Time (0)
|
||||
Nickname: Bide Your Time
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 9400
|
||||
CardID: 917356
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'94':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2195002645128569861/7143A7BF20E37A069E170A21D77C16C91D81374D/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -33,7 +33,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Blackmail File
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94707
|
||||
CardID: 917328
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94705
|
||||
CardID: 917326
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378947
|
||||
CardID: 378938
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378949
|
||||
CardID: 378940
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -11,8 +11,8 @@ ColorDiffuse:
|
||||
CustomDeck:
|
||||
'3795':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/1625226898126523297/2C981A8D79F76E3533ADD355F8AF406EA72B5162/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126522542/E29FEBE196344F3DEE457BE957E9AF18310C6F39/
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578166/C21CC0E4ADE06C11419F36BAEDED0BDBFF8DE5E3/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578395/F97B770FB90EA18B46F58614CCE0016406E3E777/
|
||||
NumHeight: 2
|
||||
NumWidth: 5
|
||||
Type: 0
|
||||
@ -22,16 +22,17 @@ DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"08016\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n
|
||||
\ \"traits\": \"Entrepreneur.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\":
|
||||
4,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"Edge of the Earth\",\n
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"08017\": 1\n },\n {\n \"08018\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 0\n }\n
|
||||
\ },\n {\n \"faction\": [\n \"neutral\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n \"faction\":
|
||||
[\n \"rogue\"\n ],\n \"level\": {\n \"min\": 1,\n \"max\":
|
||||
\ \"extraToken\": \"PlayItem\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"08017\":
|
||||
1\n },\n {\n \"08018\": 1\n }\n ]\n },\n \"deck_options\":
|
||||
[\n {\n \"faction\": [\n \"survivor\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 0\n }\n },\n {\n \"faction\":
|
||||
[\n \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"faction\": [\n \"rogue\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 0\n },\n \"limit\": 5,\n \"error\":
|
||||
\"You cannot have more than 5 level 0 Rogue cards\"\n }\n ]\n}"
|
||||
{\n \"min\": 1,\n \"max\": 5\n }\n },\n {\n \"faction\":
|
||||
[\n \"rogue\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
0\n },\n \"limit\": 5,\n \"error\": \"You cannot have more than 5
|
||||
level 0 Rogue cards\"\n }\n ]\n}"
|
||||
GUID: 419b0c
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -0,0 +1,878 @@
|
||||
-- Bundled by luabundle {"version":"1.6.0"}
|
||||
local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)
|
||||
local loadingPlaceholder = {[{}] = true}
|
||||
|
||||
local register
|
||||
local modules = {}
|
||||
|
||||
local require
|
||||
local loaded = {}
|
||||
|
||||
register = function(name, body)
|
||||
if not modules[name] then
|
||||
modules[name] = body
|
||||
end
|
||||
end
|
||||
|
||||
require = function(name)
|
||||
local loadedModule = loaded[name]
|
||||
|
||||
if loadedModule then
|
||||
if loadedModule == loadingPlaceholder then
|
||||
return nil
|
||||
end
|
||||
else
|
||||
if not modules[name] then
|
||||
if not superRequire then
|
||||
local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name)
|
||||
error('Tried to require ' .. identifier .. ', but no such module has been registered')
|
||||
else
|
||||
return superRequire(name)
|
||||
end
|
||||
end
|
||||
|
||||
loaded[name] = loadingPlaceholder
|
||||
loadedModule = modules[name](require, loaded, register, modules)
|
||||
loaded[name] = loadedModule
|
||||
end
|
||||
|
||||
return loadedModule
|
||||
end
|
||||
|
||||
return require, loaded, register, modules
|
||||
end)(nil)
|
||||
__bundle_register("chaosbag/ChaosBagApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local ChaosBagApi = {}
|
||||
|
||||
-- respawns the chaos bag with a new state of tokens
|
||||
---@param tokenList table List of chaos token ids
|
||||
ChaosBagApi.setChaosBagState = function(tokenList)
|
||||
Global.call("setChaosBagState", tokenList)
|
||||
end
|
||||
|
||||
-- returns a Table List of chaos token ids in the current chaos bag
|
||||
-- requires copying the data into a new table because TTS is weird about handling table return values in Global
|
||||
ChaosBagApi.getChaosBagState = function()
|
||||
local chaosBagContentsCatcher = Global.call("getChaosBagState")
|
||||
local chaosBagContents = {}
|
||||
for _, v in ipairs(chaosBagContentsCatcher) do
|
||||
table.insert(chaosBagContents, v)
|
||||
end
|
||||
return chaosBagContents
|
||||
end
|
||||
|
||||
-- checks scripting zone for chaos bag (also called by a lot of objects!)
|
||||
ChaosBagApi.findChaosBag = function()
|
||||
return Global.call("findChaosBag")
|
||||
end
|
||||
|
||||
-- returns a table of object references to the tokens in play (does not include sealed tokens!)
|
||||
ChaosBagApi.getTokensInPlay = function()
|
||||
return Global.call("getChaosTokensinPlay")
|
||||
end
|
||||
|
||||
-- returns all sealed tokens on cards to the chaos bag
|
||||
---@param playerColor string Color of the player to show the broadcast to
|
||||
ChaosBagApi.releaseAllSealedTokens = function(playerColor)
|
||||
Global.call("releaseAllSealedTokens", playerColor)
|
||||
end
|
||||
|
||||
-- returns all drawn tokens to the chaos bag
|
||||
ChaosBagApi.returnChaosTokens = function()
|
||||
Global.call("returnChaosTokens")
|
||||
end
|
||||
|
||||
-- removes the specified chaos token from the chaos bag
|
||||
---@param id string ID of the chaos token
|
||||
ChaosBagApi.removeChaosToken = function(id)
|
||||
Global.call("removeChaosToken", id)
|
||||
end
|
||||
|
||||
-- returns a chaos token to the bag and calls all relevant functions
|
||||
---@param token tts__Object Chaos token to return
|
||||
---@param fromBag boolean whether or not the token to return was in the middle of being drawn (true) or elsewhere (false)
|
||||
ChaosBagApi.returnChaosTokenToBag = function(token, fromBag)
|
||||
Global.call("returnChaosTokenToBag", { token = token, fromBag = fromBag })
|
||||
end
|
||||
|
||||
-- spawns the specified chaos token and puts it into the chaos bag
|
||||
---@param id string ID of the chaos token
|
||||
ChaosBagApi.spawnChaosToken = function(id)
|
||||
Global.call("spawnChaosToken", id)
|
||||
end
|
||||
|
||||
-- Checks to see if the chaos bag can be manipulated. If a player is searching the bag when tokens
|
||||
-- are drawn or replaced a TTS bug can cause those tokens to vanish. Any functions which change the
|
||||
-- contents of the bag should check this method before doing so.
|
||||
-- This method will broadcast a message to all players if the bag is being searched.
|
||||
---@return any: True if the bag is manipulated, false if it should be blocked.
|
||||
ChaosBagApi.canTouchChaosTokens = function()
|
||||
return Global.call("canTouchChaosTokens")
|
||||
end
|
||||
|
||||
-- draws a chaos token to a playermat
|
||||
---@param mat tts__Object Playermat that triggered this
|
||||
---@param drawAdditional boolean Controls whether additional tokens should be drawn
|
||||
---@param tokenType? string Name of token (e.g. "Bless") to be drawn from the bag
|
||||
---@param guidToBeResolved? string GUID of the sealed token to be resolved instead of drawing a token from the bag
|
||||
---@param takeParameters? table Position and rotation of the location where the new token should be drawn to, usually to replace a returned token
|
||||
---@return tts__Object: Object reference to the token that was drawn
|
||||
ChaosBagApi.drawChaosToken = function(mat, drawAdditional, tokenType, guidToBeResolved, takeParameters)
|
||||
return Global.call("drawChaosToken", {
|
||||
mat = mat,
|
||||
drawAdditional = drawAdditional,
|
||||
tokenType = tokenType,
|
||||
guidToBeResolved = guidToBeResolved,
|
||||
takeParameters = takeParameters
|
||||
})
|
||||
end
|
||||
|
||||
-- returns a Table List of chaos token ids in the current chaos bag
|
||||
-- requires copying the data into a new table because TTS is weird about handling table return values in Global
|
||||
ChaosBagApi.getIdUrlMap = function()
|
||||
return Global.getTable("ID_URL_MAP")
|
||||
end
|
||||
|
||||
return ChaosBagApi
|
||||
end
|
||||
end)
|
||||
__bundle_register("playermat/PlayermatApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local PlayermatApi = {}
|
||||
local guidReferenceApi = require("core/GUIDReferenceApi")
|
||||
local searchLib = require("util/SearchLib")
|
||||
local localInvestigatorPosition = { x = -1.17, y = 1, z = -0.01 }
|
||||
|
||||
-- Convenience function to look up a mat's object by color, or get all mats.
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
---@return table: Single-element if only single playermat is requested
|
||||
local function getMatForColor(matColor)
|
||||
if matColor == "All" then
|
||||
return guidReferenceApi.getObjectsByType("Playermat")
|
||||
else
|
||||
return { matColor = guidReferenceApi.getObjectByOwnerAndType(matColor, "Playermat") }
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the color of the closest playermat
|
||||
---@param startPos table Starting position to get the closest mat from
|
||||
PlayermatApi.getMatColorByPosition = function(startPos)
|
||||
local result, smallestDistance
|
||||
for matColor, mat in pairs(getMatForColor("All")) do
|
||||
local distance = Vector.between(startPos, mat.getPosition()):magnitude()
|
||||
if smallestDistance == nil or distance < smallestDistance then
|
||||
smallestDistance = distance
|
||||
result = matColor
|
||||
end
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
||||
-- Returns the color of the player's hand that is seated next to the playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.getPlayerColor = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.getVar("playerColor")
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the color of the playermat that owns the playercolor's hand
|
||||
---@param handColor string Color of the playermat
|
||||
PlayermatApi.getMatColor = function(handColor)
|
||||
for matColor, mat in pairs(getMatForColor("All")) do
|
||||
local playerColor = mat.getVar("playerColor")
|
||||
if playerColor == handColor then
|
||||
return matColor
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Instructs a playermat to check for DES
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.checkForDES = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("checkForDES")
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns if there is the card "Dream-Enhancing Serum" on the requested playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
---@return boolean: whether DES is present on the playermat
|
||||
PlayermatApi.hasDES = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.getVar("hasDES")
|
||||
end
|
||||
end
|
||||
|
||||
-- gets the slot data for the playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.getSlotData = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.getTable("slotData")
|
||||
end
|
||||
end
|
||||
|
||||
-- sets the slot data for the playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
---@param newSlotData table New slot data for the playermat
|
||||
PlayermatApi.loadSlotData = function(matColor, newSlotData)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.setTable("slotData", newSlotData)
|
||||
mat.call("redrawSlotSymbols")
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
-- Performs a search of the deck area of the requested playermat and returns the result as table
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.getDeckAreaObjects = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.call("getDeckAreaObjects")
|
||||
end
|
||||
end
|
||||
|
||||
-- Flips the top card of the deck (useful after deck manipulation for Norman Withers)
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.flipTopCardFromDeck = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.call("flipTopCardFromDeck")
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the position of the discard pile of the requested playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.getDiscardPosition = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.call("returnGlobalDiscardPosition")
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the position of the draw pile of the requested playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.getDrawPosition = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.call("returnGlobalDrawPosition")
|
||||
end
|
||||
end
|
||||
|
||||
-- Transforms a local position into a global position
|
||||
---@param localPos table Local position to be transformed
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.transformLocalPosition = function(localPos, matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.positionToWorld(localPos)
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the rotation of the requested playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.returnRotation = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.getRotation()
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns a table with spawn data (position and rotation) for a helper object
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
---@param helperName string Name of the helper object
|
||||
PlayermatApi.getHelperSpawnData = function(matColor, helperName)
|
||||
local resultTable = {}
|
||||
local localPositionTable = {
|
||||
["Hand Helper"] = {0.05, 0, -1.182},
|
||||
["Search Assistant"] = {-0.3, 0, -1.182}
|
||||
}
|
||||
|
||||
for color, mat in pairs(getMatForColor(matColor)) do
|
||||
resultTable[color] = {
|
||||
position = mat.positionToWorld(localPositionTable[helperName]),
|
||||
rotation = mat.getRotation()
|
||||
}
|
||||
end
|
||||
return resultTable
|
||||
end
|
||||
|
||||
|
||||
-- Triggers the Upkeep for the requested playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
---@param playerColor string Color of the calling player (for messages)
|
||||
PlayermatApi.doUpkeepFromHotkey = function(matColor, playerColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("doUpkeepFromHotkey", playerColor)
|
||||
end
|
||||
end
|
||||
|
||||
-- Handles discarding for the requested playermat for the provided list of objects
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
---@param objList table List of objects to discard
|
||||
PlayermatApi.discardListOfObjects = function(matColor, objList)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("discardListOfObjects", objList)
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the active investigator id
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.returnInvestigatorId = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.getVar("activeInvestigatorId")
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the class of the active investigator
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.returnInvestigatorClass = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.getVar("activeInvestigatorClass")
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the position for encounter card drawing
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
---@param stack boolean If true, returns the leftmost position instead of the first empty from the right
|
||||
PlayermatApi.getEncounterCardDrawPosition = function(matColor, stack)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return Vector(mat.call("getEncounterCardDrawPosition", stack))
|
||||
end
|
||||
end
|
||||
|
||||
-- Sets the requested playermat's snap points to limit snapping to matching card types or not. If
|
||||
-- matchTypes is true, the main card slot snap points will only snap assets, while the
|
||||
-- investigator area point will only snap Investigators. If matchTypes is false, snap points will
|
||||
-- be reset to snap all cards.
|
||||
---@param matchCardTypes boolean Whether snap points should only snap for the matching card types
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.setLimitSnapsByType = function(matchCardTypes, matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("setLimitSnapsByType", matchCardTypes)
|
||||
end
|
||||
end
|
||||
|
||||
-- Sets the requested playermat's draw 1 button to visible
|
||||
---@param isDrawButtonVisible boolean Whether the draw 1 button should be visible or not
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.showDrawButton = function(isDrawButtonVisible, matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("showDrawButton", isDrawButtonVisible)
|
||||
end
|
||||
end
|
||||
|
||||
-- Shows or hides the clickable clue counter for the requested playermat
|
||||
---@param showCounter boolean Whether the clickable counter should be present or not
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.clickableClues = function(showCounter, matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("clickableClues", showCounter)
|
||||
end
|
||||
end
|
||||
|
||||
-- Toggles the use of class textures for the requested playermat
|
||||
---@param state boolean Whether the class texture should be used or not
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.useClassTexture = function(state, matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("useClassTexture", state)
|
||||
end
|
||||
end
|
||||
|
||||
-- Removes all clues (to the trash for tokens and counters set to 0) for the requested playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.removeClues = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("removeClues")
|
||||
end
|
||||
end
|
||||
|
||||
-- Reports the clue count for the requested playermat
|
||||
---@param useClickableCounters boolean Controls which type of counter is getting checked
|
||||
PlayermatApi.getClueCount = function(useClickableCounters, matColor)
|
||||
local count = 0
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
count = count + mat.call("getClueCount", useClickableCounters)
|
||||
end
|
||||
return count
|
||||
end
|
||||
|
||||
-- Updates the specified owned counter
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
---@param type string Counter to target
|
||||
---@param newValue number Value to set the counter to
|
||||
---@param modifier number If newValue is not provided, the existing value will be adjusted by this modifier
|
||||
PlayermatApi.updateCounter = function(matColor, type, newValue, modifier)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("updateCounter", { type = type, newValue = newValue, modifier = modifier })
|
||||
end
|
||||
end
|
||||
|
||||
-- Triggers the draw function for the specified playermat
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
---@param number number Amount of cards to draw
|
||||
PlayermatApi.drawCardsWithReshuffle = function(matColor, number)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("drawCardsWithReshuffle", number)
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns the resource counter amount
|
||||
---@param matColor string Color of the playermat - White, Orange, Green or Red (does not support "All")
|
||||
---@param type string Counter to target
|
||||
PlayermatApi.getCounterValue = function(matColor, type)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
return mat.call("getCounterValue", type)
|
||||
end
|
||||
end
|
||||
|
||||
-- Returns a list of mat colors that have an investigator placed
|
||||
PlayermatApi.getUsedMatColors = function()
|
||||
local usedColors = {}
|
||||
for matColor, mat in pairs(getMatForColor("All")) do
|
||||
local searchPos = mat.positionToWorld(localInvestigatorPosition)
|
||||
local searchResult = searchLib.atPosition(searchPos, "isCardOrDeck")
|
||||
if #searchResult > 0 then
|
||||
table.insert(usedColors, matColor)
|
||||
end
|
||||
end
|
||||
return usedColors
|
||||
end
|
||||
|
||||
-- Returns investigator name
|
||||
---@param matColor string Color of the playmat - White, Orange, Green or Red (does not support "All")
|
||||
PlayermatApi.getInvestigatorName = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
local searchPos = mat.positionToWorld(localInvestigatorPosition)
|
||||
local searchResult = searchLib.atPosition(searchPos, "isCardOrDeck")
|
||||
if #searchResult == 1 then
|
||||
return searchResult[1].getName()
|
||||
end
|
||||
end
|
||||
return ""
|
||||
end
|
||||
|
||||
-- Resets the specified skill tracker to "1, 1, 1, 1"
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.resetSkillTracker = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("resetSkillTracker")
|
||||
end
|
||||
end
|
||||
|
||||
-- Redraws the XML for the slot symbols based on the slotData table
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.redrawSlotSymbols = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("redrawSlotSymbols")
|
||||
end
|
||||
end
|
||||
|
||||
-- Finds all objects on the playermat and associated set aside zone and returns a table
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
---@param filter string Name of the filte function (see util/SearchLib)
|
||||
PlayermatApi.searchAroundPlayermat = function(matColor, filter)
|
||||
local objList = {}
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
for _, obj in ipairs(mat.call("searchAroundSelf", filter)) do
|
||||
table.insert(objList, obj)
|
||||
end
|
||||
end
|
||||
return objList
|
||||
end
|
||||
|
||||
-- Discard a non-hidden card from the corresponding player's hand
|
||||
---@param matColor string Color of the playermat - White, Orange, Green, Red or All
|
||||
PlayermatApi.doDiscardOne = function(matColor)
|
||||
for _, mat in pairs(getMatForColor(matColor)) do
|
||||
mat.call("doDiscardOne")
|
||||
end
|
||||
end
|
||||
|
||||
-- Triggers the metadata sync for all playermats
|
||||
PlayermatApi.syncAllCustomizableCards = function()
|
||||
for _, mat in pairs(getMatForColor("All")) do
|
||||
mat.call("syncAllCustomizableCards")
|
||||
end
|
||||
end
|
||||
|
||||
return PlayermatApi
|
||||
end
|
||||
end)
|
||||
__bundle_register("core/OptionPanelApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local OptionPanelApi = {}
|
||||
|
||||
-- loads saved options
|
||||
---@param options table Set a new state for the option table
|
||||
OptionPanelApi.loadSettings = function(options)
|
||||
return Global.call("loadSettings", options)
|
||||
end
|
||||
|
||||
---@return any: Table of option panel state
|
||||
OptionPanelApi.getOptions = function()
|
||||
return Global.getTable("optionPanel")
|
||||
end
|
||||
|
||||
return OptionPanelApi
|
||||
end
|
||||
end)
|
||||
__bundle_register("util/SearchLib", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local SearchLib = {}
|
||||
local filterFunctions = {
|
||||
isCard = function(x) return x.type == "Card" end,
|
||||
isDeck = function(x) return x.type == "Deck" end,
|
||||
isCardOrDeck = function(x) return x.type == "Card" or x.type == "Deck" end,
|
||||
isClue = function(x) return x.memo == "clueDoom" and x.is_face_down == false end,
|
||||
isTileOrToken = function(x) return x.type == "Tile" end,
|
||||
isUniversalToken = function(x) return x.getMemo() == "universalActionAbility" end,
|
||||
}
|
||||
|
||||
-- performs the actual search and returns a filtered list of object references
|
||||
---@param pos tts__Vector Global position
|
||||
---@param rot? tts__Vector Global rotation
|
||||
---@param size table Size
|
||||
---@param filter? string Name of the filter function
|
||||
---@param direction? table Direction (positive is up)
|
||||
---@param maxDistance? number Distance for the cast
|
||||
local function returnSearchResult(pos, rot, size, filter, direction, maxDistance)
|
||||
local filterFunc
|
||||
if filter then
|
||||
filterFunc = filterFunctions[filter]
|
||||
end
|
||||
local searchResult = Physics.cast({
|
||||
origin = pos,
|
||||
direction = direction or { 0, 1, 0 },
|
||||
orientation = rot or { 0, 0, 0 },
|
||||
type = 3,
|
||||
size = size,
|
||||
max_distance = maxDistance or 0
|
||||
})
|
||||
|
||||
-- filter the result for matching objects
|
||||
local objList = {}
|
||||
for _, v in ipairs(searchResult) do
|
||||
if not filter or filterFunc(v.hit_object) then
|
||||
table.insert(objList, v.hit_object)
|
||||
end
|
||||
end
|
||||
return objList
|
||||
end
|
||||
|
||||
-- searches the specified area
|
||||
SearchLib.inArea = function(pos, rot, size, filter)
|
||||
return returnSearchResult(pos, rot, size, filter)
|
||||
end
|
||||
|
||||
-- searches the area on an object
|
||||
SearchLib.onObject = function(obj, filter)
|
||||
local pos = obj.getPosition()
|
||||
local size = obj.getBounds().size:setAt("y", 1)
|
||||
return returnSearchResult(pos, _, size, filter)
|
||||
end
|
||||
|
||||
-- searches the specified position (a single point)
|
||||
SearchLib.atPosition = function(pos, filter)
|
||||
local size = { 0.1, 2, 0.1 }
|
||||
return returnSearchResult(pos, _, size, filter)
|
||||
end
|
||||
|
||||
-- searches below the specified position (downwards until y = 0)
|
||||
SearchLib.belowPosition = function(pos, filter)
|
||||
local size = { 0.1, 2, 0.1 }
|
||||
local direction = { 0, -1, 0 }
|
||||
local maxDistance = pos.y
|
||||
return returnSearchResult(pos, _, size, filter, direction, maxDistance)
|
||||
end
|
||||
|
||||
return SearchLib
|
||||
end
|
||||
end)
|
||||
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
require("playercards/cards/BookofLivingMyths")
|
||||
end)
|
||||
__bundle_register("playercards/cards/BookofLivingMyths", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
require("playercards/CardsWithHelper")
|
||||
local blessCurseManagerApi = require("chaosbag/BlessCurseManagerApi")
|
||||
local chaosBagApi = require("chaosbag/ChaosBagApi")
|
||||
local guidReferenceApi = require("core/GUIDReferenceApi")
|
||||
local playermatApi = require("playermat/PlayermatApi")
|
||||
|
||||
-- intentionally global
|
||||
hasXML = true
|
||||
isHelperEnabled = false
|
||||
local updated, loopId
|
||||
|
||||
function updateSave()
|
||||
self.script_state = JSON.encode({
|
||||
isHelperEnabled = isHelperEnabled,
|
||||
loopId = loopId
|
||||
})
|
||||
end
|
||||
|
||||
function onLoad(savedData)
|
||||
if savedData and savedData ~= "" then
|
||||
local loadedData = JSON.decode(savedData)
|
||||
isHelperEnabled = loadedData.isHelperEnabled
|
||||
loopId = loadedData.loopId
|
||||
end
|
||||
syncDisplayWithOptionPanel()
|
||||
end
|
||||
|
||||
function shutOff()
|
||||
if loopId then
|
||||
Wait.stop(loopId)
|
||||
loopId = nil
|
||||
end
|
||||
end
|
||||
|
||||
function initialize()
|
||||
maybeUpdateButtonState()
|
||||
loopId = Wait.time(maybeUpdateButtonState, 1, -1)
|
||||
end
|
||||
|
||||
function resolveToken(player, _, tokenType)
|
||||
if not updated then return end
|
||||
local matColor
|
||||
if player.color == "Black" then
|
||||
matColor = playermatApi.getMatColorByPosition(self.getPosition())
|
||||
else
|
||||
matColor = playermatApi.getMatColor(player.color)
|
||||
end
|
||||
|
||||
local mat = guidReferenceApi.getObjectByOwnerAndType(matColor, "Playermat")
|
||||
chaosBagApi.drawChaosToken(mat, true, tokenType)
|
||||
updated = false
|
||||
Wait.frames(maybeUpdateButtonState, 2)
|
||||
end
|
||||
|
||||
-- count tokens in the bag and show appropriate buttons
|
||||
function maybeUpdateButtonState()
|
||||
local numInBag = blessCurseManagerApi.getBlessCurseInBag()
|
||||
local state = { Bless = false, Curse = false }
|
||||
|
||||
if numInBag.Bless >= numInBag.Curse and numInBag.Bless > 0 then
|
||||
state.Bless = true
|
||||
end
|
||||
|
||||
if numInBag.Curse >= numInBag.Bless and numInBag.Curse > 0 then
|
||||
state.Curse = true
|
||||
end
|
||||
|
||||
setUiState(state)
|
||||
updated = true
|
||||
end
|
||||
|
||||
function setUiState(params)
|
||||
for _, tokenName in ipairs({ "Bless", "Curse" }) do
|
||||
if params[tokenName] then
|
||||
self.UI.show(tokenName)
|
||||
self.UI.hide("inactive" .. tokenName)
|
||||
else
|
||||
self.UI.show("inactive" .. tokenName)
|
||||
self.UI.hide(tokenName)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function errorMessage()
|
||||
local numInBag = blessCurseManagerApi.getBlessCurseInBag()
|
||||
|
||||
if numInBag.Bless == 0 and numInBag.Curse == 0 then
|
||||
broadcastToAll("There are no Bless or Curse tokens in the chaos bag.", "Red")
|
||||
elseif numInBag.Bless > numInBag.Curse then
|
||||
broadcastToAll("There are more Bless tokens than Curse tokens in the chaos bag.", "Red")
|
||||
else
|
||||
broadcastToAll("There are more Curse tokens than Bless tokens in the chaos bag.", "Red")
|
||||
end
|
||||
end
|
||||
end)
|
||||
__bundle_register("chaosbag/BlessCurseManagerApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local BlessCurseManagerApi = {}
|
||||
local guidReferenceApi = require("core/GUIDReferenceApi")
|
||||
|
||||
local function getManager()
|
||||
return guidReferenceApi.getObjectByOwnerAndType("Mythos", "BlessCurseManager")
|
||||
end
|
||||
|
||||
-- removes all taken tokens and resets the counts
|
||||
BlessCurseManagerApi.removeTakenTokensAndReset = function()
|
||||
local BlessCurseManager = getManager()
|
||||
Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Bless") end, 0.05)
|
||||
Wait.time(function() BlessCurseManager.call("removeTakenTokens", "Curse") end, 0.10)
|
||||
Wait.time(function() BlessCurseManager.call("doReset", "White") end, 0.15)
|
||||
end
|
||||
|
||||
-- updates the internal count (called by cards that seal bless/curse tokens)
|
||||
---@param type string Type of chaos token ("Bless" or "Curse")
|
||||
---@param guid string GUID of the token
|
||||
BlessCurseManagerApi.sealedToken = function(type, guid)
|
||||
getManager().call("sealedToken", { type = type, guid = guid })
|
||||
end
|
||||
|
||||
-- updates the internal count (called by cards that seal bless/curse tokens)
|
||||
---@param type string Type of chaos token ("Bless" or "Curse")
|
||||
---@param guid string GUID of the token
|
||||
---@param fromBag? boolean Whether or not token was just drawn from the chaos bag
|
||||
BlessCurseManagerApi.releasedToken = function(type, guid, fromBag)
|
||||
getManager().call("releasedToken", { type = type, guid = guid, fromBag = fromBag })
|
||||
end
|
||||
|
||||
-- updates the internal count (called by cards that seal bless/curse tokens)
|
||||
---@param type string Type of chaos token ("Bless" or "Curse")
|
||||
---@param guid string GUID of the token
|
||||
BlessCurseManagerApi.returnedToken = function(type, guid)
|
||||
getManager().call("returnedToken", { type = type, guid = guid })
|
||||
end
|
||||
|
||||
-- broadcasts the current status for bless/curse tokens
|
||||
---@param playerColor string Color of the player to show the broadcast to
|
||||
BlessCurseManagerApi.broadcastStatus = function(playerColor)
|
||||
getManager().call("broadcastStatus", playerColor)
|
||||
end
|
||||
|
||||
-- removes all bless / curse tokens from the chaos bag and play
|
||||
---@param playerColor string Color of the player to show the broadcast to
|
||||
BlessCurseManagerApi.removeAll = function(playerColor)
|
||||
getManager().call("doRemove", playerColor)
|
||||
end
|
||||
|
||||
-- adds bless / curse sealing to the hovered card
|
||||
---@param playerColor string Color of the player to show the broadcast to
|
||||
---@param hoveredObject tts__Object Hovered object
|
||||
BlessCurseManagerApi.addBlurseSealingMenu = function(playerColor, hoveredObject)
|
||||
getManager().call("addMenuOptions", { playerColor = playerColor, hoveredObject = hoveredObject })
|
||||
end
|
||||
|
||||
-- adds bless / curse to the chaos bag
|
||||
---@param type string Type of chaos token ("Bless" or "Curse")
|
||||
BlessCurseManagerApi.addToken = function(type)
|
||||
getManager().call("addToken", type)
|
||||
end
|
||||
|
||||
-- removes bless / curse from the chaos bag
|
||||
---@param type string Type of chaos token ("Bless" or "Curse")
|
||||
BlessCurseManagerApi.removeToken = function(type)
|
||||
getManager().call("removeToken", type)
|
||||
end
|
||||
|
||||
BlessCurseManagerApi.getBlessCurseInBag = function()
|
||||
return getManager().call("getBlessCurseInBag", {})
|
||||
end
|
||||
|
||||
return BlessCurseManagerApi
|
||||
end
|
||||
end)
|
||||
__bundle_register("core/GUIDReferenceApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local GUIDReferenceApi = {}
|
||||
|
||||
local function getGuidHandler()
|
||||
return getObjectFromGUID("123456")
|
||||
end
|
||||
|
||||
-- Returns the matching object
|
||||
---@param owner string Parent object for this search
|
||||
---@param type string Type of object to search for
|
||||
---@return any: Object reference to the matching object
|
||||
GUIDReferenceApi.getObjectByOwnerAndType = function(owner, type)
|
||||
return getGuidHandler().call("getObjectByOwnerAndType", { owner = owner, type = type })
|
||||
end
|
||||
|
||||
-- Returns all matching objects as a table with references
|
||||
---@param type string Type of object to search for
|
||||
---@return table: List of object references to matching objects
|
||||
GUIDReferenceApi.getObjectsByType = function(type)
|
||||
return getGuidHandler().call("getObjectsByType", type)
|
||||
end
|
||||
|
||||
-- Returns all matching objects as a table with references
|
||||
---@param owner string Parent object for this search
|
||||
---@return table: List of object references to matching objects
|
||||
GUIDReferenceApi.getObjectsByOwner = function(owner)
|
||||
return getGuidHandler().call("getObjectsByOwner", owner)
|
||||
end
|
||||
|
||||
-- Sends new information to the reference handler to edit the main index
|
||||
---@param owner string Parent of the object
|
||||
---@param type string Type of the object
|
||||
---@param guid string GUID of the object
|
||||
GUIDReferenceApi.editIndex = function(owner, type, guid)
|
||||
return getGuidHandler().call("editIndex", {
|
||||
owner = owner,
|
||||
type = type,
|
||||
guid = guid
|
||||
})
|
||||
end
|
||||
|
||||
-- Returns the owner of an object or the object it's located on
|
||||
---@param object tts__GameObject Object for this search
|
||||
---@return string: Parent of the object or object it's located on
|
||||
GUIDReferenceApi.getOwnerOfObject = function(object)
|
||||
return getGuidHandler().call("getOwnerOfObject", object)
|
||||
end
|
||||
|
||||
return GUIDReferenceApi
|
||||
end
|
||||
end)
|
||||
__bundle_register("playercards/CardsWithHelper", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
--[[ Library for cards that have helpers
|
||||
This file is used to share code between cards with helpers.
|
||||
It syncs the visibility of the helper with the option panel and
|
||||
makes sure the card has the respective tag.
|
||||
Additionally, it will call 'initiliaze()' and 'shutOff()'
|
||||
in the parent file if they are present.
|
||||
|
||||
Instructions:
|
||||
1) Define the global variables before requiring this file:
|
||||
hasXML = true (whether the card has an XML display)
|
||||
isHelperEnabled = false (default state of the helper, should be 'false')
|
||||
|
||||
2) In 'onLoad()'', call 'syncDisplayWithOptionPanel()'
|
||||
----------------------------------------------------------]]
|
||||
|
||||
local optionPanelApi = require("core/OptionPanelApi")
|
||||
|
||||
-- if the respective option is enabled in onLoad(), enable the helper
|
||||
function syncDisplayWithOptionPanel()
|
||||
self.addTag("CardWithHelper")
|
||||
local options = optionPanelApi.getOptions()
|
||||
if options.enableCardHelpers then
|
||||
setHelperState(true)
|
||||
else
|
||||
updateDisplay()
|
||||
end
|
||||
end
|
||||
|
||||
-- forces a new state
|
||||
function setHelperState(newState)
|
||||
isHelperEnabled = newState
|
||||
updateSave()
|
||||
updateDisplay()
|
||||
end
|
||||
|
||||
-- toggles the current state
|
||||
function toggleHelper()
|
||||
isHelperEnabled = not isHelperEnabled
|
||||
updateSave()
|
||||
updateDisplay()
|
||||
end
|
||||
|
||||
-- updates the visibility and calls events (after a small delay to allow XML being set)
|
||||
function updateDisplay()
|
||||
Wait.frames(actualDisplayUpdate, 5)
|
||||
end
|
||||
|
||||
function actualDisplayUpdate()
|
||||
if isHelperEnabled then
|
||||
self.clearContextMenu()
|
||||
self.addContextMenuItem("Disable Helper", toggleHelper)
|
||||
if hasXML then self.UI.show("Helper") end
|
||||
if initialize then initialize() end
|
||||
else
|
||||
self.clearContextMenu()
|
||||
self.addContextMenuItem("Enable Helper", toggleHelper)
|
||||
if hasXML then self.UI.hide("Helper") end
|
||||
if shutOff then shutOff() end
|
||||
end
|
||||
end
|
||||
end)
|
||||
return __bundle_require("__root")
|
@ -0,0 +1,63 @@
|
||||
<!-- include playercards/BookofLivingMyths.xml -->
|
||||
<Defaults>
|
||||
<Button padding="50 50 50 50"
|
||||
font="font_teutonic-arkham"
|
||||
fontSize="300"
|
||||
iconWidth="400"
|
||||
iconAlignment="Right"
|
||||
text="Resolve"/>
|
||||
<Button class="inactive"
|
||||
onClick="errorMessage"
|
||||
color="#353535E6"
|
||||
textColor="#A0A0A0"/>
|
||||
<Button class="active"
|
||||
onClick="resolveToken"
|
||||
textColor="white"
|
||||
active="false"/>
|
||||
<TableLayout position="0 -55 -22"
|
||||
rotation="0 0 180"
|
||||
height="900"
|
||||
width="1400"
|
||||
scale="0.1 0.1 1"
|
||||
cellSpacing="80"
|
||||
cellBackgroundColor="rgba(1,1,1,0)"/>
|
||||
</Defaults>
|
||||
|
||||
<Panel id="Helper"
|
||||
active="false">
|
||||
<TableLayout>
|
||||
<Row>
|
||||
<Cell>
|
||||
<Button id="Bless"
|
||||
icon="bless"
|
||||
color="#9D702CE6"
|
||||
class="active"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
<Row>
|
||||
<Cell>
|
||||
<Button id="Curse"
|
||||
icon="curse"
|
||||
color="#633A84E6"
|
||||
class="active"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
</TableLayout>
|
||||
<TableLayout>
|
||||
<Row>
|
||||
<Cell>
|
||||
<Button id="inactiveBless"
|
||||
icon="bless"
|
||||
class="inactive"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
<Row>
|
||||
<Cell>
|
||||
<Button id="inactiveCurse"
|
||||
icon="curse"
|
||||
class="inactive"/>
|
||||
</Cell>
|
||||
</Row>
|
||||
</TableLayout>
|
||||
</Panel>
|
||||
<!-- include playercards/BookofLivingMyths.xml -->
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 8500
|
||||
CardID: 917307
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'85':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2279447041528306779/F60D99AAA35122A9553F0B5FD736DB6FB73BE7EF/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
CustomUIAssets:
|
||||
@ -41,10 +41,10 @@ HideWhenFaceDown: true
|
||||
IgnoreFoW: false
|
||||
LayoutGroupSortIndex: 0
|
||||
Locked: false
|
||||
LuaScript: !include 'CardCustom Book of Living Myths c5fb1f.ttslua'
|
||||
LuaScript: !include 'Card Book of Living Myths c5fb1f.ttslua'
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Book of Living Myths
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
@ -64,4 +64,4 @@ Transform:
|
||||
scaleY: 1
|
||||
scaleZ: 1
|
||||
Value: 0
|
||||
XmlUI: !include 'CardCustom Book of Living Myths c5fb1f.xml'
|
||||
XmlUI: !include 'Card Book of Living Myths c5fb1f.xml'
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378928
|
||||
CardID: 378919
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378930
|
||||
CardID: 378921
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94727
|
||||
CardID: 917369
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94722
|
||||
CardID: 917357
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
@ -36,7 +36,7 @@ LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
Nickname: British Bull Dog (0)
|
||||
Nickname: British Bull Dog
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94757
|
||||
CardID: 917455
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
@ -21,9 +21,10 @@ Description: Crown of Dying Light
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"10133\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
|
||||
\ \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Item. Charm. Mask.\",\n \"bonded\":
|
||||
[\n {\n \"count\": 1,\n \"id\": \"10134\"\n }\n ],\n \"wildIcons\":
|
||||
1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Offering\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"cycle\": \"The Feast of Hemlock Vale\"\n}"
|
||||
[\n {\n \"count\": 1,\n \"maxCount\": 1,\n \"id\": \"10134\"\n
|
||||
\ }\n ],\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\":
|
||||
\"Offering\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Feast
|
||||
of Hemlock Vale\"\n}"
|
||||
GUID: b6d35d
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378960
|
||||
CardID: 378951
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 379007
|
||||
CardID: 379006
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 379006
|
||||
CardID: 379005
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378916
|
||||
CardID: 378958
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94740
|
||||
CardID: 917421
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -22,12 +22,13 @@ DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"04005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n
|
||||
\ \"traits\": \"Cursed. Drifter.\",\n \"willpowerIcons\": 0,\n \"intellectIcons\":
|
||||
0,\n \"combatIcons\": 0,\n \"agilityIcons\": 0,\n \"cycle\": \"The Forgotten
|
||||
Age\",\n \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"04015\": 1\n },\n {\n \"04016\":
|
||||
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"survivor\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"trait\": [\n \"spirit\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 3\n }\n }\n ]\n}"
|
||||
Age\",\n \"extraToken\": \"None\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"04015\":
|
||||
1\n },\n {\n \"04016\": 1\n }\n ]\n },\n \"deck_options\":
|
||||
[\n {\n \"faction\": [\n \"survivor\",\n \"neutral\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n
|
||||
\ \"trait\": [\n \"spirit\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 3\n }\n }\n ]\n}"
|
||||
GUID: b02a1e
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -22,20 +22,20 @@ DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"05001\",\n \"alternate_ids\": [\n \"98010\"\n ],\n \"type\":
|
||||
\"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\",\n \"willpowerIcons\":
|
||||
3,\n \"intellectIcons\": 4,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\":
|
||||
\"The Circle Undone\",\n \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"05007\": 1,\n \"98011\": 1\n },\n
|
||||
\ {\n \"05008\": 1,\n \"98012\": 1\n }\n ]\n },\n \"deck_options\":
|
||||
[\n {\n \"not\": true,\n \"trait\": [\n \"weapon\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 1,\n \"max\": 5\n }\n },\n {\n
|
||||
\ \"faction\": [\n \"guardian\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 3\n }\n },\n {\n \"faction\": [\n \"neutral\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n
|
||||
\ },\n {\n \"special\": [\n \"heals_horror\"\n ],\n \"tag\":
|
||||
[\n \"hh\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"faction\": [\n \"seeker\",\n \"mystic\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 1\n },\n
|
||||
\ \"limit\": 15,\n \"error\": \"You cannot have more than 15 level 0-1
|
||||
Seeker and/or Mystic cards\"\n }\n ]\n}"
|
||||
\"The Circle Undone\",\n \"extraToken\": \"None\",\n \"deck_requirements\": {\n
|
||||
\ \"size\": 30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n
|
||||
\ {\n \"05007\": 1,\n \"98011\": 1\n },\n {\n \"05008\":
|
||||
1,\n \"98012\": 1\n }\n ]\n },\n \"deck_options\": [\n {\n \"not\":
|
||||
true,\n \"trait\": [\n \"weapon\"\n ],\n \"level\": {\n \"min\":
|
||||
1,\n \"max\": 5\n }\n },\n {\n \"faction\": [\n \"guardian\"\n
|
||||
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
|
||||
\ },\n {\n \"faction\": [\n \"neutral\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n \"special\":
|
||||
[\n \"heals_horror\"\n ],\n \"tag\": [\n \"hh\"\n ],\n
|
||||
\ \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n
|
||||
\ \"faction\": [\n \"seeker\",\n \"mystic\"\n ],\n \"level\":
|
||||
{\n \"min\": 0,\n \"max\": 1\n },\n \"limit\": 15,\n \"error\":
|
||||
\"You cannot have more than 15 level 0-1 Seeker and/or Mystic cards\"\n }\n ]\n}"
|
||||
GUID: b03b12
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
@ -77,23 +77,24 @@ States:
|
||||
GMNotes: "{\r\n \"id\": \"05001\",\r\n \"alternate_ids\": [\r\n \"98010\"\r\n
|
||||
\ ],\r\n \"type\": \"Investigator\",\r\n \"class\": \"Guardian\",\r\n \"traits\":
|
||||
\"Medic.\",\r\n \"willpowerIcons\": 3,\r\n \"intellectIcons\": 4,\r\n \"combatIcons\":
|
||||
2,\r\n \"agilityIcons\": 2,\r\n \"cycle\": \"The Circle Undone\",\r\n \"deck_requirements\":
|
||||
{\r\n \"size\": 30,\r\n \"randomBasicWeaknessCount\": 1,\r\n \"signatures\":
|
||||
[\r\n {\r\n \"05007\": 1,\r\n \"98011\": 1\r\n },\r\n {\r\n
|
||||
\ \"05008\": 1,\r\n \"98012\": 1\r\n }\r\n ]\r\n },\r\n \"deck_options\":
|
||||
[\r\n {\r\n \"not\": true,\r\n \"trait\": [\r\n \"weapon\"\r\n
|
||||
\ ],\r\n \"level\": {\r\n \"min\": 1,\r\n \"max\": 5\r\n
|
||||
\ }\r\n },\r\n {\r\n \"faction\": [\r\n \"guardian\"\r\n
|
||||
\ ],\r\n \"level\": {\r\n \"min\": 0,\r\n \"max\": 3\r\n
|
||||
\ }\r\n },\r\n {\r\n \"faction\": [\r\n \"neutral\"\r\n
|
||||
\ ],\r\n \"level\": {\r\n \"min\": 0,\r\n \"max\": 5\r\n
|
||||
\ }\r\n },\r\n {\r\n \"special\": [\r\n \"heals_horror\"\r\n
|
||||
\ ],\r\n \"tag\": [\r\n \"hh\"\r\n ],\r\n \"level\":
|
||||
2,\r\n \"agilityIcons\": 2,\r\n \"cycle\": \"The Circle Undone\",\r\n \"extraToken\":
|
||||
\"None\",\r\n \"deck_requirements\": {\r\n \"size\": 30,\r\n \"randomBasicWeaknessCount\":
|
||||
1,\r\n \"signatures\": [\r\n {\r\n \"05007\": 1,\r\n \"98011\":
|
||||
1\r\n },\r\n {\r\n \"05008\": 1,\r\n \"98012\": 1\r\n }\r\n
|
||||
\ ]\r\n },\r\n \"deck_options\": [\r\n {\r\n \"not\": true,\r\n
|
||||
\ \"trait\": [\r\n \"weapon\"\r\n ],\r\n \"level\": {\r\n
|
||||
\ \"min\": 1,\r\n \"max\": 5\r\n }\r\n },\r\n {\r\n
|
||||
\ \"faction\": [\r\n \"guardian\"\r\n ],\r\n \"level\":
|
||||
{\r\n \"min\": 0,\r\n \"max\": 3\r\n }\r\n },\r\n {\r\n
|
||||
\ \"faction\": [\r\n \"neutral\"\r\n ],\r\n \"level\":
|
||||
{\r\n \"min\": 0,\r\n \"max\": 5\r\n }\r\n },\r\n {\r\n
|
||||
\ \"faction\": [\r\n \"seeker\",\r\n \"mystic\"\r\n ],\r\n
|
||||
\ \"level\": {\r\n \"min\": 0,\r\n \"max\": 1\r\n },\r\n
|
||||
\ \"limit\": 15,\r\n \"error\": \"You cannot have more than 15 level
|
||||
0-1 Seeker and/or Mystic cards\"\r\n }\r\n ]\r\n}\r\n"
|
||||
\ \"special\": [\r\n \"heals_horror\"\r\n ],\r\n \"tag\":
|
||||
[\r\n \"hh\"\r\n ],\r\n \"level\": {\r\n \"min\": 0,\r\n
|
||||
\ \"max\": 5\r\n }\r\n },\r\n {\r\n \"faction\": [\r\n
|
||||
\ \"seeker\",\r\n \"mystic\"\r\n ],\r\n \"level\": {\r\n
|
||||
\ \"min\": 0,\r\n \"max\": 1\r\n },\r\n \"limit\": 15,\r\n
|
||||
\ \"error\": \"You cannot have more than 15 level 0-1 Seeker and/or Mystic
|
||||
cards\"\r\n }\r\n ]\r\n}\r\n"
|
||||
GUID: 9900a3
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -22,20 +22,21 @@ DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"09001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n
|
||||
\ \"traits\": \"Assistant.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 2,\n
|
||||
\ \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Scarlet Keys\",\n
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"09002\": 2\n },\n {\n \"09003\":
|
||||
1\n }\n ],\n \"choices\": 1\n },\n \"deck_options\": [\n {\n \"faction\":
|
||||
[\n \"guardian\",\n \"neutral\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 5\n }\n },\n {\n \"choiceName\": \"Seeker\",\n
|
||||
\ \"faction\": [\n \"seeker\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 1\n },\n \"type\": [\n \"event\",\n \"skill\"\n
|
||||
\ ],\n \"limit\": 10\n },\n {\n \"choiceName\": \"Mystic\",\n
|
||||
\ \"faction\": [\n \"mystic\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 1\n },\n \"type\": [\n \"event\",\n \"skill\"\n
|
||||
\ ],\n \"limit\": 10\n },\n {\n \"choiceName\": \"Survivor\",\n
|
||||
\ \"faction\": [\n \"survivor\"\n ],\n \"level\": {\n \"min\":
|
||||
0,\n \"max\": 1\n },\n \"type\": [\n \"event\",\n \"skill\"\n
|
||||
\ ],\n \"limit\": 10\n }\n ]\n}"
|
||||
\ \"extraToken\": \"Activate\",\n \"deck_requirements\": {\n \"size\": 30,\n
|
||||
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"09002\":
|
||||
2\n },\n {\n \"09003\": 1\n }\n ],\n \"choices\": 1\n
|
||||
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"guardian\",\n
|
||||
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
5\n }\n },\n {\n \"choiceName\": \"Seeker\",\n \"faction\":
|
||||
[\n \"seeker\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
1\n },\n \"type\": [\n \"event\",\n \"skill\"\n ],\n
|
||||
\ \"limit\": 10\n },\n {\n \"choiceName\": \"Mystic\",\n \"faction\":
|
||||
[\n \"mystic\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
1\n },\n \"type\": [\n \"event\",\n \"skill\"\n ],\n
|
||||
\ \"limit\": 10\n },\n {\n \"choiceName\": \"Survivor\",\n \"faction\":
|
||||
[\n \"survivor\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
1\n },\n \"type\": [\n \"event\",\n \"skill\"\n ],\n
|
||||
\ \"limit\": 10\n }\n ]\n}"
|
||||
GUID: dc96d1
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 40300
|
||||
CardID: 917406
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'403':
|
||||
'9174':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2278324186559601365/6C247C82793481C97E24F74A26AF905E3B708C50/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: The Capricious Meddler
|
||||
@ -35,7 +35,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Cat Mask
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -22,7 +22,7 @@ DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"09018\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Civic. Socialite.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\":
|
||||
1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\",\n
|
||||
\ \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
\ \"extraToken\": \"None\",\n \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
|
||||
1,\n \"signatures\": [\n {\n \"09019\": 1\n },\n {\n \"09020\":
|
||||
1\n }\n ],\n \"choices\": 2\n },\n \"deck_options\": [\n {\n \"faction\":
|
||||
[\n \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 12102
|
||||
CardID: 917332
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'121':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2021607169641060708/B263E98D28E301D8EF45EB001FEBCE98DA25354B/
|
||||
NumHeight: 2
|
||||
NumWidth: 6
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
|
@ -0,0 +1,247 @@
|
||||
-- Bundled by luabundle {"version":"1.6.0"}
|
||||
local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)
|
||||
local loadingPlaceholder = {[{}] = true}
|
||||
|
||||
local register
|
||||
local modules = {}
|
||||
|
||||
local require
|
||||
local loaded = {}
|
||||
|
||||
register = function(name, body)
|
||||
if not modules[name] then
|
||||
modules[name] = body
|
||||
end
|
||||
end
|
||||
|
||||
require = function(name)
|
||||
local loadedModule = loaded[name]
|
||||
|
||||
if loadedModule then
|
||||
if loadedModule == loadingPlaceholder then
|
||||
return nil
|
||||
end
|
||||
else
|
||||
if not modules[name] then
|
||||
if not superRequire then
|
||||
local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name)
|
||||
error('Tried to require ' .. identifier .. ', but no such module has been registered')
|
||||
else
|
||||
return superRequire(name)
|
||||
end
|
||||
end
|
||||
|
||||
loaded[name] = loadingPlaceholder
|
||||
loadedModule = modules[name](require, loaded, register, modules)
|
||||
loaded[name] = loadedModule
|
||||
end
|
||||
|
||||
return loadedModule
|
||||
end
|
||||
|
||||
return require, loaded, register, modules
|
||||
end)(nil)
|
||||
__bundle_register("playercards/CardsThatRedrawTokens", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
--[[ Library for cards that return and redraw tokens
|
||||
This file is used to add an XML button to a card, turned on via context menu.
|
||||
Valid options modify the appearance of the XML button, as well as the
|
||||
behavior of the return and redraw function. Set options before requiring this file.
|
||||
|
||||
Parameters for the return and redraw functions. Typically set VALID_TOKENS or INVALID_TOKENS, not both.
|
||||
If there are no restrictions on which tokens can be redrawn (e.g. Wendy Adams), keep both empty.
|
||||
* VALID_TOKENS --@type table
|
||||
- keyed table which lists all tokens that can be redrawn by the card
|
||||
- example usage: "False Covenant"
|
||||
> VALID_TOKENS = {
|
||||
> ["Curse"] = true
|
||||
> }
|
||||
|
||||
* INVALID_TOKENS --@type table
|
||||
- keyed table which lists all tokens that cannot be redrawn by the card
|
||||
- example usage: "Custom Ammunition"
|
||||
> INVALID_TOKENS = {
|
||||
> ["Auto-fail"] = true
|
||||
> }
|
||||
|
||||
* DRAW_SPECIFIC_TOKEN --@type string (name of token or nil)
|
||||
- if set, will attempt to draw that specific token
|
||||
|
||||
* RETURN_TO_POOL --@type string
|
||||
- allows for the name of the card to be passed onto Global for any special handling
|
||||
|
||||
The following parameters modify the appearence of the XML button and are not listed as part of a table.
|
||||
- buttonHeight (default is 450)
|
||||
- buttonWidth (default is 1400)
|
||||
- buttonPosition (default is "0 -55 -22")
|
||||
- buttonFontSize (default is 250)
|
||||
- buttonRotation (change if button is placed on an investigator cards)
|
||||
- buttonLabel (default is "Redraw Token")
|
||||
- buttonIcon (to add an icon to the right)
|
||||
- buttonColor (default is "#77674DE6")
|
||||
|
||||
----------------------------------------------------------
|
||||
EXAMPLE: Claypool's Furs
|
||||
This card can only redraw the Frost token, and is replaced with a random token from the bag.
|
||||
As a nice reminder the XML button takes on the Frost color and icon with the text "Cancel".
|
||||
> buttonValue = "Cancel"
|
||||
> buttonIcon = "token-frost"
|
||||
> buttonColor = "#404450E6"
|
||||
> buttonFontSize = 300
|
||||
|
||||
> VALID_TOKENS = {
|
||||
> ["Frost"] = true
|
||||
> }
|
||||
>
|
||||
> require...
|
||||
----------------------------------------------------------]]
|
||||
|
||||
-- intentionally global
|
||||
hasXML = true
|
||||
isHelperEnabled = false
|
||||
|
||||
function updateSave()
|
||||
self.script_state = JSON.encode({ isHelperEnabled = isHelperEnabled })
|
||||
end
|
||||
|
||||
function onLoad(savedData)
|
||||
if savedData and savedData ~= "" then
|
||||
local loadedData = JSON.decode(savedData)
|
||||
isHelperEnabled = loadedData.isHelperEnabled
|
||||
end
|
||||
createHelperXML()
|
||||
syncDisplayWithOptionPanel()
|
||||
end
|
||||
|
||||
function createHelperXML()
|
||||
local xmlTable = { {
|
||||
tag = "Button",
|
||||
attributes = {
|
||||
active = "false",
|
||||
id = "Helper",
|
||||
height = buttonHeight or 450,
|
||||
width = buttonWidth or 1400,
|
||||
rotation = buttonRotation or "0 0 180",
|
||||
scale = "0.1 0.1 1",
|
||||
position = buttonPosition or "0 -55 -22",
|
||||
padding = "50 50 50 50",
|
||||
font = "font_teutonic-arkham",
|
||||
fontSize = buttonFontSize or 250,
|
||||
onClick = "triggerXMLTokenLabelCreation",
|
||||
color = buttonColor or "#77674DE6",
|
||||
textColor = "White"
|
||||
},
|
||||
value = buttonLabel or "Redraw Token"
|
||||
} }
|
||||
if buttonIcon then
|
||||
xmlTable[1].attributes.iconWidth = "400"
|
||||
xmlTable[1].attributes.iconAlignment = "Right"
|
||||
xmlTable[1].attributes.icon = buttonIcon
|
||||
end
|
||||
self.UI.setXmlTable(xmlTable)
|
||||
end
|
||||
|
||||
function triggerXMLTokenLabelCreation()
|
||||
Global.call("activeRedrawEffect", {
|
||||
VALID_TOKENS = VALID_TOKENS,
|
||||
INVALID_TOKENS = INVALID_TOKENS,
|
||||
RETURN_TO_POOL = RETURN_TO_POOL
|
||||
})
|
||||
end
|
||||
end)
|
||||
__bundle_register("playercards/CardsWithHelper", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
--[[ Library for cards that have helpers
|
||||
This file is used to share code between cards with helpers.
|
||||
It syncs the visibility of the helper with the option panel and
|
||||
makes sure the card has the respective tag.
|
||||
Additionally, it will call 'initiliaze()' and 'shutOff()'
|
||||
in the parent file if they are present.
|
||||
|
||||
Instructions:
|
||||
1) Define the global variables before requiring this file:
|
||||
hasXML = true (whether the card has an XML display)
|
||||
isHelperEnabled = false (default state of the helper, should be 'false')
|
||||
|
||||
2) In 'onLoad()'', call 'syncDisplayWithOptionPanel()'
|
||||
----------------------------------------------------------]]
|
||||
|
||||
local optionPanelApi = require("core/OptionPanelApi")
|
||||
|
||||
-- if the respective option is enabled in onLoad(), enable the helper
|
||||
function syncDisplayWithOptionPanel()
|
||||
self.addTag("CardWithHelper")
|
||||
local options = optionPanelApi.getOptions()
|
||||
if options.enableCardHelpers then
|
||||
setHelperState(true)
|
||||
else
|
||||
updateDisplay()
|
||||
end
|
||||
end
|
||||
|
||||
-- forces a new state
|
||||
function setHelperState(newState)
|
||||
isHelperEnabled = newState
|
||||
updateSave()
|
||||
updateDisplay()
|
||||
end
|
||||
|
||||
-- toggles the current state
|
||||
function toggleHelper()
|
||||
isHelperEnabled = not isHelperEnabled
|
||||
updateSave()
|
||||
updateDisplay()
|
||||
end
|
||||
|
||||
-- updates the visibility and calls events (after a small delay to allow XML being set)
|
||||
function updateDisplay()
|
||||
Wait.frames(actualDisplayUpdate, 5)
|
||||
end
|
||||
|
||||
function actualDisplayUpdate()
|
||||
if isHelperEnabled then
|
||||
self.clearContextMenu()
|
||||
self.addContextMenuItem("Disable Helper", toggleHelper)
|
||||
if hasXML then self.UI.show("Helper") end
|
||||
if initialize then initialize() end
|
||||
else
|
||||
self.clearContextMenu()
|
||||
self.addContextMenuItem("Enable Helper", toggleHelper)
|
||||
if hasXML then self.UI.hide("Helper") end
|
||||
if shutOff then shutOff() end
|
||||
end
|
||||
end
|
||||
end)
|
||||
__bundle_register("core/OptionPanelApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local OptionPanelApi = {}
|
||||
|
||||
-- loads saved options
|
||||
---@param options table Set a new state for the option table
|
||||
OptionPanelApi.loadSettings = function(options)
|
||||
return Global.call("loadSettings", options)
|
||||
end
|
||||
|
||||
---@return any: Table of option panel state
|
||||
OptionPanelApi.getOptions = function()
|
||||
return Global.getTable("optionPanel")
|
||||
end
|
||||
|
||||
return OptionPanelApi
|
||||
end
|
||||
end)
|
||||
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
require("playercards/cards/ClaypoolsFurs")
|
||||
end)
|
||||
__bundle_register("playercards/cards/ClaypoolsFurs", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
buttonLabel = "Cancel"
|
||||
buttonIcon = "token-frost"
|
||||
buttonColor = "#404450E6"
|
||||
buttonFontSize = 300
|
||||
|
||||
VALID_TOKENS = {
|
||||
["Frost"] = true
|
||||
}
|
||||
|
||||
require("playercards/CardsWithHelper")
|
||||
require("playercards/CardsThatRedrawTokens")
|
||||
end)
|
||||
return __bundle_require("__root")
|
@ -30,7 +30,7 @@ HideWhenFaceDown: true
|
||||
IgnoreFoW: false
|
||||
LayoutGroupSortIndex: 0
|
||||
Locked: false
|
||||
LuaScript: ''
|
||||
LuaScript: !include 'Card Claypool''s Furs c1f999.ttslua'
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94704
|
||||
CardID: 917325
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,16 +3,16 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 94700
|
||||
CardID: 917312
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'947':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2286207513864999779/940B69318E315879D88F91454332BB6D0DFB03B6/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
@ -36,7 +36,7 @@ LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
Nickname: Cleaning Kit (0)
|
||||
Nickname: Cleaning Kit
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 124100
|
||||
CardID: 917349
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'1241':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2278324186529136671/AC1530FE71D9E5CF4F816A488E07076AC8064BD8/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -33,7 +33,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Confound (3)
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -3,18 +3,18 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 34200
|
||||
CardID: 917338
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'342':
|
||||
'9173':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2172484009070977979/A629DD5733453F892F57514EC5950E087486896F/
|
||||
NumHeight: 1
|
||||
NumWidth: 1
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: ''
|
||||
@ -34,7 +34,7 @@ Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: CardCustom
|
||||
Name: Card
|
||||
Nickname: Control Variable
|
||||
SidewaysCard: false
|
||||
Snap: true
|
@ -0,0 +1,57 @@
|
||||
AltLookAngle:
|
||||
x: 0
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 536430
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
r: 0.71324
|
||||
CustomDeck:
|
||||
'5364':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2453969772006048567/4C173CF8E2E2F69C7374D65AAA2D842C048FC792/
|
||||
NumHeight: 5
|
||||
NumWidth: 8
|
||||
Type: 0
|
||||
UniqueBack: false
|
||||
Description: Symbol of Innocence
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"10714\",\n \"type\": \"Asset\",\n \"slot\": \"Accessory\",\n
|
||||
\ \"class\": \"Neutral\",\n \"cost\": 1,\n \"willpowerIcons\": 1,\n \"agilityIcons\":
|
||||
1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Wish\",\n \"token\":
|
||||
\"resource\"\n }\n ],\n \"cycle\": \"The Feast of Hemlock Vale\"\n}"
|
||||
GUID: 3602f5
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
Hands: true
|
||||
HideWhenFaceDown: true
|
||||
IgnoreFoW: false
|
||||
LayoutGroupSortIndex: 0
|
||||
Locked: false
|
||||
LuaScript: ''
|
||||
LuaScriptState: ''
|
||||
MeasureMovement: false
|
||||
Name: Card
|
||||
Nickname: Corn Husk Doll
|
||||
SidewaysCard: false
|
||||
Snap: true
|
||||
Sticky: true
|
||||
Tags:
|
||||
- Asset
|
||||
- PlayerCard
|
||||
Tooltip: true
|
||||
Transform:
|
||||
posX: 34.33
|
||||
posY: 3.67
|
||||
posZ: 9.4
|
||||
rotX: 0
|
||||
rotY: 270
|
||||
rotZ: 0
|
||||
scaleX: 1
|
||||
scaleY: 1
|
||||
scaleZ: 1
|
||||
Value: 0
|
||||
XmlUI: ''
|
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3790':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
@ -22,7 +22,7 @@ DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"90031\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
|
||||
\ \"traits\": \"Task.\",\n \"weakness\": true,\n \"uses\": [\n {\n \"count\":
|
||||
4,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ],\n \"cycle\":
|
||||
\"Standalone\"\n}"
|
||||
\"By the Book\"\n}"
|
||||
GUID: f802e3
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -3,7 +3,7 @@ AltLookAngle:
|
||||
y: 0
|
||||
z: 0
|
||||
Autoraise: true
|
||||
CardID: 378961
|
||||
CardID: 378952
|
||||
ColorDiffuse:
|
||||
b: 0.71324
|
||||
g: 0.71324
|
||||
@ -12,7 +12,7 @@ CustomDeck:
|
||||
'3789':
|
||||
BackIsHidden: true
|
||||
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
|
||||
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
|
||||
NumHeight: 7
|
||||
NumWidth: 10
|
||||
Type: 0
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -21,8 +21,9 @@ Description: ''
|
||||
DragSelectable: true
|
||||
GMNotes: "{\n \"id\": \"06024\",\n \"type\": \"Asset\",\n \"slot\": \"Accessory\",\n
|
||||
\ \"class\": \"Rogue\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.
|
||||
Relic.\",\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06025\"\n
|
||||
\ }\n ],\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}"
|
||||
Relic.\",\n \"bonded\": [\n {\n \"count\": 1,\n \"maxCount\": 2,\n
|
||||
\ \"id\": \"06025\"\n }\n ],\n \"willpowerIcons\": 1,\n \"cycle\": \"The
|
||||
Dream-Eaters\"\n}"
|
||||
GUID: 6692de
|
||||
Grid: true
|
||||
GridProjection: false
|
||||
|
@ -0,0 +1,242 @@
|
||||
-- Bundled by luabundle {"version":"1.6.0"}
|
||||
local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)
|
||||
local loadingPlaceholder = {[{}] = true}
|
||||
|
||||
local register
|
||||
local modules = {}
|
||||
|
||||
local require
|
||||
local loaded = {}
|
||||
|
||||
register = function(name, body)
|
||||
if not modules[name] then
|
||||
modules[name] = body
|
||||
end
|
||||
end
|
||||
|
||||
require = function(name)
|
||||
local loadedModule = loaded[name]
|
||||
|
||||
if loadedModule then
|
||||
if loadedModule == loadingPlaceholder then
|
||||
return nil
|
||||
end
|
||||
else
|
||||
if not modules[name] then
|
||||
if not superRequire then
|
||||
local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name)
|
||||
error('Tried to require ' .. identifier .. ', but no such module has been registered')
|
||||
else
|
||||
return superRequire(name)
|
||||
end
|
||||
end
|
||||
|
||||
loaded[name] = loadingPlaceholder
|
||||
loadedModule = modules[name](require, loaded, register, modules)
|
||||
loaded[name] = loadedModule
|
||||
end
|
||||
|
||||
return loadedModule
|
||||
end
|
||||
|
||||
return require, loaded, register, modules
|
||||
end)(nil)
|
||||
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
require("playercards/cards/CustomModifications")
|
||||
end)
|
||||
__bundle_register("playercards/cards/CustomModifications", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
INVALID_TOKENS = {
|
||||
["Auto-fail"] = true
|
||||
}
|
||||
|
||||
require("playercards/CardsWithHelper")
|
||||
require("playercards/CardsThatRedrawTokens")
|
||||
end)
|
||||
__bundle_register("playercards/CardsThatRedrawTokens", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
--[[ Library for cards that return and redraw tokens
|
||||
This file is used to add an XML button to a card, turned on via context menu.
|
||||
Valid options modify the appearance of the XML button, as well as the
|
||||
behavior of the return and redraw function. Set options before requiring this file.
|
||||
|
||||
Parameters for the return and redraw functions. Typically set VALID_TOKENS or INVALID_TOKENS, not both.
|
||||
If there are no restrictions on which tokens can be redrawn (e.g. Wendy Adams), keep both empty.
|
||||
* VALID_TOKENS --@type table
|
||||
- keyed table which lists all tokens that can be redrawn by the card
|
||||
- example usage: "False Covenant"
|
||||
> VALID_TOKENS = {
|
||||
> ["Curse"] = true
|
||||
> }
|
||||
|
||||
* INVALID_TOKENS --@type table
|
||||
- keyed table which lists all tokens that cannot be redrawn by the card
|
||||
- example usage: "Custom Ammunition"
|
||||
> INVALID_TOKENS = {
|
||||
> ["Auto-fail"] = true
|
||||
> }
|
||||
|
||||
* DRAW_SPECIFIC_TOKEN --@type string (name of token or nil)
|
||||
- if set, will attempt to draw that specific token
|
||||
|
||||
* RETURN_TO_POOL --@type string
|
||||
- allows for the name of the card to be passed onto Global for any special handling
|
||||
|
||||
The following parameters modify the appearence of the XML button and are not listed as part of a table.
|
||||
- buttonHeight (default is 450)
|
||||
- buttonWidth (default is 1400)
|
||||
- buttonPosition (default is "0 -55 -22")
|
||||
- buttonFontSize (default is 250)
|
||||
- buttonRotation (change if button is placed on an investigator cards)
|
||||
- buttonLabel (default is "Redraw Token")
|
||||
- buttonIcon (to add an icon to the right)
|
||||
- buttonColor (default is "#77674DE6")
|
||||
|
||||
----------------------------------------------------------
|
||||
EXAMPLE: Claypool's Furs
|
||||
This card can only redraw the Frost token, and is replaced with a random token from the bag.
|
||||
As a nice reminder the XML button takes on the Frost color and icon with the text "Cancel".
|
||||
> buttonValue = "Cancel"
|
||||
> buttonIcon = "token-frost"
|
||||
> buttonColor = "#404450E6"
|
||||
> buttonFontSize = 300
|
||||
|
||||
> VALID_TOKENS = {
|
||||
> ["Frost"] = true
|
||||
> }
|
||||
>
|
||||
> require...
|
||||
----------------------------------------------------------]]
|
||||
|
||||
-- intentionally global
|
||||
hasXML = true
|
||||
isHelperEnabled = false
|
||||
|
||||
function updateSave()
|
||||
self.script_state = JSON.encode({ isHelperEnabled = isHelperEnabled })
|
||||
end
|
||||
|
||||
function onLoad(savedData)
|
||||
if savedData and savedData ~= "" then
|
||||
local loadedData = JSON.decode(savedData)
|
||||
isHelperEnabled = loadedData.isHelperEnabled
|
||||
end
|
||||
createHelperXML()
|
||||
syncDisplayWithOptionPanel()
|
||||
end
|
||||
|
||||
function createHelperXML()
|
||||
local xmlTable = { {
|
||||
tag = "Button",
|
||||
attributes = {
|
||||
active = "false",
|
||||
id = "Helper",
|
||||
height = buttonHeight or 450,
|
||||
width = buttonWidth or 1400,
|
||||
rotation = buttonRotation or "0 0 180",
|
||||
scale = "0.1 0.1 1",
|
||||
position = buttonPosition or "0 -55 -22",
|
||||
padding = "50 50 50 50",
|
||||
font = "font_teutonic-arkham",
|
||||
fontSize = buttonFontSize or 250,
|
||||
onClick = "triggerXMLTokenLabelCreation",
|
||||
color = buttonColor or "#77674DE6",
|
||||
textColor = "White"
|
||||
},
|
||||
value = buttonLabel or "Redraw Token"
|
||||
} }
|
||||
if buttonIcon then
|
||||
xmlTable[1].attributes.iconWidth = "400"
|
||||
xmlTable[1].attributes.iconAlignment = "Right"
|
||||
xmlTable[1].attributes.icon = buttonIcon
|
||||
end
|
||||
self.UI.setXmlTable(xmlTable)
|
||||
end
|
||||
|
||||
function triggerXMLTokenLabelCreation()
|
||||
Global.call("activeRedrawEffect", {
|
||||
VALID_TOKENS = VALID_TOKENS,
|
||||
INVALID_TOKENS = INVALID_TOKENS,
|
||||
RETURN_TO_POOL = RETURN_TO_POOL
|
||||
})
|
||||
end
|
||||
end)
|
||||
__bundle_register("playercards/CardsWithHelper", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
--[[ Library for cards that have helpers
|
||||
This file is used to share code between cards with helpers.
|
||||
It syncs the visibility of the helper with the option panel and
|
||||
makes sure the card has the respective tag.
|
||||
Additionally, it will call 'initiliaze()' and 'shutOff()'
|
||||
in the parent file if they are present.
|
||||
|
||||
Instructions:
|
||||
1) Define the global variables before requiring this file:
|
||||
hasXML = true (whether the card has an XML display)
|
||||
isHelperEnabled = false (default state of the helper, should be 'false')
|
||||
|
||||
2) In 'onLoad()'', call 'syncDisplayWithOptionPanel()'
|
||||
----------------------------------------------------------]]
|
||||
|
||||
local optionPanelApi = require("core/OptionPanelApi")
|
||||
|
||||
-- if the respective option is enabled in onLoad(), enable the helper
|
||||
function syncDisplayWithOptionPanel()
|
||||
self.addTag("CardWithHelper")
|
||||
local options = optionPanelApi.getOptions()
|
||||
if options.enableCardHelpers then
|
||||
setHelperState(true)
|
||||
else
|
||||
updateDisplay()
|
||||
end
|
||||
end
|
||||
|
||||
-- forces a new state
|
||||
function setHelperState(newState)
|
||||
isHelperEnabled = newState
|
||||
updateSave()
|
||||
updateDisplay()
|
||||
end
|
||||
|
||||
-- toggles the current state
|
||||
function toggleHelper()
|
||||
isHelperEnabled = not isHelperEnabled
|
||||
updateSave()
|
||||
updateDisplay()
|
||||
end
|
||||
|
||||
-- updates the visibility and calls events (after a small delay to allow XML being set)
|
||||
function updateDisplay()
|
||||
Wait.frames(actualDisplayUpdate, 5)
|
||||
end
|
||||
|
||||
function actualDisplayUpdate()
|
||||
if isHelperEnabled then
|
||||
self.clearContextMenu()
|
||||
self.addContextMenuItem("Disable Helper", toggleHelper)
|
||||
if hasXML then self.UI.show("Helper") end
|
||||
if initialize then initialize() end
|
||||
else
|
||||
self.clearContextMenu()
|
||||
self.addContextMenuItem("Enable Helper", toggleHelper)
|
||||
if hasXML then self.UI.hide("Helper") end
|
||||
if shutOff then shutOff() end
|
||||
end
|
||||
end
|
||||
end)
|
||||
__bundle_register("core/OptionPanelApi", function(require, _LOADED, __bundle_register, __bundle_modules)
|
||||
do
|
||||
local OptionPanelApi = {}
|
||||
|
||||
-- loads saved options
|
||||
---@param options table Set a new state for the option table
|
||||
OptionPanelApi.loadSettings = function(options)
|
||||
return Global.call("loadSettings", options)
|
||||
end
|
||||
|
||||
---@return any: Table of option panel state
|
||||
OptionPanelApi.getOptions = function()
|
||||
return Global.getTable("optionPanel")
|
||||
end
|
||||
|
||||
return OptionPanelApi
|
||||
end
|
||||
end)
|
||||
return __bundle_require("__root")
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user