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>
43 lines
626 B
TypeScript
43 lines
626 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Larvesta",
|
|
fr: "Pyronille",
|
|
es: "Larvesta",
|
|
de: "Ignivor",
|
|
it: "Larvesta",
|
|
pt: "Larvesta",
|
|
'es-mx': "Larvesta"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Will-O-Wisp",
|
|
fr: "Feu Follet",
|
|
es: "Fuego Fatuo",
|
|
de: "Irrlicht",
|
|
it: "Fuocofatuo",
|
|
pt: "Fogo Fátuo",
|
|
'es-mx': "Fuego Fatuo"
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |