1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
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 opponent's attacks.",
},
},
],
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Anger Revenge",
},
effect: {
en: "If Bastiodon was damaged by an attack during your opponent's last turn, this attack does 40 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "+40"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card