mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
62
data/Sword & Shield/Fusion Strike/280.ts
Normal file
62
data/Sword & Shield/Fusion Strike/280.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user