mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
85 lines
1.7 KiB
TypeScript
85 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Zangoose",
|
||
fr: "Mangriff",
|
||
es: "Zangoose",
|
||
it: "Zangoose",
|
||
pt: "Zangoose",
|
||
de: "Sengo"
|
||
},
|
||
illustrator: "tetsuya koizumi",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
335,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Corkscrew Punch",
|
||
fr: "Poing Tire-Bouchon",
|
||
es: "Puño Tirabuzón",
|
||
it: "Pugno Rotante",
|
||
pt: "Soco Saca-rolha",
|
||
de: "Korkenzieherhieb"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Brutal Edge",
|
||
fr: "Tranche Brutale",
|
||
es: "Filo Brutal",
|
||
it: "Fendente Spietato",
|
||
pt: "Gume Brutal",
|
||
de: "Brutalklinge"
|
||
},
|
||
effect: {
|
||
en: "This attack does 10 more damage for each damage counter on your opponent’s Active Pokémon.",
|
||
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur le Pokémon Actif de votre adversaire.",
|
||
es: "Este ataque hace 10 puntos de daño más por cada contador de daño en el Pokémon Activo de tu rival.",
|
||
it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente sul Pokémon attivo del tuo avversario.",
|
||
pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano no Pokémon Ativo do seu oponente.",
|
||
de: "Diese Attacke fügt 10 Schadenspunkte mehr mal der Anzahl der Schadensmarken auf dem Aktiven Pokémon deines Gegners zu."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|