mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
da01c308d6
Moving "~ to CARDNAME" into auto replace file. Automatic symbolization of new official affiliations in new styles. Typeline symbols and watermarks for new official affiliations. Now showing statistics for frame type. (seems useful) In Alter and Oversize styles, calling background image more directly instead of having every frame choice point to it. Ditching an unused card-sample.jpg from oversize style. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1487 0fc631ac-6414-0410-93d0-97cfa31319b6
133 lines
6.2 KiB
Plaintext
133 lines
6.2 KiB
Plaintext
# The second affiliation choices
|
|
# Included by a game file
|
|
|
|
choice:
|
|
name: none
|
|
line below: true
|
|
choice:
|
|
name: Marvel
|
|
choice:
|
|
name: A-C
|
|
choice: Alpha Flight
|
|
choice: Avengers
|
|
choice: Brotherhood
|
|
choice: Crime Lords
|
|
choice:
|
|
name: D-H
|
|
choice: Doom
|
|
choice: Fantastic Four
|
|
choice: Hellfire Club
|
|
choice: Heralds of Galactus
|
|
choice: Horsemen of Apocalypse
|
|
choice:
|
|
name: I-M
|
|
choice: Marvel Knights
|
|
choice: Masters of Evil
|
|
choice:
|
|
name: N-S
|
|
choice: Negative Zone
|
|
choice: Shi'ar
|
|
choice: Shield
|
|
choice: Sinister Syndicate
|
|
choice: Skrull
|
|
choice: Spider-Friends
|
|
choice:
|
|
name: T-Z
|
|
choice: Thunderbolts
|
|
choice: Underworld
|
|
choice: Warbound
|
|
choice: X-Men
|
|
choice:
|
|
name: DC
|
|
choice:
|
|
name: A-C
|
|
choice: Anti-Matter
|
|
choice:
|
|
name: D-H
|
|
choice: Gotham Knights
|
|
choice: Green Lantern
|
|
choice:
|
|
name: I-M
|
|
choice: JLA
|
|
choice: JSA
|
|
choice:
|
|
name: N-S
|
|
choice: Shadowpact
|
|
choice: Speed Force
|
|
choice:
|
|
name: T-Z
|
|
choice: Team Superman
|
|
choice: Teen Titans
|
|
choice:
|
|
name: Other
|
|
choice: B.P.R.D.
|
|
choice: Thule Society
|
|
script:
|
|
if contains(card.team, match:"Alpha Flight") then "Marvel A-C Alpha Flight" else
|
|
if contains(card.team, match:"ALPHA FLIGHT") then "Marvel A-C Alpha Flight" else
|
|
if contains(card.team, match:"Avengers") then "Marvel A-C Avengers" else
|
|
if contains(card.team, match:"AVENGERS") then "Marvel A-C Avengers" else
|
|
if contains(card.team, match:"Brood") then "Marvel A-C Brood" else
|
|
if contains(card.team, match:"BROOD") then "Marvel A-C Brood" else
|
|
if contains(card.team, match:"Brotherhood") then "Marvel A-C Brotherhood" else
|
|
if contains(card.team, match:"BROTHERHOOD") then "Marvel A-C Brotherhood" else
|
|
if contains(card.team, match:"Crime Lords") then "Marvel A-C Crime Lords" else
|
|
if contains(card.team, match:"CRIME LORDS") then "Marvel A-C Crime Lords" else
|
|
if contains(card.team, match:"Defenders") then "Marvel D-H Defenders" else
|
|
if contains(card.team, match:"DEFENDERS") then "Marvel D-H Defenders" else
|
|
if contains(card.team, match:"Doom Patrol") then "" else
|
|
if contains(card.team, match:"DOOM PATROL") then "" else
|
|
if contains(card.team, match:"Doom") then "Marvel D-H Doom" else
|
|
if contains(card.team, match:"DOOM") then "Marvel D-H Doom" else
|
|
if contains(card.team, match:"Fantastic Four") then "Marvel D-H Fantastic Four" else
|
|
if contains(card.team, match:"FANTASTIC FOUR") then "Marvel D-H Fantastic Four" else
|
|
if contains(card.team, match:"Hellfire Club") then "Marvel D-H Hellfire Club" else
|
|
if contains(card.team, match:"HELLFIRE CLUB") then "Marvel D-H Hellfire Club" else
|
|
if contains(card.team, match:"Heralds of Galactus") then "Marvel D-H Heralds of Galactus" else
|
|
if contains(card.team, match:"HERALDS OF GALACTUS") then "Marvel D-H Heralds of Galactus" else
|
|
if contains(card.team, match:"Horsemen of Apocalypse") then "Marvel D-H Horsemen of Apocalypse" else
|
|
if contains(card.team, match:"HORSEMEN OF APOCALYPSE") then "Marvel D-H Horsemen of Apocalypse" else
|
|
if contains(card.team, match:"Marvel Knights") then "Marvel I-M Marvel Knights" else
|
|
if contains(card.team, match:"MARVEL KNIGHTS") then "Marvel I-M Marvel Knights" else
|
|
if contains(card.team, match:"Masters of Evil") then "Marvel I-M Masters of Evil" else
|
|
if contains(card.team, match:"MASTERS OF EVIL") then "Marvel I-M Masters of Evil" else
|
|
if contains(card.team, match:"Negative Zone") then "Marvel N-S Negative Zone" else
|
|
if contains(card.team, match:"NEGATIVE ZONE") then "Marvel N-S Negative Zone" else
|
|
if contains(card.team, match:"Shi'ar") then "Marvel N-S Shi'ar" else
|
|
if contains(card.team, match:"SHI'AR") then "Marvel N-S Shi'ar" else
|
|
if contains(card.team, match:"Shield") then "Marvel N-S Shield" else
|
|
if contains(card.team, match:"SHIELD") then "Marvel N-S Shield" else
|
|
if contains(card.team, match:"Sinister Syndicate") then "Marvel N-S Sinister Syndicate" else
|
|
if contains(card.team, match:"SINISTER SYNDICATE") then "Marvel N-S Sinister Syndicate" else
|
|
if contains(card.team, match:"Skrull") then "Marvel N-S Skrull" else
|
|
if contains(card.team, match:"SKRULL") then "Marvel N-S Skrull" else
|
|
if contains(card.team, match:"Spider-Friends") then "Marvel N-S Spider-Friends" else
|
|
if contains(card.team, match:"SPIDER-FRIENDS") then "Marvel N-S Spider-Friends" else
|
|
if contains(card.team, match:"Thunderbolts") then "Marvel T-Z Thunderbolts" else
|
|
if contains(card.team, match:"THUNDERBOLTS") then "Marvel T-Z Thunderbolts" else
|
|
if contains(card.team, match:"Underworld") then "Marvel T-Z Underworld" else
|
|
if contains(card.team, match:"UNDERWORLD") then "Marvel T-Z Underworld" else
|
|
if contains(card.team, match:"Warbound") then "Marvel T-Z Warbound" else
|
|
if contains(card.team, match:"WARBOUND") then "Marvel T-Z Warbound" else
|
|
if contains(card.team, match:"X-Men") then "Marvel T-Z X-Men" else
|
|
if contains(card.team, match:"X-MEN") then "Marvel T-Z X-Men" else
|
|
if contains(card.team, match:"Anti-Matter") then "DC A-C Anti-Matter" else
|
|
if contains(card.team, match:"ANTI-MATTER") then "DC A-C Anti-Matter" else
|
|
if contains(card.team, match:"Gotham Knights") then "DC D-H Gotham Knights" else
|
|
if contains(card.team, match:"GOTHAM KNIGHTS") then "DC D-H Gotham Knights" else
|
|
if contains(card.team, match:"Green Lantern") then "DC D-H Green Lantern" else
|
|
if contains(card.team, match:"GREEN LANTERN") then "DC D-H Green Lantern" else
|
|
if contains(card.team, match:"JLA") then "DC I-M JLA" else
|
|
if contains(card.team, match:"JSA") then "DC I-M JSA" else
|
|
if contains(card.team, match:"Shadowpact") then "DC N-S Shadowpact" else
|
|
if contains(card.team, match:"SHADOWPACT") then "DC N-S Shadowpact" else
|
|
if contains(card.team, match:"Speed Force") then "DC N-S Speed Force" else
|
|
if contains(card.team, match:"SPEED FORCE") then "DC N-S Speed Force" else
|
|
if contains(card.team, match:"Team Superman") then "DC T-Z Team Superman" else
|
|
if contains(card.team, match:"TEAM SUPERMAN") then "DC T-Z Team Superman" else
|
|
if contains(card.team, match:"Teen Titans") then "DC T-Z Teen Titans" else
|
|
if contains(card.team, match:"TEEN TITANS") then "DC T-Z Teen Titans" else
|
|
if contains(card.team, match:"B.P.R.D.") then "Other B.P.R.D." else
|
|
if contains(card.team, match:"Thule Society") then "Other Thule Society" else
|
|
if contains(card.team, match:"THULE SOCIETY") then "Other Thule Society"
|