1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

75 lines
1.4 KiB
TypeScript

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: "xy3-103",
localId: 103,
// Card informations
name: {
en: "Herbal Energy",
fr: "Phyto-Énergie",
},
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy3/103/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy3/103/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy3/103/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy3/103/high.png",
},
},
evolveFrom: {},
tags: [
Tag.SPECIAL,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
name: {},
text: {
fr: "Cette carte ne peut être attachée qu'à un Pokémon Grass. Cette carte ne fournit de l'Énergie Grass que pendant qu'elle est attachée à un Pokémon Grass.\n\nLorsque vous attachez cette carte de votre main à l'un de vos Pokémon Grass, soignez 30 dégâts au Pokémon. \n\n(Si cette carte est attachée à autre chose qu'un Pokémon Grass, défaussez cette carte.)",
},
}],
rarity: Rarity.Uncommon,
category: Category.ENERGY,
set: {
name: "Furious Fists",
code: "xy3"
}
}
export default card