1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

98 lines
2.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Chilling Reign'
const card: Card = {
name: {
en: "Castform Snowy Form",
fr: "Morphéo Forme Blizzard",
es: "Castform Forma Nieve",
it: "Castform Forma Nuvola di Neve",
pt: "Castform Forma Nevada",
de: "Formeo Schneeform"
},
illustrator: "miki kudo",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 70,
dexId: [351],
types: [
"Water",
],
stage: 'Basic',
description: {
en: 'This is Castform\'s form when caught in a hailstrom. Its\nwhole body is chilled, and its skin is partially frozen!',
fr: 'Morphéo adopte cette apparence quand\n il est frappé par la grèle. Tout son corps est froid et sa peau est légèrement givrée.'
},
abilities: [{
type: 'Ability',
name: {
en: 'Weather Reading',
fr: 'Météorologie',
es: "Interpretación del Tiempo",
it: "Previsioni Meteo",
pt: "Leitura Climática",
de: "Wetterlesen"
},
effect: {
en: "If you have 8 or more Stadium cards in your discard pile, ignore all Energy in this Pokémons attack costs.",
fr: "Si vous avez 8 cartes Stade ou plus dans votre pile de défausse, ignorez toutes les Énergies dans le coût des attaques de ce Pokémon.",
es: "Si tienes 8 cartas de Estadio o más en tu pila de descartes, ignora todas las Energías en el coste de los ataques de este Pokémon.",
it: "Sei hai otto o più carte Stadio nella tua pila degli scarti, ignora tutte le Energie necessarie per usare gli attacchi di questo Pokémon.",
pt: "Se você tiver 8 ou mais cartas de Estádio na sua pilha de descarte, ignore todas as Energias nos custos dos ataques deste Pokémon.",
de: "Wenn du 8 oder mehr Stadionkarten in deinem Ablagestapel hast, ignoriere alle Energien in den Attackenkosten dieses Pokémon."
}
}],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Frosty Typhoon",
fr: "Typhon Givré",
es: "Tifón Gélido",
it: "Gelotifone",
pt: "Tufão Glacial",
de: "Frosttaifun"
},
effect: {
en: "During your next turn, this Pokémon cant use Frosty Typhoon.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Typhon Givré.",
es: "Durante tu próximo turno, este Pokémon no puede usar Tifón Gélido.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Gelotifone.",
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Tufão Glacial.",
de: "Während deines nächsten Zuges kann dieses Pokémon Frosttaifun nicht einsetzen."
},
damage: 120
}
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 0,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card