-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding SOB * Update data formatting * fixes #1381 Co-authored-by: Davis Ford <[email protected]>
- Loading branch information
1 parent
c5e8fc6
commit d768a42
Showing
8 changed files
with
84 additions
and
35 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
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,22 @@ | ||
import { tagAs } from 'factions/metatagger' | ||
import { MagnificentBattalionEffect, SwiftBattalionEffect } from 'generic_rules/core_battalions' | ||
import { OneDropDeploymentEffect } from 'generic_rules/core_rules' | ||
import rule_sources from './rule_sources' | ||
|
||
// Battalions from White Dwarf August 2021 | ||
const Battalions = { | ||
'Bosses of the Stomp - Unified': { | ||
effects: [{ ...OneDropDeploymentEffect, rule_sources: [rule_sources.WHITE_DWARF_AUGUST_2021] }], | ||
}, | ||
'Bosses of the Stomp - Magnificent': { | ||
effects: [{ ...MagnificentBattalionEffect, rule_sources: [rule_sources.WHITE_DWARF_AUGUST_2021] }], | ||
}, | ||
'Footsloggas - Unified': { | ||
effects: [{ ...OneDropDeploymentEffect, rule_sources: [rule_sources.WHITE_DWARF_AUGUST_2021] }], | ||
}, | ||
'Footsloggas - Swift': { | ||
effects: [{ ...SwiftBattalionEffect, rule_sources: [rule_sources.WHITE_DWARF_AUGUST_2021] }], | ||
}, | ||
} | ||
|
||
export default tagAs(Battalions, 'battalion') |
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,19 @@ | ||
import { tagAs } from 'factions/metatagger' | ||
import { END_OF_GAME } from 'types/phases' | ||
import rule_sources from './rule_sources' | ||
|
||
// SOB Specific grand strategy available from WD Aug 2021 | ||
const GrandStrategies = { | ||
'Stomping Order': { | ||
effects: [ | ||
{ | ||
name: `Make the Land Tremble`, | ||
desc: `When the battle ends, you complete this grand strategy if any friendly units made a run or charge move in every battle round (it does not have to be the same unit that runs or makes a charge move in every battle round).`, | ||
when: [END_OF_GAME], | ||
rule_sources: [rule_sources.WHITE_DWARF_AUGUST_2021], | ||
}, | ||
], | ||
}, | ||
} | ||
|
||
export default tagAs(GrandStrategies, 'grand_strategy') |
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
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
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
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
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 |
---|---|---|
|
@@ -2325,10 +2325,10 @@ | |
dependencies: | ||
prop-types "^15.7.2" | ||
|
||
"@stripe/[email protected].0": | ||
version "1.17.0" | ||
resolved "https://registry.yarnpkg.com/@stripe/stripe-js/-/stripe-js-1.17.0.tgz#1961aad0aa4d2f1609753c2807ed39baea025691" | ||
integrity sha512-LztkapiDV+2bEjsmAL2QnmTQBJwx37VnvuBkgXxPe9cJr2jbK0UGzumxSZUiRXeUlgh5j3CXh5jsGFTdc3iv+Q== | ||
"@stripe/[email protected].1": | ||
version "1.17.1" | ||
resolved "https://registry.yarnpkg.com/@stripe/stripe-js/-/stripe-js-1.17.1.tgz#afcb7e86d0b05d1a7af53af89111abd2e8d437ae" | ||
integrity sha512-c9MyDvdi5Xou0j0JPNy86NebtTDfh9o62Ifuzx6GSm2YO0oedBpy51WSyOue2L8Fb+mqESS5gd6mGVEIPUnXsA== | ||
|
||
"@surma/rollup-plugin-off-main-thread@^1.1.1": | ||
version "1.4.2" | ||
|
@@ -2756,10 +2756,10 @@ | |
"@types/prop-types" "*" | ||
csstype "^3.0.2" | ||
|
||
"@types/[email protected].17": | ||
version "17.0.17" | ||
resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.17.tgz#1772d3d5425128e0635a716f49ef57c2955df055" | ||
integrity sha512-nrfi7I13cAmrd0wje8czYpf5SFbryczCtPzFc6ijqvdjKcyA3tCvGxwchOUlxb2ucBPuJ9Y3oUqKrRqZvrz0lw== | ||
"@types/[email protected].19": | ||
version "17.0.19" | ||
resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.19.tgz#8f2a85e8180a43b57966b237d26a29481dacc991" | ||
integrity sha512-sX1HisdB1/ZESixMTGnMxH9TDe8Sk709734fEQZzCV/4lSu9kJCPbo2PbTRoZM+53Pp0P10hYVyReUueGwUi4A== | ||
dependencies: | ||
"@types/prop-types" "*" | ||
"@types/scheduler" "*" | ||
|
@@ -4753,10 +4753,10 @@ core-js-pure@^3.0.0: | |
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813" | ||
integrity sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA== | ||
|
||
[email protected].1: | ||
version "3.16.1" | ||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.16.1.tgz#f4485ce5c9f3c6a7cb18fa80488e08d362097249" | ||
integrity sha512-AAkP8i35EbefU+JddyWi12AWE9f2N/qr/pwnDtWz4nyUIBGMJPX99ANFFRSw6FefM374lDujdtLDyhN2A/btHw== | ||
[email protected].2: | ||
version "3.16.2" | ||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.16.2.tgz#3f485822889c7fc48ef463e35be5cc2a4a01a1f4" | ||
integrity sha512-P0KPukO6OjMpjBtHSceAZEWlDD1M2Cpzpg6dBbrjFqFhBHe/BwhxaP820xKOjRn/lZRQirrCusIpLS/n2sgXLQ== | ||
|
||
core-js@^2.4.0: | ||
version "2.6.11" | ||
|
@@ -11048,10 +11048,10 @@ [email protected]: | |
uncontrollable "^7.2.1" | ||
warning "^4.0.3" | ||
|
||
[email protected].3: | ||
version "5.0.3" | ||
resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.3.tgz#2a0623b1115a1d8c84144e9434d3342b5af41ab4" | ||
integrity sha512-9S3j+m+UxDZOM0Qb8mhnT/rMR0NGSrj9A/073yz2DSxPMYhmYFBMYIdI2X4o8AjOjyFsSNxDRnCX6s/gRxpriw== | ||
[email protected].4: | ||
version "5.0.4" | ||
resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.4.tgz#42ec519b03eb9413b118af92d1780c403a5f19bf" | ||
integrity sha512-IeVAiNVKjSPeGax/Gmkqfa/+PuMTBhutEvFUaMQLwE2tS0EXrAdgOpWDX26bWTXF3HrioorR7lr08NqeYUWQCQ== | ||
dependencies: | ||
copy-to-clipboard "^3" | ||
prop-types "^15.5.8" | ||
|