1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00

78 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Ferrothorn",
fr: "Noacier",
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
598,
],
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Ferroseed",
fr: "Grindur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Iron Defense",
fr: "Mur de Fer",
},
effect: {
en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est face, évitez tous les effets d'attaques (y compris les dégâts) infligés à ce Pokémon pendant le prochain tour de votre adversaire.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Power Whip",
fr: "Mégafouet",
},
effect: {
en: "Does 10 damage for each Energy attached to this Pokémon to one of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts pour chaque Énergie attachée à ce Pokémon à 1 des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card