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

80 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 '../Holon Phantoms'
const card: Card = {
name: {
en: "Registeel",
fr: "Registeel",
de: "Registeel"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
379,
],
hp: 80,
types: [
"Metal",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Clear Body",
fr: "Corps sain",
de: "Neutraltorso"
},
effect: {
en: "Registeel can't be affected by any Special Conditions.",
fr: "Registeel ne peut pas être affecté par des États Spéciaux.",
de: "Registeel kann nicht von Speziellen Zuständen betroffen werden."
},
},
],
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
de: "Hyperstrahl"
},
effect: {
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
de: "Wirf 1 Münze. Bei \"Kopf\" lege 1 Energiekarte von dem Verteidigenden Pokémon auf den Ablagestapel deines Gegners."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card