1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

92 lines
2.9 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 '../Hidden Legends'
const card: Card = {
name: {
en: "Snow-cloud Castform",
fr: "Morpheo Neige",
de: "Schneesturm Formeo"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
351,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Temperamental Weather",
fr: "Météo capricieuse",
de: "Temperamental Weather"
},
effect: {
en: "Once during your turn (before your attack), you may search your deck for Castform, Rain Castform, or Sunny Castform and switch it with Snow-cloud Castform. (Any cards attached to Snow-cloud Castform, damage counters, Special Conditions, and effects on it are now on the new Pokémon.) Shuffle Snow-cloud Castform back into your deck. You can't use more than 1 Temperamental Weather Poké-Power each turn.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez chercher dans votre deck Morpheo, Morpheo Pluie ou Morpheo Soleil et l'échanger avec Morpheo Neige. (Toutes les cartes attachées à Morpheo Neige, les marqueurs de dégât et les effets se trouvent maintenant sur le nouveau Pokémon.) Mélangez Morpheo Neige à votre deck. Vous ne pouvez pas utiliser plus d'1 Météo capricieuse par tour.",
de: "Once during your turn (before your attack), you may search your deck for Castform, Rain Castform, or Sunny Castform and switch it with Snow-cloud Castform. (Any cards attached to Snow-cloud Castform, damage counters, Special Conditions, and effects on it are now on the new Pokémon.) Shuffle Snow-cloud Castform back into your deck. You can't use more than 1 Temperamental Weather Poké-Power each turn."
},
},
],
attacks: [
{
cost: [
"Water",
],
name: {
en: "Flurries",
fr: "Rafales",
de: "Flurries"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Asleep.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé. Si c'est pile, le Pokémon Défenseur est maintenant Endormi.",
de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Asleep."
},
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "White Snow",
fr: "Neige blanche",
de: "White Snow"
},
effect: {
en: "If Magnetic Storm is in play, this attack does 50 damage plus 20 more damage.",
fr: "Si Tempête magnétique est en jeu, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires.",
de: "If Magnetic Storm is in play, this attack does 50 damage plus 20 more damage."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
}
export default card