mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 12:09:53 +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
614 B
TypeScript
43 lines
614 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cufant",
|
|
fr: "Charibari",
|
|
es: "Cufant",
|
|
de: "Kupfanti",
|
|
it: "Cufant",
|
|
pt: "Cufant",
|
|
'es-mx': "Cufant"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal", "Metal", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rollout",
|
|
fr: "Roulade",
|
|
es: "Rodar",
|
|
de: "Walzer",
|
|
it: "Rotolamento",
|
|
pt: "Rolagem",
|
|
'es-mx': "Rodada"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |