1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

98 lines
1.5 KiB
TypeScript

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "dp2-21",
localId: 21,
// Card informations
name: {
en: "Bastiodon",
},
hp: 130,
type: [
Type.METAL,
],
dexId: 411,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/21/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/21/high",
},
},
evolveFrom: {
en: "Shieldon",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 97,
name: "Kazuyuki Kano"
},
abilities: [{
id: 528,
type: AbilityType.POKEBODY,
name: {
en: "Protective Wall",
},
text: {
en: "Prevent all damage done to your Benched Pokémon by your opponent's attacks.",
}
}],
attacks: [{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Anger Revenge",
},
text: {
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: Type.FIRE,
value: "+40"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card