1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00

83 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 '../Steam Siege'
const card: Card = {
name: {
en: "Steelix-EX",
fr: "Steelix-EX",
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
208,
],
hp: 180,
types: [
"Metal",
],
suffix: "EX",
attacks: [
{
cost: [
"Metal",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Wild Edge",
fr: "Tranchant Sauvage",
},
effect: {
en: "You may do 50 more damage. If you do, this Pokémon does 20 damage to itself.",
fr: "Vous pouvez infliger 50 dégâts supplémentaires. Dans ce cas, ce Pokémon sinflige 20 dégâts.",
},
damage: 80,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Iron Tail",
fr: "Queue de Fer",
},
effect: {
en: "Flip a coin until you get tails. This attack does 100 damage times the number of heads.",
fr: "Lancez une pièce jusquà ce que vous obteniez un côté pile. Cette attaque inflige 100 dégâts multipliés par le nombre de côtés face.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card