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

63 lines
1.1 KiB
TypeScript
Raw 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 '../Aquapolis'
const card: Card = {
name: {
en: "Pupitar",
fr: "Ymphect",
de: "Pupitar"
},
illustrator: "Naoyo Kimura",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
247,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Larvitar",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Thrash",
fr: "Mania",
de: "Fuchtler"
},
effect: {
en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage. If tails, Pupitar does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires. Si c'est pile, Ymphect s'inflige 10 dégâts.",
de: "Wirf eine Münze. Bei 'Kopf' fügt dieser Angriff 30 Schadenspunkte plus 10 weitere Schadenspunkte zu. Bei 'Zahl' fügt sich Pupitar selber 10 Schadenspunkte zu."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card