1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

106
cards/sm/sm5/85.ts Normal file
View File

@ -0,0 +1,106 @@
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: "sm5-85",
localId: 85,
// Card informations
name: {
en: "Bastiodon",
fr: "Bastiodon",
},
hp: 160,
type: [
Type.METAL,
],
dexId: 411,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm5/85/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm5/85/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm5/85/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm5/85/high.png",
},
},
evolveFrom: {
en: "Shieldon",
fr: "Dinoclier",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 80,
name: "Hasuno"
},
abilities: [{
id: 857,
type: AbilityType.TALENT,
name: {
en: "Earthen Shield",
fr: "Bouclier de Terre",
},
text: {
en: "Prevent all damage done to your Metal Pokémon by attacks from your opponent's Pokémon that have any Special Energy attached to them.",
fr: "Évitez tous les dégâts dattaque infligés à vos Pokémon Metal par les Pokémon de votre adversaire auxquels est attachée de lÉnergie spéciale.",
}
}],
attacks: [{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Push Down",
fr: "Recul",
},
text: {
en: "You may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Vous pouvez demander à votre adversaire déchanger son Pokémon Actif avec lun de ses Pokémon de Banc.",
},
damage: 110
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Ultra Prism",
code: "sm5"
}
}
export default card