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
659 B
TypeScript
43 lines
659 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Toedscool",
|
|
fr: "Terracool",
|
|
es: "Toedscool",
|
|
de: "Tentagra",
|
|
it: "Toedscool",
|
|
pt: "Toedscool",
|
|
'es-mx': "Toedscool"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Spray Fluid",
|
|
fr: "Fluide Éclaboussant",
|
|
es: "Fluido Rociado",
|
|
de: "Sprühwasser",
|
|
it: "Fluidospray",
|
|
pt: "Fluido Spray",
|
|
'es-mx': "Rociar Líquido"
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |