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:
43
data/Scarlet & Violet/Journey Together/109.ts
Normal file
43
data/Scarlet & Violet/Journey Together/109.ts
Normal file
@ -0,0 +1,43 @@
|
||||
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
|
Reference in New Issue
Block a user