1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

77 lines
1.5 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 '../Emerald'
const card: Card = {
name: {
en: "Registeel ex",
fr: "Registeel ex",
de: "Registeel ex"
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
379,
],
hp: 90,
types: [
"Metal",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Block Signal",
fr: "Signal lumineux",
de: "Block Signal"
},
effect: {
en: "If Regice ex is in play, flip a coin. If heads, the Defending Pokémon is now Confused.",
fr: "Si Regice ex est en jeu, lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus.",
de: "If Regice ex is in play, flip a coin. If heads the Defending Pokémon is now Confused."
},
damage: 10,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Wide Laser",
fr: "Laser de grande envergure",
de: "Wide Laser"
},
effect: {
en: "Does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 20 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
de: "Does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card