mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
55 lines
1.0 KiB
TypeScript
55 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",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |