1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

71 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Dugtrio",
fr: "Triopikeur",
es: "Dugtrio",
it: "Dugtrio",
pt: "Dugtrio",
de: "Digdri"
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
51,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Diglett",
fr: "Taupiqueur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Home Ground",
fr: "À Domicile",
es: "Terreno Local",
it: "Giocare in Casa",
pt: "Time da Casa",
de: "Heimvorteil"
},
effect: {
en: "If you have any Stadium card in play, this attack does 60 more damage.",
fr: "Si vous avez une carte Stade en jeu, cette attaque inflige 60 dégâts supplémentaires.",
es: "Si tienes alguna carta de Estadio en juego, este ataque hace 60 puntos de daño más.",
it: "Se hai in gioco una carta Stadio, questo attacco infligge 60 danni in più.",
pt: "Se você tiver qualquer carta de Estádio em jogo, este ataque causará 60 pontos de dano a mais.",
de: "Wenn du eine Stadionkarte im Spiel hast, fügt diese Attacke 60 Schadenspunkte mehr zu."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card