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: "neo3-13", localId: 13, // Card informations name: { en: "Raikou", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 243, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo3/13/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo3/13/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, abilities: [{ id: 1029, type: AbilityType.POKEPOWER, name: { en: "Lightning Burst", }, text: { en: "Whenever you attach a Lightning Energy card from your hand to Raikou, if your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. This power stops working while Raikou is Asleep, Confused, or Paralyzed.", } }], attacks: [{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.LIGHTNING ], name: { en: "Lightning Tackle", }, text: { en: "Flip a coin. If tails, Raikou does 20 damage to itself.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Neo Revelation", code: "neo3" } } export default card