mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
62 lines
984 B
TypeScript
62 lines
984 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragon Frontiers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Pupitar δ",
|
||
fr: "Ymphect δ",
|
||
de: "Pupitar"
|
||
},
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
247,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Larvitar",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hyper Beam",
|
||
fr: "Ultralaser",
|
||
de: "Hyperstrahl"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" lege 1 Energiekarte von dem Verteidigenden Pokémon auf den Ablagestapel deines Gegners."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|