mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
Fix HeartGold SoulSilver datas (#73)
* Update Signed-off-by: Avior <github@avior.me> * Update datas Signed-off-by: Avior <github@avior.me> * Finished fix Signed-off-by: Avior <github@avior.me> * Updated some more Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more updates Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Scizor",
|
||||
fr: "Cizayox",
|
||||
},
|
||||
illustrator: "Noriko Hotta",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
illustrator: "Noriko Hotta",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
212,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Scyther",
|
||||
fr: "Insecateur",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@ -32,11 +37,12 @@ const card: Card = {
|
||||
fr: "Armure rouge",
|
||||
},
|
||||
effect: {
|
||||
en: "Prevent all damage done to Scizor by attacks from your opponent's Pokémon that have any Special Energy cards attached to them.",
|
||||
fr: "Évitez tous les dégâts d'attaque infligés à Cizayox par les Pokémon de votre adversaire auxquels sont attachées des cartes Énergie spéciale.",
|
||||
en: "Prevent all damage done to Scizor by attacks from your opponent’s Pokémon that have any Special Energy cards attached to them.",
|
||||
fr: "Évitez tous les dégâts d’attaque infligés à Cizayox par les Pokémon de votre adversaire auxquels sont attachées des cartes Énergie spéciale.",
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -45,32 +51,40 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Metal Scissors",
|
||||
fr: "Ciseaux d'acier",
|
||||
fr: "Ciseaux d’acier",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 30 damage plus 20 more damage for each Metal Energy attached to Scizor.",
|
||||
fr: "Inflige 30 dégâts plus 20 dégâts supplémentaires pour chaque carte Énergie Metal attachée à Cizayox.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
suffix: "Prime",
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user