mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-03 00:49: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:
57
data/Scarlet & Violet/Journey Together/168.ts
Normal file
57
data/Scarlet & Violet/Journey Together/168.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Furret",
|
||||
fr: "Fouinar",
|
||||
es: "Furret",
|
||||
de: "Wiesenior",
|
||||
it: "Furret",
|
||||
pt: "Furret",
|
||||
'es-mx': "Furret"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Colorless"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe",
|
||||
es: "Arañazo",
|
||||
de: "Kratzer",
|
||||
it: "Graffio",
|
||||
pt: "Arranhão",
|
||||
'es-mx': "Arañazo"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Jet Headbutt",
|
||||
fr: "Bélier Volant",
|
||||
es: "Turbocabezazo",
|
||||
de: "Flinke Kopfnuss",
|
||||
it: "Zuccata Jet",
|
||||
pt: "Cabeçada a Jato",
|
||||
'es-mx': "Cabezazo Jet"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user