1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +00:00
Florian Bouillon 416c717ce5
Add Evolving Skies Data (#60)
* First batch

Missing more informations like Attacks,etc but it will be added later

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-26 18:28:39 +02:00

28 lines
621 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
name: {
en: "Full Face Guard"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Attach a Pokemon Tool to 1 of your Pokemon that doesnt already have a Pokemon Tool attached.\n\nIf the Pokemon this card is attached to has no Abilities, it takes 20 less damage from attacks from your opponents Pokemon (after applying Weakness and Resistance)."
},
trainerType: "Tool"
}
export default card