mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
* fix: Add for some sets Signed-off-by: Avior <github@avior.me> * Added Sets titles Signed-off-by: Avior <github@avior.me> * fix: Finished last EX sets Signed-off-by: Avior <github@avior.me> * Change Discord Link text
22 lines
605 B
TypeScript
22 lines
605 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Emerald'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Oran Berry",
|
|
fr: "Baie Oran"
|
|
},
|
|
|
|
illustrator: "Kazuo Yazawa",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Tool",
|
|
|
|
effect: {
|
|
fr: "Attachez Baie Oran à 1 de vos Pokémon qui ne possède pas déjà d'Outil Pokémon. Si ce Pokémon est mis K.O., défaussez-la.\n\nN'importe quand entre deux tours, si le Pokémon auquel cette carte est attachée possède au moins deux marqueurs de dégât, retirez-les lui. Ensuite, défaussez Baie Oran."
|
|
}
|
|
}
|
|
|
|
export default card
|