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

90 lines
1.8 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 '../Power Keepers'
const card: Card = {
name: {
en: "Zangoose",
fr: "Mangriff",
de: "Sengo"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
335,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Thick Skin",
fr: "Vaccin",
de: "Dicke Haut"
},
effect: {
en: "Zangoose can't be affected by any Special Conditions.",
fr: "Mangriff ne peut pas être affecté par des États Spéciaux.",
de: "Sengo kann nicht von Speziellen Zuständen betroffen werden."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Call for Family",
fr: "Appel à la famille",
de: "Familienruf"
},
effect: {
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck jusqu'à 2 Pokémon de Base et placez-les sur votre Banc. Ensuite, mélangez votre deck.",
de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon-Karten und lege sie auf deine Bank. Mische dein Deck danach."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sharp Claws",
fr: "Griffes affûtées",
de: "Scharfe Krallen"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 10 Schadenspunkte plus 20 weitere Schadenspunkte zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card