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
881 B
TypeScript
57 lines
881 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Piloswine",
|
|
fr: "Cochignon",
|
|
es: "Piloswine",
|
|
de: "Keifel",
|
|
it: "Piloswine",
|
|
pt: "Piloswine",
|
|
'es-mx': "Piloswine"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Fighting"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Strength",
|
|
fr: "Force",
|
|
es: "Fuerza",
|
|
de: "Stärke",
|
|
it: "Forza",
|
|
pt: "Força",
|
|
'es-mx': "Fuerza"
|
|
},
|
|
|
|
damage: 20
|
|
}, {
|
|
cost: ["Fighting", "Fighting"],
|
|
|
|
name: {
|
|
en: "Impaling Tusk",
|
|
fr: "Défense Empaleuse",
|
|
es: "Colmillo Empalador",
|
|
de: "Durchbohrender Stoßzahn",
|
|
it: "Zanne Acuminate",
|
|
pt: "Presa Perfurante",
|
|
'es-mx': "Colmillo Perforante"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |