1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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

120
cards/sm/sma/SV72.ts Normal file
View File

@ -0,0 +1,120 @@
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: "sma-SV72",
localId: "SV72",
// Card informations
name: {
en: "Scizor-GX",
fr: "Cizayox-GX",
},
hp: 210,
type: [
Type.METAL,
],
dexId: 212,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sma/SV72/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV72/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sma/SV72/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV72/high.png",
},
},
evolveFrom: {
en: "Scyther",
fr: "Insécateur",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1127,
type: AbilityType.TALENT,
name: {
en: "Danger Perception",
fr: "Perception du Danger",
},
text: {
en: "If this Pokémon's remaining HP is 100 or less, its attacks do 80 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).",
fr: "Sil reste 100 PV ou moins à ce Pokémon, ses attaques infligent 80 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
}
}],
attacks: [{
cost: [
Type.METAL,
Type.COLORLESS
],
name: {
en: "Steel Wing",
fr: "Aile dAcier",
},
text: {
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
},
damage: 80
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Cross-Cut-GX",
fr: "Coupe Transversale-GX",
},
text: {
en: "If your opponent's Active Pokémon is an Evolution Pokémon, this attack does 100 more damage. (You can't use more than 1 GX attack in a game.)",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Évolutif, cette attaque inflige 100 dégâts supplémentaires. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 100
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Shiny Vault",
code: "sma"
}
}
export default card