1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add Fusion Strike (#162)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 12:42:38 +01:00
committed by GitHub
parent a0792cd72f
commit 2be1cb2be9
285 changed files with 16346 additions and 0 deletions

View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Grubbin",
fr: "Larvibule",
es: "Grubbin",
it: "Grubbin",
pt: "Grubbin",
de: "Mabula"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Grass"],
stage: "Basic",
retreat: 2,
regulationMark: "E",
illustrator: "Asako Ito",
description: {
en: "It uses its big jaws to dig nests into the forest floor, and it loves to feed on sweet tree sap."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Energize"
},
effect: {
en: "Attach a Lightning Energy card from your discard pile to this Pokémon."
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Surprise Attack"
},
damage: 50,
effect: {
en: "Flip a coin. If tails, this attack does nothing."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card