mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-08 02: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:
57
data/Scarlet & Violet/Journey Together/134.ts
Normal file
57
data/Scarlet & Violet/Journey Together/134.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hop's Corvisquire",
|
||||
fr: "Bleuseille de Nabil",
|
||||
es: "Corvisquire de Paul",
|
||||
de: "Hops Kranoviz",
|
||||
it: "Corvisquire di Hop",
|
||||
pt: "Corvisquire do Lupo",
|
||||
'es-mx': "Corvisquire de Paul"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Colorless"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Speed Dive",
|
||||
fr: "Plongée Rapide",
|
||||
es: "Picado Rápido",
|
||||
de: "Tempohechtsprung",
|
||||
it: "Immersione Rapida",
|
||||
pt: "Mergulho Veloz",
|
||||
'es-mx': "Descenso Veloz"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Razor Wing",
|
||||
fr: "Aile Tranchante",
|
||||
es: "Ala Cortante",
|
||||
de: "Rasierflügel",
|
||||
it: "Ala Tagliente",
|
||||
pt: "Asa Cortante",
|
||||
'es-mx': "Ala Cortante"
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user