1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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/xy/xy1/82.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: "xy1-82",
localId: 82,
// Card informations
name: {
en: "Bisharp",
fr: "Scalproie",
},
hp: 90,
type: [
Type.METAL,
],
dexId: 625,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy1/82/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy1/82/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy1/82/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy1/82/high.png",
},
},
evolveFrom: {
en: "Pawniard",
fr: "Scalpion",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 67,
name: "Hitoshi Ariga"
},
attacks: [{
cost: [
Type.METAL
],
name: {
en: "Metal Sound",
fr: "Strido-Son",
},
text: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
},
},{
cost: [
Type.METAL,
Type.COLORLESS
],
name: {
en: "Metal Wallop",
fr: "Torgnole Métallique",
},
text: {
en: "During your next turn, this Pokémon's Metal Wallop attack does 40 more damage (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, l'attaque Torgnole Métallique de ce Pokémon inflige 40 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
},
damage: 40
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "XY",
code: "xy1"
}
}
export default card