1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

63 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [180],
set: Set,
name: {
en: "Flaaffy",
fr: "Lainergie",
es: "Flaaffy",
it: "Flaaffy",
pt: "Flaaffy",
de: "Waaty"
},
rarity: "Secret Rare",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
evolveFrom: {
en: "Mareep",
fr: "Wattouat",
es: "Mareep",
it: "Mareep",
pt: "Mareep",
de: "Voltilamm"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "Studio Bora Inc.",
description: {
en: "It stores electricity in its fluffy fleece. If it stores up too much, it will start to go bald in those patches."
},
abilities: [{
type: "Ability",
name: {
en: "Dynamotor"
},
effect: {
en: "Once during your turn (before your attack), you may attach a Lightning Energy card from your discard pile to 1 of your Benched Pokémon."
}
}],
attacks: [{
cost: ["Lightning", "Lightning", "Colorless"],
name: {
en: "Electro Ball"
},
damage: 50
}]
}
export default card