mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59: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:
53
data/Scarlet & Violet/Journey Together/036.ts
Normal file
53
data/Scarlet & Violet/Journey Together/036.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lombre",
|
||||
fr: "Lombre",
|
||||
es: "Lombre",
|
||||
de: "Lombrero",
|
||||
it: "Lombre",
|
||||
pt: "Lombre",
|
||||
'es-mx': "Lombre"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Water"],
|
||||
|
||||
name: {
|
||||
en: "Aqua Slash",
|
||||
fr: "Aqua Slash",
|
||||
es: "Cuchillada Acuática",
|
||||
de: "Aquaschlag",
|
||||
it: "Idrosquarcio",
|
||||
pt: "Aqua Corte",
|
||||
'es-mx': "Cuchillada Acuática"
|
||||
},
|
||||
|
||||
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: 70
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user