mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
86 lines
1.4 KiB
TypeScript
86 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rising Rivals'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bastiodon GL",
|
||
fr: "Bastiodon Niv. 41",
|
||
de: "Bollterus GL"
|
||
},
|
||
illustrator: "Hajime Kusajima",
|
||
rarity: "Rare Holo",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
411,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Metal",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Bounce Back",
|
||
fr: "Retour à l'envoyer",
|
||
de: "Zurückprallen"
|
||
},
|
||
effect: {
|
||
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
|
||
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 des Pokémon de son Banc.",
|
||
de: "Dein Gegner tauscht das Verteidigende Pokémon gegen 1 Pokémon auf seiner Bank aus."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Smack Attack",
|
||
fr: "Claque-attaque",
|
||
de: "Klatsch-Attacke"
|
||
},
|
||
effect: {
|
||
en: "Remove 1 damage counter from Bastiodon .",
|
||
fr: "Retirez à Bastiodon 1 marqueur de dégât.",
|
||
de: "Entferne 1 Schadensmarke von Bollterus GL."
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|