1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Scyther",
fr: "Scyther",
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
123,
],
hp: 60,
types: [
"Grass",
],
evolveFrom: {
fr: "Insécateur",
},
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Swords Dance",
fr: "Danse-lames",
},
effect: {
en: "During your next turn, Scyther's Slashing Strike attack's base damage is 60.",
fr: "Lors de votre prochain tour, les dégâts de base de l'attaque Coup déchirant d'Insécateur sont de 60.",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Slashing Strike",
fr: "Coup déchirant",
},
effect: {
en: "During your next turn, Scyther can't use Slashing Strike.",
fr: "Lors de votre prochain tour, Insécateur ne peut pas utiliser Coup déchirant.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
}
export default card