mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +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:
67
data/Scarlet & Violet/Journey Together/102.ts
Normal file
67
data/Scarlet & Violet/Journey Together/102.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Escavalier",
|
||||
fr: "Lançargot",
|
||||
es: "Escavalier",
|
||||
de: "Cavalanzas",
|
||||
it: "Escavalier",
|
||||
pt: "Escavalier",
|
||||
'es-mx': "Escavalier"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Metal"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Pierce",
|
||||
fr: "Transpercement",
|
||||
es: "Perforar",
|
||||
de: "Durchbohren",
|
||||
it: "Perforare",
|
||||
pt: "Perfurar",
|
||||
'es-mx': "Perforar"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Iron Buster",
|
||||
fr: "Buster de Fer",
|
||||
es: "Destructor Férreo",
|
||||
de: "Eisensprenger",
|
||||
it: "Ferro Distruttivo",
|
||||
pt: "Destruidor Férreo",
|
||||
'es-mx': "Destructor Férreo"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
||||
'es-mx': "Durante tu próximo turno, este Pokémon no puede atacar."
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user