### How to Use: ######################################################### # # # Each card to fix has to be # # * in its own new array # # # # Each card array starts with # # * a space (" ") # # * exact card name # # * followed by a colon (":") # # # # Each card array consist out of # # * a list of corrected fields # # # # Each card corrections consist out of # # * 3 leading spaces (" ") # # * card attribute with wrong value # # * followed by a colon (":") # # * additional space (" ") # # * new value for that attribute # # # ### Hints: ############################################################## # # # * Indentation is critical, two spaces per indentation # # * For a better overview group cards from the same set and # # label them with "#setcode" above the first entry of each set # # # ### Form: ############################################################### # # #card name: # # field to fix: new value # # # ### Example Entries: #################################################### # # #Jace, the Planeswalker: # # loyalty: 5 # # manaCost: 1UUB # # # #Terror: # # type: Instant # # # ### Explanation of Fields and their Values: ############################# # # # name: Card Name # # cmc: 4 # # colorIdentity: # # - U # # - B #keep track of https://github.com/mtgjson/mtgjson4/issues/56 # # colors: # # - Blue # # - Black # # manaCost: 1UUB # # number: 140 # # rarity: Mythic Rare # # power: X # # text: "{5}, {T}: You win the game." # # toughness: * # # type: Legendary Artifact Creature - Human Monk # # url: http://wizards.c0m/link/to/card.png # # # ######################################################################### # never remove this part of the file, since it will break otherwise # corrections: # - must not be empty! # ######################################################################### # Enter cards with their corrections below. But note the syntax hints on top!