1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 03:59:54 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

69 lines
977 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Clobbopus",
fr: "Poulpaf",
es: "Clobbopus",
it: "Clobbopus",
pt: "Clobbopus",
de: "Klopptopus"
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 80,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Punch",
fr: "KoudPoing",
es: "Puño",
it: "Pugno",
pt: "Soco",
de: "Boxhieb"
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "Its very curious, but its means of investigating things is to try to punch them with its tentacles. The search for food is what brings it onto land."
}
}
export default card