Magic-Spoiler/cards_manual.yml
tooomm 77ec60570e remove old sets and better correction files (#133)
* remove old sets and better correction files

* debug manual_sets

* Update main.py

* little tweaks
2017-08-26 06:23:03 +02:00

70 lines
4.8 KiB
YAML

### How to Use: #########################################################
# #
# Each card that you want to manually add has to be #
# * in its correct set block #
# #
# Each set block has to start with #
# * set code #
# * followed by a colon (":") #
# #
# Each set block consist out of #
# * a list of cards #
# #
# Each card in the list has to start with #
# * 2 leading spaces (" ") #
# * a dash ("-") to open an new array for each card #
# #
# Each new card has to consist out of #
# * a new line #
# * 4 leading spaces in total (" ") #
# * card attribute #
# * followed by a colon (":") #
# * additional space (" ") #
# * value for that attribute #
# #
### Hints: ##############################################################
# #
# * Each card attribute you want your card to have needs its own line #
# * Most important fields are: name, manaCost, rarity, type and url #
# * Indentation is critical, two spaces per indentation #
# #
### Form: ###############################################################
# #
#set code: #
# - #
# card field to add: value #
# card field to add: value #
# - #
# card field to add: value #
# #
#other set code: #
# - #
# card field to add: value #
# #
### Example Entry: ######################################################
# #
#XLN: #
# - #
# name: Haven Raptor #
# manaCost: 2GG #
# number: 0 <--- fix #
# rarity: Rare #
# type: Creature - Dinosaur #
# url: http://mythicspoiler.com/ixa/cards/havenraptor.jpg <--- #
# text: Tough - Whenever Haven Raptor is dealt damage, draw a card. #
# cmc: 4 #
# power: 4 #
# toughness: 5 #
# - #
# name: Vraska's Contempt #
# manaCost: 2BB #
# rarity: Rare #
# type: Instant #
# url: http://mythicspoiler.com/ixa/cards/vraskascontempt.jpg <--- #
# #
#########################################################################
# Enter cards that should be added manually directly below. But note the syntax hints on top!