mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
98 lines
2.8 KiB
TypeScript
98 lines
2.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Castform Sunny Form",
|
||
fr: "Morphéo Forme Solaire",
|
||
es: "Castform Forma Sol",
|
||
it: "Castform Forma Sole",
|
||
pt: "Castform Forma Ensolarada",
|
||
de: "Formeo Sonnenform"
|
||
},
|
||
|
||
illustrator: "Yuka Morii",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 70,
|
||
dexId: [351],
|
||
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
stage: 'Basic',
|
||
|
||
description: {
|
||
en: "Castform changes to this form when it basks in bright sunlight. When you touch its glowing skin, it feels all dried out!",
|
||
fr: 'Morphéo adopte cette apparence lorsqu\'il y a du soleil.\nSon corps rougeoyant est très sec au toucher.'
|
||
},
|
||
|
||
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émon's 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: [
|
||
"Fire",
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "High-Pressure Blast",
|
||
fr: "Explosion Sous Pression",
|
||
es: "Estallido de Alta Presión",
|
||
it: "Scoppio ad Alta Pressione",
|
||
pt: "Explosão de Alta Pressão",
|
||
de: "Hochdruckstoß"
|
||
},
|
||
effect: {
|
||
en: "Discard a Stadium in play. If you can't, this attack does nothing.",
|
||
fr: "Défaussez un Stade en jeu. Si vous ne le pouvez pas, cette attaque ne fait rien.",
|
||
es: "Descarta un Estadio en juego. Si no puedes, este ataque no hace nada.",
|
||
it: "Scarta una carta Stadio in gioco. Se non puoi, questo attacco non ha effetto.",
|
||
pt: "Descarte 1 Estádio em jogo. Se não puder fazer isto, este ataque não fará nada.",
|
||
de: "Lege 1 Stadionkarte im Spiel auf den Ablagestapel. Wenn du das nicht machen kannst, hat diese Attacke keine Auswirkungen."
|
||
},
|
||
damage: 150
|
||
}
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 0,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|