mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-11 16:31:58 +00:00
60 lines
813 B
TypeScript
60 lines
813 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Scarlet & Violet"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Sandile",
|
||
fr: "Mascaïman",
|
||
es: "Sandile",
|
||
it: "Sandile",
|
||
pt: "Sandile",
|
||
de: "Ganovil"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Fighting"],
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Fighting"],
|
||
|
||
name: {
|
||
en: "Gnaw",
|
||
fr: "Ronge",
|
||
es: "Roer",
|
||
it: "Rosicchiamento",
|
||
pt: "Roída",
|
||
de: "Nagen"
|
||
},
|
||
|
||
damage: 10
|
||
}, {
|
||
cost: ["Fighting", "Fighting"],
|
||
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
es: "Apisonar",
|
||
it: "Carica",
|
||
pt: "Aríete",
|
||
de: "Ramme"
|
||
},
|
||
|
||
damage: 30
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G",
|
||
illustrator: "Tomokazu Komiya",
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}]
|
||
}
|
||
|
||
export default card |