1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

89 lines
1.3 KiB
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 '../POP Series 6'
const card: Card = {
name: {
en: "Bastiodon",
},
illustrator: "Kazuyuki Kano",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
411,
],
hp: 130,
types: [
"Metal",
],
evolveFrom: {
en: "Shieldon",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Protective Wall",
},
effect: {
en: "Prevent all damage done to your Benched Pokémon by your opponents attacks.",
},
},
],
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Anger Revenge",
},
effect: {
en: "If Bastiodon was damaged by an attack during your opponents last turn, this attack does 40 damage to 1 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "+40"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
description: {
en: "Any frontal attack is repulsed. It is a docile Pokémon that feeds on grass and berries."
},
retreat: 3,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card