mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-16 05:29:55 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Added the rest of the SWSH variants Signed-off-by: Avior <florian.bouillon@delta-wings.net>
62 lines
796 B
TypeScript
62 lines
796 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Shelmet",
|
||
fr: "Escargaume",
|
||
es: "Shelmet",
|
||
it: "Shelmet",
|
||
pt: "Shelmet",
|
||
de: "Schnuthelm"
|
||
},
|
||
|
||
illustrator: "Megumi Mizutani",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Spray Fluid",
|
||
fr: "Fluide Éclaboussant",
|
||
es: "Fluido Rociado",
|
||
it: "Fluidospray",
|
||
pt: "Fluido Spray",
|
||
de: "Sprühwasser"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|