1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2021-11-12 17:24:19 +01:00

82 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 '../Neo Discovery'
const card: Card = {
name: {
en: "Pupitar",
fr: "Ymphect"
},
illustrator: "Hironobu Yoshida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
247,
],
hp: 70,
types: [
"Fighting",
],
evolveFrom: {
en: "Larvitar",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Skull Bash",
fr: "Coud'krane"
},
damage: 20,
},
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Dust Devil",
fr: "Tempête de sable"
},
effect: {
en: "Does 10 damage to each non- Pokémon in play. Don't apply Weakness and Resistance.",
fr: "Inflige 10 dégâts à chaque Pokémon non- en jeu. N'appliquez pas la Faiblesse et la Résistance."
},
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
description: {
fr: "Sa carapace est dure comme de la pierre, et elle le rend très fort. Ses coups peuvent renverser une montagne."
}
}
export default card