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.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Karrablast",
|
|
fr: "Carabing",
|
|
es: "Karrablast",
|
|
de: "Laukaps",
|
|
it: "Karrablast",
|
|
pt: "Karrablast",
|
|
'es-mx': "Karrablast"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Push Down",
|
|
fr: "Recul",
|
|
es: "Oprimir",
|
|
de: "Runterdrücken",
|
|
it: "Spintonare",
|
|
pt: "Rebaixar",
|
|
'es-mx': "Oprimir"
|
|
},
|
|
|
|
effect: {
|
|
en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)",
|
|
fr: "Envoyez le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)",
|
|
es: "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).",
|
|
de: "Wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.)",
|
|
it: "Sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.",
|
|
pt: "Mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)",
|
|
'es-mx': "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo)."
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |