mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
only missing the secrets cards as they are secret :D Signed-off-by: Avior <florian.bouillon@delta-wings.net>
25 lines
548 B
TypeScript
25 lines
548 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Lona",
|
||
en: "Melony"
|
||
},
|
||
|
||
illustrator: "take",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
fr: "Attachez une carte Énergie Water de votre pile de défausse à l’un de vos Pokémon-V. Dans ce cas, piochez 3 cartes.",
|
||
en: "Attach a Water Energy card from your discard pile to 1 of your Pokémon V. If you do, draw 3 cards."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |