1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

77 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Call of Legends'
const card: Card = {
name: {
en: "Zangoose",
fr: "Mangriff",
de: "Sengo"
},
illustrator: "Wataru Kawahara",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
335,
],
hp: 80,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Swords Dance",
fr: "Danse-lames",
de: "Schwerttanz"
},
effect: {
en: "During your next turn, Zangoose's Lost Claw attack's base damage is 60.",
fr: "Pendant votre prochain tour, la Griffe perdue de Mangriff inflige 60 dégâts de base.",
de: "In deinem nächsten Zug beträgt der Grundschaden von Sengos Nirgendwo-Klaue 60 Schadenspunkte."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Lost Claw",
fr: "Griffe perdue",
de: "Nirgendwo-Klaue"
},
effect: {
en: "Choose 1 card from your opponent's hand without looking and put it in the Lost Zone.",
fr: "Choisissez au hasard 1 carte dans la main de votre adversaire et placez-la dans la Zone Perdue.",
de: "Wähle 1 Karte von der Hand deines Gegners, ohne sie vorher anzusehen, und lege sie ins Nirgendwo."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card