1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 22:32:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

51 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
dexId: [453],
set: Set,
name: {
fr: "Cradopaud",
en: "Croagunk",
es: "Croagunk",
it: "Croagunk",
pt: "Croagunk",
de: "Glibunkel"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
fr: "Dard-Venin",
en: "Poison Sting",
es: "Picotazo Veneno",
it: "Velenospina",
pt: "Ferrão Venenoso",
de: "Giftstachel"
},
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
en: "Your opponent's Active Pokémon is now Poisoned.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
},
damage: 10
}],
retreat: 1,
regulationMark: "G"
}
export default card