1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/104.ts

48 lines
733 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Pupitar"
},
illustrator: "Sekio",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
evolveFrom: {
en: "Larvitar"
},
description: {
en: "This pupa flies around wildly by venting with\ngreat force the gas pressurized inside its body."
},
stage: "Stage1",
attacks: [{
name: {
en: "Guard Press"
},
damage: 20,
cost: ["Colorless", "Colorless"],
effect: {
en: "During your opponent's next turn, this Pokémon takes 30 damage from attacks."
}
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card