1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 04:19:18 +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,80 @@
import { Card } from '../../../interfaces'
import Set from '../Emerging Powers'
const card: Card = {
name: {
en: "Ferrothorn",
fr: "Noacier",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
598,
],
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Ferroseed",
fr: "Grindur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Steel Feelers",
fr: "Tentacules d'Acier",
},
effect: {
en: "Flip 3 coins. This attack does 30 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
},
damage: 30,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Gyro Ball",
fr: "Gyroballe",
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon. Then, your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc. Ensuite, votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card