1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

77 lines
1.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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 '../Emerald'
const card: Card = {
name: {
en: "Zangoose",
fr: "Mangriff",
de: "Sengo"
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
335,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Extra Claws",
fr: "Griffes supplémentaires",
de: "Extra Claws"
},
effect: {
en: "If the Defending Pokémon is Pokémon-ex, this attack does 10 damage plus 20 more damage.",
fr: "Si le Pokémon Défenseur est un Pokémon-ex, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
de: "If the Defending Pokémon is Pokémon-ex, this attack does 10 damage plus 20 more damage."
},
damage: "10+",
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Quick Attack",
fr: "Vive-attaque",
de: "Ruckzuckhieb"
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.",
de: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card