1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

107
cards/sm/sm11/134.ts Normal file
View 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: "sm11-134",
localId: 134,
// Card informations
name: {
en: "Drapion",
fr: "Drascore",
},
hp: 140,
type: [
Type.DARKNESS,
],
dexId: 452,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm11/134/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm11/134/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm11/134/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm11/134/high.png",
},
},
evolveFrom: {
en: "Skorupi",
fr: "Rapion",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 102,
name: "SATOSHI NAKAI"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Cross Poison",
fr: "Poison-Croix",
},
text: {
en: "Flip 4 coins. This attack does 50 damage for each heads. If at least 2 of them are heads, your opponent's Active Pokémon is now Poisoned.",
fr: "Lancez 4 pièces. Cette attaque inflige 50 dégâts pour chaque côté face. Si vous obtenez au moins 2 côtés face, le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
},
damage: 50
},{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Slicing Blade",
fr: "Lame Tranchante",
},
damage: 120
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Unified Minds",
code: "sm11"
}
}
export default card