mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 21:02:02 +00:00
44 lines
737 B
TypeScript
44 lines
737 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Wisdom of Sea and Sky"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Stantler"
|
|
},
|
|
|
|
illustrator: "sui",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Colorless"],
|
|
|
|
description: {
|
|
en: "This Pokémon apparently used to live in much\nharsher environments, and thus it once had\nstronger psychic powers than it does now."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Enhanced Horns"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
effect: {
|
|
en: "If this Pokémon has a Pokémon Tool attached, this attack does 50 more damage."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |