1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09: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,78 @@
import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Skarmory",
fr: "Skarmory",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
227,
],
hp: 80,
types: [
"Metal",
],
evolveFrom: {
fr: "Airmure",
},
stage: "Basic",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Quick Attack",
fr: "Vive-attaque",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
},
damage: 10,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Mach Blade",
fr: "Mach-lame",
},
effect: {
en: "Flip a coin. If heads, this attack does 50 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts à 1 des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card