mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 13:52:13 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more fixes Signed-off-by: Avior <florian.bouillon@delta-wings.net> * More updated :D Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Finished update in English Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated XY datas Signed-off-by: Avior <florian.bouillon@delta-wings.net>
34 lines
675 B
TypeScript
34 lines
675 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKpoint'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "All-Night Party",
|
||
fr: "Célébration Nocturne",
|
||
},
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Une seule fois pendant le tour de chaque joueur, si le Pokémon Actif de ce joueur est Endormi, il peut retirer cet État Spécial et soigner 30 dégâts au Pokémon.",
|
||
en: "Once during each player’s turn, if that player’s Active Pokémon is Asleep, he or she may remove that Special Condition and heal 30 damage from that Pokémon."
|
||
},
|
||
trainerType: "Stadium",
|
||
|
||
}
|
||
|
||
export default card
|