1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

86 lines
1.3 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Scizor",
fr: "Cizayox",
es: "Scizor",
it: "Scizor",
pt: "Scizor",
de: "Scherox"
},
illustrator: "Hiroki Asanuma",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
212,
],
hp: 120,
types: [
"Metal",
],
evolveFrom: {
en: "Scyther",
fr: "Insécateur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Steel Slash",
fr: "Tranche Acier",
},
effect: {
en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Pokémon-EX.",
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon-EX.",
},
damage: 40,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Slashing Strike",
fr: "Coup Déchirant",
},
effect: {
en: "This Pokémon can't use Slashing Strike during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Coup Déchirant pendant votre prochain tour.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card