mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59:18 +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/139.ts
Normal file
43
data/Scarlet & Violet/Journey Together/139.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lechonk",
|
||||
fr: "Gourmelet",
|
||||
es: "Lechonk",
|
||||
de: "Ferkuli",
|
||||
it: "Lechonk",
|
||||
pt: "Lechonk",
|
||||
'es-mx': "Lechonk"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
de: "Ramme",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
'es-mx': "Colisión"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user