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: "neo1-50", localId: 50, // Card informations name: { en: "Sunflora", }, hp: 70, type: [ Type.GRASS, ], dexId: 192, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/50/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/50/high.png", }, }, evolveFrom: { en: "Sunkern", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.GRASS, Type.GRASS, Type.GRASS ], name: { en: "Petal Dance", }, text: { en: "Flip 3 coins. This attack does 30 damage times the number of heads. Sunflora is now Confused (after doing damage).", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card