2022-12-07 13:02:09 +01:00
<!-- Default formatting -->
<Defaults >
2022-12-07 16:40:55 +01:00
<Text color= "white" alignment= "MiddleLeft" />
2022-12-08 12:01:10 +01:00
<Toggle isOn= "False" rectAlignment= "MiddleRight" />
2022-12-07 13:02:09 +01:00
2022-12-17 02:49:34 +01:00
<VerticalLayout class= "window" visibility= "Admin" active= "false" color= "black" width= "500" height= "700" outlineSize= "1 1" outline= "grey" showAnimation= "SlideIn_Right" hideAnimation= "SlideOut_Right" animationDuration= "0.1" />
<VerticalLayout class= "group" visibility= "Admin" outlineSize= "1 1" outline= "grey" color= "#222222" padding= "10" spacing= "5" />
<VerticalLayout class= "text-column" visibility= "Admin" padding= "5 20 0 0" />
2022-12-07 13:02:09 +01:00
2022-12-17 02:49:34 +01:00
<HorizontalLayout class= "group-content" visibility= "Admin" color= "#444444" padding= "5" spacing= "5" />
2022-12-07 13:02:09 +01:00
2022-12-08 12:01:10 +01:00
<Text class= "group-header" fontSize= "24" font= "font_teutonic-arkham" />
2022-12-17 02:49:34 +01:00
<Text class= "option-header" fontSize= "18" font= "font_teutonic-arkham" />
2022-12-08 12:01:10 +01:00
<Text class= "description" fontSize= "12" />
<Button class= "bottomButtons" hoverClass= "hover" pressClass= "press" selectClass= "select" color= "#888888" minHeight= "35" fontSize= "24" font= "font_teutonic-arkham" />
2022-12-07 16:40:55 +01:00
<Button class= "hover" color= "grey" />
<Button class= "press" color= "white" />
<Button class= "select" color= "white" />
2022-12-07 13:02:09 +01:00
</Defaults>
<!-- Option Panel -->
2022-12-17 02:49:34 +01:00
<VerticalLayout id= "optionPanel" class= "window" rectAlignment= "LowerRight" offsetXY= "-50 60" >
2022-12-08 12:01:10 +01:00
<Panel minHeight= "45" flexibleHeight= "0" padding= "10 10 0 0" >
<Text font= "font_teutonic-arkham" fontSize= "35" > Options</Text>
2022-12-07 13:02:09 +01:00
</Panel>
2022-12-07 16:40:55 +01:00
<VerticalLayout >
2022-12-17 02:49:34 +01:00
<!-- Group: playermat settings -->
2022-12-07 16:40:55 +01:00
<VerticalLayout class= "group" >
2022-12-08 12:01:10 +01:00
<Panel minHeight= "44" image= "option_image1" padding= "5 0 0 0" >
<Text class= "group-header" > PLAYERMAT SETTINGS</Text>
2022-12-07 16:40:55 +01:00
</Panel>
2022-12-17 02:49:34 +01:00
<!-- Option: enable snap tags -->
2022-12-08 12:01:10 +01:00
<HorizontalLayout class= "group-content" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Enable snap tags</Text>
<Text class= "description" > Only cards with the tag "Asset" will snap (official cards are supported by default).
 Disable this if you are having issues with custom content.</Text>
