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:
57
data/Scarlet & Violet/Journey Together/091.ts
Normal file
57
data/Scarlet & Violet/Journey Together/091.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Koffing",
|
||||
fr: "Smogo",
|
||||
es: "Koffing",
|
||||
de: "Smogon",
|
||||
it: "Koffing",
|
||||
pt: "Koffing",
|
||||
'es-mx': "Koffing"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
es: "Placaje",
|
||||
de: "Tackle",
|
||||
it: "Azione",
|
||||
pt: "Investida",
|
||||
'es-mx': "Tacleada"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Suffocating Gas",
|
||||
fr: "Gaz Suffocant",
|
||||
es: "Gas Sofocante",
|
||||
de: "Würgegas",
|
||||
it: "Gas Soffocante",
|
||||
pt: "Gás Asfixiante",
|
||||
'es-mx': "Gas Sofocante"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user