1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon dc4d1bd6cb
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>
2021-09-29 21:43:33 +00:00

91 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Undaunted'
const card: Card = {
name: {
en: "Scizor",
fr: "Cizayox",
},
illustrator: "Noriko Hotta",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
212,
],
hp: 100,
types: [
"Metal",
],
evolveFrom: {
en: "Scyther",
fr: "Insecateur",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Red Armor",
fr: "Armure rouge",
},
effect: {
en: "Prevent all damage done to Scizor by attacks from your opponents Pokémon that have any Special Energy cards attached to them.",
fr: "Évitez tous les dégâts dattaque infligés à Cizayox par les Pokémon de votre adversaire auxquels sont attachées des cartes Énergie spéciale.",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Metal Scissors",
fr: "Ciseaux dacier",
},
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+",
},
],
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