mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* 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>
57 lines
840 B
TypeScript
57 lines
840 B
TypeScript
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 |