mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
* fix: Add the two first sets Signed-off-by: Avior <github@avior.me> * fix: Add DP, DP Black Star and Mysterious Treasures Signed-off-by: Avior <github@avior.me>
85 lines
1.6 KiB
TypeScript
85 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Mysterious Treasures'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Bastiodon",
|
|
fr: "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",
|
|
fr: "Mur protecteur"
|
|
},
|
|
effect: {
|
|
en: "Prevent all damage done to your Benched Pokémon by your opponent's attacks.",
|
|
fr: "Prévenez tous les dégâts infligés à vos Pokémon de Banc par des attaques de votre adversaire."
|
|
},
|
|
},
|
|
],
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
"Metal",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Anger Revenge",
|
|
fr: "Vengeance furieuse"
|
|
},
|
|
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.)",
|
|
fr: "Si des dégâts ont été infligés à Bastiodon par une attaque lors du dernier tour de votre adversaire, cette attaque inflige 40 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)"
|
|
},
|
|
damage: 60,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+40"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Il résiste à toute attaque frontale. C'est un Pokémon docile qui se nourrit d'herbe et de Baies."
|
|
}
|
|
}
|
|
|
|
export default card
|