1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/183.ts

44 lines
747 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Stantler"
},
illustrator: "Noriaki Tanimura",
rarity: "One Star",
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