1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

65 lines
1001 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Grapploct",
fr: "Krakos",
es: "Grapploct",
it: "Grapploct",
pt: "Grapploct",
de: "Kaocto"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
evolveFrom: {
en: "Clobbopus",
fr: "Poulpaf",
es: "Clobbopus",
it: "Clobbopus",
pt: "Clobbopus",
de: "Klopptopus"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "Souichirou Gunjima",
description: {
en: "Searching for an opponent to test its skills against, it emerges onto land. Once the battle is over, it returns to the sea."
},
attacks: [{
cost: ["Fighting", "Colorless"],
name: {
en: "Lunge Out"
},
damage: 40
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
en: "Magnum Punch"
},
damage: 90
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card