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:
57
data/Scarlet & Violet/Journey Together/026.ts
Normal file
57
data/Scarlet & Violet/Journey Together/026.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "N's Darumaka",
|
||||
fr: "Darumarond de N",
|
||||
es: "Darumaka de N",
|
||||
de: "Ns Flampion",
|
||||
it: "Darumaka di N",
|
||||
pt: "Darumaka do N",
|
||||
'es-mx': "Darumaka de N"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rolling Tackle",
|
||||
fr: "Roulé-Boulé",
|
||||
es: "Placaje Giro",
|
||||
de: "Rolltackle",
|
||||
it: "Rollazione",
|
||||
pt: "Golpe de Colisão Rolante",
|
||||
'es-mx': "Tacleada Rodante"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Flare",
|
||||
fr: "Flamboiement",
|
||||
es: "Llama",
|
||||
de: "Flackern",
|
||||
it: "Fiammata",
|
||||
pt: "Chama",
|
||||
'es-mx': "Llama"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user