mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* Added current set informations Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Fixed incorrect set ID * Updated Chilling Reign current cards Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated informations for Chilling Reign Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Added new Entries Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
78 lines
1.7 KiB
TypeScript
78 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Cresselia",
|
||
fr: "Cresselia"
|
||
},
|
||
|
||
illustrator: "Tia Matsuno",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 120,
|
||
dexId: [488],
|
||
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: 'Basic',
|
||
|
||
description: {
|
||
en: "Those who sleep holding cresselia's\nfeather are assured of joyful dreams. It is\nsaid to represent the crescent moon.",
|
||
fr: "Dormir aec une de ses plumes à la main\npermet de faire de beaux rêves. On le\nsurnomme « avatar d croissant de lune »."
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic"
|
||
],
|
||
name: {
|
||
en: "Crescent Glow",
|
||
fr: "Lueur Lunule"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a Psychic Energy card and attach it to 1 of your Pokémon. If you go second and it's your first turn, instead search for up to 3 Psychic Energy cards and attach them to 1 of your Pokémon. Then, shuffle your deck.",
|
||
fr: "Cherchez dans votre deck une carte Énergie Psy, puis attachez-la à l'un de vos Pokémon. Si vous jouez en second et que c'est votre premier tour, cherchez jusqu'à 3 cartes Énergie Psy à la place. puis attachez-les à l'un de vos Pokémon. Mélangez ensuite cotre deck.",
|
||
}
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Psychic"
|
||
],
|
||
name: {
|
||
en: "Photon Laser",
|
||
fr: "Laser à Photons"
|
||
},
|
||
effect: {
|
||
en: "If you have at least 5 Energy in play, this attack does 90 more damage.",
|
||
fr: "Si vous avez au moins 5 Énerges en jeu, cette attaque inflige 90 dégâts supplémentaires.",
|
||
},
|
||
damage: '30+'
|
||
}
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|