</VerticalLayout>
2022-12-17 02:49:34 +01:00
<Toggle id= "useSnapTags" onValueChanged= "onClick_toggleOption(useSnapTags)" />
2022-12-08 12:01:10 +01:00
</HorizontalLayout>
2022-12-07 16:40:55 +01:00
2022-12-17 02:49:34 +01:00
<!-- Option: show draw 1 button -->
2022-12-08 12:01:10 +01:00
<HorizontalLayout class= "group-content" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Show "Draw 1" button</Text>
<Text class= "description" > Displays a button below the "Upkeep" button that draws a card from your deck. Useful for multi-handed solo play.</Text>
</VerticalLayout>
2022-12-17 02:49:34 +01:00
<Toggle id= "showDrawButton" onValueChanged= "onClick_toggleOption(showDrawButton)" />
2022-12-08 12:01:10 +01:00
</HorizontalLayout>
2022-12-07 16:40:55 +01:00
2022-12-17 02:49:34 +01:00
<!-- Option: use clickable clue - counters -->
2022-12-08 12:01:10 +01:00
<HorizontalLayout class= "group-content" >
<VerticalLayout class= "text-column" >
<Text class= "option-header" > Use clickable clue-counters</Text>
2022-12-17 02:49:34 +01:00
<Text class= "description" > Instead of automatically counting clues in the respective area on your playermat, this displays a clickable counter for clues.</Text>
2022-12-08 12:01:10 +01:00
</VerticalLayout>
2022-12-17 02:49:34 +01:00
<Toggle id= "useClueClickers" onValueChanged= "onClick_toggleOption(useClueClickers)" />
2022-12-08 12:01:10 +01:00
</HorizontalLayout>
2022-12-07 16:40:55 +01:00
</VerticalLayout>
2022-12-17 02:49:34 +01:00
<!-- Group: fan - made accessories -->
2022-12-07 16:40:55 +01:00
<VerticalLayout class= "group" >
2022-12-08 12:01:10 +01:00
<Panel minHeight= "44" image= "option_image2" padding= "5 0 0 0" >
<Text class= "group-header" > FAN-MADE ACCESSORIES</Text>
2022-12-07 16:40:55 +01:00
</Panel>
2022-12-17 02:49:34 +01:00
<!-- Option: show token arranger -->
2022-12-08 12:01:10 +01:00
<HorizontalLayout class= "group-content" >
<VerticalLayout class= "text-column" >
2022-12-17 02:49:34 +01:00
<Text class= "option-header" > Show "Token Arranger"</Text>
<Text class= "description" > See the contents of the chaos bag at a glance! This tool displays a sorted table of the tokens to allow easier guessing of your odds.</Text>
2022-12-08 12:01:10 +01:00
</VerticalLayout>
2022-12-17 02:49:34 +01:00
<Toggle id= "showTokenArranger" onValueChanged= "onClick_toggleOption(showTokenArranger)" />
2022-12-08 12:01:10 +01:00
</HorizontalLayout>
2022-12-07 16:40:55 +01:00
2022-12-17 02:49:34 +01:00
<!-- Option: show clean up helper -->
2022-12-08 12:01:10 +01:00
<HorizontalLayout class= "group-content" >
<VerticalLayout class= "text-column" >
2022-12-17 02:49:34 +01:00
<Text class= "option-header" > Show "Clean Up Helper"</Text>
<Text class= "description" > Useful for campaign-play: It resets play areas to allow continuous gameplay in the same savegame.</Text>
2022-12-08 12:01:10 +01:00
</VerticalLayout>
2022-12-17 02:49:34 +01:00
<Toggle id= "showCleanUpHelper" onValueChanged= "onClick_toggleOption(showCleanUpHelper)" />
2022-12-08 12:01:10 +01:00
</HorizontalLayout>
2022-12-07 16:40:55 +01:00
2022-12-17 02:49:34 +01:00
<!-- Option: show hand helper -->
2022-12-08 12:01:10 +01:00
<HorizontalLayout class= "group-content" >
<VerticalLayout class= "text-column" >
2022-12-17 02:49:34 +01:00
<Text class= "option-header" > Show "Hand Helper"</Text>
<Text class= "description" > Never count your hand cards again! This tool does that for you and can even take "Dream-Enhancing Serum" into account. Also includes a button for randomly discard a card.</Text>
2022-12-08 12:01:10 +01:00
</VerticalLayout>
2022-12-17 02:49:34 +01:00
<Toggle id= "showHandHelper" onValueChanged= "onClick_toggleOption(showHandHelper)" />
2022-12-08 12:01:10 +01:00
</HorizontalLayout>
2022-12-07 16:40:55 +01:00
2022-12-17 02:49:34 +01:00
<!-- Option: show chaos bag manager -->
2022-12-08 12:01:10 +01:00
<HorizontalLayout class= "group-content" >
<VerticalLayout class= "text-column" >
2022-12-17 02:49:34 +01:00
<Text class= "option-header" > Show "Chaos Bag Manager"</Text>
<Text class= "description" > Panel for easy addition or removal of chaos tokens to the bag - very useful for EotE because of Frost tokens!</Text>
2022-12-08 12:01:10 +01:00
</VerticalLayout>
2022-12-17 02:49:34 +01:00
<Toggle id= "showChaosBagManager" onValueChanged= "onClick_toggleOption(showChaosBagManager)" />
2022-12-08 12:01:10 +01:00
</HorizontalLayout>
2022-12-07 16:40:55 +01:00
</VerticalLayout>
</VerticalLayout>
2022-12-08 12:01:10 +01:00
<HorizontalLayout minHeight= "50" flexibleHeight= "0" padding= "5" spacing= "5" >
2022-12-07 16:40:55 +01:00
<Button class= "bottomButtons" onClick= "onClick_defaultSettings" > Load defaults</Button>
2022-12-08 12:01:10 +01:00
<Button class= "bottomButtons" onClick= "onClick_toggleUi(Hidden)" > Close</Button>
2022-12-07 16:40:55 +01:00
</HorizontalLayout>
2022-12-07 13:02:09 +01:00
</VerticalLayout>