mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-14 13:55:09 +00:00
feat: Add Journey Together (#701)
* 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>
This commit is contained in:
53
data/Scarlet & Violet/Journey Together/047.ts
Normal file
53
data/Scarlet & Violet/Journey Together/047.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Iono's Voltorb",
|
||||
fr: "Voltorbe de Mashynn",
|
||||
es: "Voltorb de e-Nigma",
|
||||
de: "Enigmaras Voltobal",
|
||||
it: "Voltorb di Kissara",
|
||||
pt: "Voltorb da Kissera",
|
||||
'es-mx': "Voltorb de e-Nigma"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Voltaic Chain",
|
||||
fr: "Chaîne Voltaïque",
|
||||
es: "Cadena Voltaica",
|
||||
de: "Voltaische Kette",
|
||||
it: "Catena Voltaica",
|
||||
pt: "Corrente Voltaica",
|
||||
'es-mx': "Cadena Voltaica"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each Lightning Energy attached to all of your Iono's Pokémon.",
|
||||
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Énergie Lightning attachée à tous vos Pokémon de Mashynn.",
|
||||
es: "Este ataque hace 20 puntos de daño más por cada Energía Lightning unida a cada uno de tus Pokémon de e-Nigma.",
|
||||
de: "Diese Attacke fügt für jede an alle deine Enigmaras Pokémon angelegte Lightning-Energie 20 Schadenspunkte mehr zu.",
|
||||
it: "Questo attacco infligge 20 danni in più per ogni Energia Lightning assegnata ai tuoi Pokémon di Kissara.",
|
||||
pt: "Este ataque causa 20 pontos de dano a mais para cada Energia Lightning ligada a todos os seus Pokémon da Kissera.",
|
||||
'es-mx': "Este ataque hace 20 puntos de daño más por cada Energía Lightning unida a cada uno de tus Pokémon de e-Nigma."
|
||||
},
|
||||
|
||||
damage: "20+"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user