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

75 lines
1.2 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: "Regice",
fr: "Regice",
de: "Regice"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
378,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Clear Body",
fr: "Corps sain",
de: "Neutraltorso"
},
effect: {
en: "Regice can't be affected by any Special Conditions.",
fr: "Regice ne peut pas être affecté par des États Spéciaux.",
de: "Regice kann nicht von Speziellen Zuständen betroffen werden."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Icy Wind",
fr: "Vent glacé",
de: "Eissturm"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi.",
de: "Wirf 1 Münze. Bei \"Kopf\" schläft das Verteidigende Pokémon jetzt."
},
damage: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
}
export default card