mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
92 lines
1.7 KiB
TypeScript
92 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sandstorm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Zangoose",
|
||
fr: "Mangriff",
|
||
de: "Sengo"
|
||
},
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
335,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Poison Resistance",
|
||
fr: "Résistance au poison",
|
||
de: "Poison Resistance"
|
||
},
|
||
effect: {
|
||
en: "Zangoose can't be Poisoned.",
|
||
fr: "Mangriff ne peut pas être Empoisonné.",
|
||
de: "Zangoose can't be Poisoned."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Target Slash",
|
||
fr: "Tranche-cible",
|
||
de: "Target Slash"
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon is Seviper, this attack does 10 damage plus 30 more damage.",
|
||
fr: "Si Seviper est le Pokémon Défenseur, cette attaque inflige 40 dégâts.",
|
||
de: "If the Defending Pokémon is a Seviper, this attack does 10 damage plus 30 more damage."
|
||
},
|
||
damage: "10+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Super Slash",
|
||
fr: "Super entaille",
|
||
de: "Super Slash"
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon is an Evolved Pokémon, this attack does 30 damage plus 30 more damage.",
|
||
fr: "Si le Pokémon Défenseur est un Pokémon Évolué, cette attaque inflige 60 dégâts.",
|
||
de: "If the Defending Pokémon is an Evolved Pokémon, this attack does 30 damage plus 30 more damage."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|