1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

75 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Pupitar",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
247,
],
hp: 70,
types: [
"Fighting",
],
evolveFrom: {
en: "Larvitar",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pressurized Gas",
},
effect: {
en: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Rocket Tackle",
},
effect: {
en: "Pupitar does 10 damage to itself. Flip a coin. If heads, prevent all damage done to Pupitar by attacks during your opponent's next turn.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "+20"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
}
export default card