1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

54 lines
806 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
set: Set,
name: {
fr: "Triopikeur",
en: "Dugtrio",
es: "Dugtrio",
it: "Dugtrio",
pt: "Dugtrio",
de: "Digdri"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
fr: "Culbute Surprise",
en: "Headbutt Bounce",
es: "Bote Cabezazo",
it: "Rimbalzo Bottintesta",
pt: "Cabeçada Ricochete",
de: "Abrupter Kopfstoß"
},
damage: 40
}, {
cost: ["Fighting", "Fighting"],
name: {
fr: "Boue-Bombe",
en: "Mud Bomb",
es: "Bomba Fango",
it: "Pantanobomba",
pt: "Bomba de Lama",
de: "Schlammbombe"
},
damage: 80
}],
retreat: 1,
regulationMark: "G"
}
export default card