1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +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

79 lines
1.7 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: "Phanpy",
fr: "Phanpy",
de: "Phanpy"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
231,
],
hp: 60,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Ultra-thick Skin",
fr: "Peau ultra-épaisse",
de: "Ultradicke Haut"
},
effect: {
en: "As long as Phanpy has any Energy attached to it, any damage done to Phanpy by attacks is reduced by 10 (after applying Weakness and Resistance).",
fr: "Tant que Phanpy possède au moins une Énergie, les dégâts infligés à Phanpy par des attaques sont réduits de 10 (après application de la Faiblesse et de la Résistance).",
de: "Solange mindestens 1 Energie an Phanpy angelegt ist, wird Schaden, der Phanpy durch Angriffe zugefügt wird, um 10 Schadenspunkte reduziert (nachdem Schwäche und Resistenz verrechnet wurden)."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Rock Smash",
fr: "Éclate-roc",
de: "Zertrümmerer"
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.",
de: "Wirf eine Münze. Bei \"Kopf\" fügt dieser Angriff 20 Schadenspunkte plus 10 weitere Schadenspunkte zu."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 2,
}
export default card