mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
107
cards/sm/sm12/135.ts
Normal file
107
cards/sm/sm12/135.ts
Normal file
@ -0,0 +1,107 @@
|
||||
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: "sm12-135",
|
||||
localId: 135,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Bisharp",
|
||||
fr: "Scalproie",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 625,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm12/135/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm12/135/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm12/135/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm12/135/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pawniard",
|
||||
fr: "Scalpion",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 102,
|
||||
name: "SATOSHI NAKAI"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Corner",
|
||||
fr: "Coinçage",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Slashing Strike",
|
||||
fr: "Coup Déchirant",
|
||||
},
|
||||
text: {
|
||||
en: "This Pokémon can't use Slashing Strike during your next turn.",
|
||||
fr: "Ce Pokémon ne peut pas utiliser Coup Déchirant pendant votre prochain tour.",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Cosmic Eclipse",
|
||||
code: "sm12"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user