import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "xy12-109", localId: 109, // Card informations name: { en: "ナッシー[Exeggutor]", fr: "ナッシー[Noadkoko]", }, hp: 80, type: [ Type.GRASS, ], dexId: 103, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/109/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/109/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/109/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/109/high.png", }, }, evolveFrom: { en: "タマタマ[Exeggcute]", fr: "Noeunoeuf", }, tags: [ Tag.STAGE1, ], illustrator: { id: 203, name: "Dr.Ooyama" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "ふみつけ[Stomp]", fr: "ふみつけ [Écrasement]", }, text: { en: "コインを1回投げオモテなら、10ダメージを追加。 Flip a coin. If heads, this attack does 10 more damage.", fr: "コインを1回投げオモテなら、10ダメージを追加。\nLancez une pièce. Si c’est face, cette attaque inflige 10 dégâts supplémentaires.", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card