mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
83 lines
1003 B
TypeScript
83 lines
1003 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Phantump",
|
||
fr: "Brocélôme",
|
||
es: "Phantump",
|
||
it: "Phantump",
|
||
pt: "Phantump",
|
||
de: "Paragoni"
|
||
},
|
||
illustrator: "miki kudo",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
708,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Mumble",
|
||
fr: "Murmure",
|
||
es: "Farfullar",
|
||
it: "Borbottio",
|
||
pt: "Resmungo",
|
||
de: "Grummeln"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Spooky Shot",
|
||
fr: "Tir Effrayant",
|
||
es: "Disparo Embrujado",
|
||
it: "Colpomistero",
|
||
pt: "Tiro Assustador",
|
||
de: "Spukschuss"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|