-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a657ae
commit 0613178
Showing
9 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
- id: ARCS/BC01 | ||
text: If you **Provoke Outrage**, keep this card. You may spend any resources as Material. You ignore Outrage when spending Material for its Prelude action. | ||
image: BC01 | ||
name: BC01 | ||
tags: | ||
- Base | ||
- Guild | ||
- Material | ||
- Planet Breaker | ||
- Deck A | ||
meta: | ||
keys: 3 | ||
act: 1 | ||
complexity: 1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
id: arcs | ||
name: Arcs | ||
|
||
filters: | ||
- name: Keys | ||
prop: keys | ||
type: number | ||
|
||
- name: Act | ||
prop: act | ||
type: number | ||
|
||
- name: Complexity | ||
prop: complexity | ||
type: number | ||
|
||
subproducts: | ||
- name: Arcs Base Game | ||
id: arcsbasegame | ||
desc: > | ||
Arcs: Conflict & Collapse in the Reach is a sharp sci-fi strategy game for 2 to 4 players, set in a dark yet silly universe. | ||
- name: Arcs Leaders and Lore | ||
id: arcsll | ||
desc: > | ||
Explore unique, tricky strategies in the Arcs base game with new Leaders, and add wild twists to both the Arcs base and campaign games with new Lore. | ||
- name: Arcs Blighted Reach | ||
id: arcsblightedreach | ||
desc: > | ||
The Blighted Reach expansion adds an innovative campaign to Arcs. | ||
external: | ||
rules: https://oath.seiyria.com | ||
faq: | ||
en-US: 'https://dl.dropboxusercontent.com/s/qq3ckwivu0jixt4/oath.json?dl=0' | ||
|
||
# https://handlebarsjs.com/guide/ | ||
cardTemplate: | ||
en-US: > | ||
{{#if meta.keys }} | ||
<div> | ||
<p>Keys: {{ meta.keys }} | ||
</div> | ||
{{/if}} | ||
{{#if meta.act }} | ||
<div> | ||
<p>Act: {{ meta.act }} | ||
</div> | ||
{{/if}} | ||
{{#if meta.complexity }} | ||
<div> | ||
<p>Complexity: {{ meta.complexity }} | ||
</div> | ||
{{/if}} |