mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
6a615bb47e
Big keyword update. Update to allow new flip card technology. Update to allow 4-ability planeswalkers, textless lands, and levelers. More statistics that are related to card type. Custom subtype tracking for all card types. Planeswalker types included. Creature type updates. New symbol variation for set symbol watermarks; more like what appears on real cards. Updated card sorting. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1494 0fc631ac-6414-0410-93d0-97cfa31319b6
49 lines
1.6 KiB
Plaintext
49 lines
1.6 KiB
Plaintext
mse version: 0.3.8
|
|
short name: Magic
|
|
full name: Magic the Gathering
|
|
installer group: magic/game files
|
|
icon: card-back.png
|
|
position hint: 01
|
|
|
|
version: 2010-06-11
|
|
depends on: magic-blends.mse-include 2010-04-07
|
|
depends on: magic-watermarks.mse-include 2007-09-23
|
|
|
|
############################################################## The script
|
|
|
|
init script: include file: script
|
|
|
|
############################################################## Lots of lists
|
|
|
|
################## There be dragons here. -Liosan ##########################
|
|
|
|
include file: card_fields
|
|
include file: set_fields
|
|
include file: statistics
|
|
include file: packs
|
|
include file: keywords
|
|
include file: word_lists
|
|
include file: add_cards_scripts
|
|
include file: auto_replace
|
|
|
|
############################################################## Other stuff
|
|
|
|
card list color script:
|
|
input := card.card_color
|
|
if input == "white" then rgb(156,130,90)
|
|
else if input == "blue" then rgb(0,64,168)
|
|
else if input == "black" then rgb(0,0,0)
|
|
else if input == "red" then rgb(168,0,0)
|
|
else if input == "green" then rgb(0,168,0)
|
|
else (
|
|
artifact := chosen(choice:"artifact")
|
|
land := chosen(choice:"land")
|
|
multi := chosen(choice:"multicolor")
|
|
hybrid := chosen(choice:"hybrid")
|
|
if land then rgb(109,62,39) # land
|
|
else if multi and input != "artifact, multicolor" then rgb(130,110,0) # multicolor
|
|
else if hybrid then rgb(115,0,160) # hybrid
|
|
else if artifact then rgb(72,90,100) # artifact
|
|
else rgb(119,83,83) # colorless
|
|
)
|