1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

109 lines
1.9 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: "dp5-29",
localId: 29,
// Card informations
name: {
en: "Scizor",
fr: "Cizayox",
},
hp: 90,
type: [
Type.METAL,
],
dexId: 212,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp5/29/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp5/29/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp5/29/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp5/29/high.png",
},
},
evolveFrom: {
en: "Scyther",
fr: "Insécateur",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 94,
name: "Daisuke Ito"
},
attacks: [{
cost: [
Type.METAL
],
name: {
en: "Special Blow",
fr: "Coup spécial",
},
text: {
en: "If the Defending Pokémon has any Special Energy cards attached to it, this attack does 30 damage plus 50 more damage.",
fr: "Si le Pokémon Défenseur possède des cartes Énergie Spéciale, cette attaque inflige 30 dégâts plus 50 dégâts supplémentaires.",
},
damage: 30
},{
cost: [
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "X-Scissor",
fr: "Plaie-Croix",
},
text: {
en: "Flip a coin. If heads, this attack does 50 damage plus 40 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts plus 40 dégâts supplémentaires.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIRE,
value: "+30"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Majestic Dawn",
code: "dp5"
}
}
export default card