mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* feat: Add static data for Journey Together Signed-off-by: Avior <git@avior.me> * feat: finish naming Signed-off-by: Avior <git@avior.me> * should be done Signed-off-by: Avior <git@avior.me> * Update index.ts --------- Signed-off-by: Avior <git@avior.me>
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pupitar",
|
|
fr: "Ymphect",
|
|
es: "Pupitar",
|
|
de: "Pupitar",
|
|
it: "Pupitar",
|
|
pt: "Pupitar",
|
|
'es-mx': "Pupitar"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Fighting"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Take Down",
|
|
fr: "Bélier",
|
|
es: "Derribo",
|
|
de: "Bodycheck",
|
|
it: "Riduttore",
|
|
pt: "Desmantelar",
|
|
'es-mx': "Derribo"
|
|
},
|
|
|
|
effect: {
|
|
en: "This Pokémon also does 20 damage to itself.",
|
|
fr: "Ce Pokémon s'inflige aussi 20 dégâts.",
|
|
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
|
|
de: "Dieses Pokémon fügt auch sich selbst 20 Schadenspunkte zu.",
|
|
it: "Questo Pokémon infligge anche 20 danni a se stesso.",
|
|
pt: "Este Pokémon também causa 20 pontos de dano a si mesmo.",
|
|
'es-mx': "Este Pokémon también se hace 20 puntos de daño a sí mismo."
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |