mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-08 11:09:18 +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:
65
data/Scarlet & Violet/Journey Together/120.ts
Normal file
65
data/Scarlet & Violet/Journey Together/120.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dunsparce",
|
||||
fr: "Insolourdo",
|
||||
es: "Dunsparce",
|
||||
de: "Dummisel",
|
||||
it: "Dunsparce",
|
||||
pt: "Dunsparce",
|
||||
'es-mx': "Dunsparce"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Trading Places",
|
||||
fr: "Permutation",
|
||||
es: "Cambio de Puesto",
|
||||
de: "Platztausch",
|
||||
it: "Avvicendamento",
|
||||
pt: "Locais de Troca",
|
||||
'es-mx': "Cambio de Lugar"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc.",
|
||||
es: "Cambia este Pokémon por uno de tus Pokémon en Banca.",
|
||||
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus.",
|
||||
it: "Scambia questo Pokémon con uno della tua panchina.",
|
||||
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
|
||||
'es-mx': "Cambia este Pokémon por 1 de tus Pokémon en Banca."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
de: "Ramme",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
'es-mx': "Colisión"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user