mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
* fix: Added most of the translations Some translations aren't available or are user made without a card image depicted Signed-off-by: Avior <github@avior.me> * fix: Add sets French translations Signed-off-by: Avior <github@avior.me>
60 lines
802 B
TypeScript
60 lines
802 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 1'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pupitar",
|
|
fr: "Ymphect"
|
|
},
|
|
|
|
illustrator: "Hisao Nakamura",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
247,
|
|
],
|
|
|
|
hp: 70,
|
|
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Larvitar",
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Rock Smash",
|
|
fr: "Éclate-roc"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires."
|
|
},
|
|
damage: "20+",
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water"
|
|
},
|
|
],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|