1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

102
cards/dp/dp4/103.ts Normal file
View File

@ -0,0 +1,102 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "dp4-103",
localId: 103,
// Card informations
name: {
en: "Cresselia",
fr: "Cresselia",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 488,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp4/103/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/103/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp4/103/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/103/high.png",
},
},
evolveFrom: {
fr: "Niveau Sup",
},
tags: [
Tag.LEVELUP,
],
illustrator: {
id: 17,
name: "Shizurow"
},
abilities: [{
id: 536,
type: AbilityType.POKEPOWER,
name: {
en: "Full Moon Dance",
fr: "Danse de pleine lune",
},
text: {
en: "Once during your turn (before your attack), you may move 1 damage counter from either player's Pokémon to another Pokémon (yours or your opponent's). This power can't be used if Cresselia is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez déplacer 1 marqueur de dégât d'1 Pokémon d'1 des joueurs vers 1 autre Pokémon (1 des vôtres ou 1 de votre adversaire). Ce pouvoir ne peut pas être utilisé si Cresselia est affecté par un État Spécial.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Moon Skip",
fr: "Petit bond lunaire",
},
text: {
en: "If the Defending Pokémon is Knocked Out by this attack, take 1 more Prize card.",
fr: "Si le Pokémon Défenseur est mis K.O par cette attaque, récoltez 1 carte Récompense supplémentaire.",
},
damage: 40
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHoloLvX,
category: Category.POKEMON,
set: {
name: "Great Encounters",
code: "dp4"
}
}
export default card