mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 21:32:17 +00:00
Updated card and added effect field
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
cb6ed1407e
commit
868cd47e46
@ -4,6 +4,7 @@ import Tag from '../../../interfaces/Tag'
|
|||||||
import Rarity from '../../../interfaces/Rarity'
|
import Rarity from '../../../interfaces/Rarity'
|
||||||
import AbilityType from '../../../interfaces/AbilityType'
|
import AbilityType from '../../../interfaces/AbilityType'
|
||||||
import Category from '../../../interfaces/Category'
|
import Category from '../../../interfaces/Category'
|
||||||
|
import sm from '../../../sets/sm/sm12'
|
||||||
|
|
||||||
const card: Card = {
|
const card: Card = {
|
||||||
|
|
||||||
@ -17,12 +18,6 @@ const card: Card = {
|
|||||||
fr: "Énergie de Pioche",
|
fr: "Énergie de Pioche",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
image: {
|
image: {
|
||||||
low: {
|
low: {
|
||||||
en: "https://assets.tcgdex.net/en/sm/sm12/209/low.png",
|
en: "https://assets.tcgdex.net/en/sm/sm12/209/low.png",
|
||||||
@ -34,38 +29,19 @@ const card: Card = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
evolveFrom: {},
|
|
||||||
|
|
||||||
tags: [
|
tags: [
|
||||||
Tag.SPECIAL,
|
Tag.SPECIAL,
|
||||||
],
|
],
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
fr: "Cette carte fournit de l’Énergie Colorless. \n\nLorsque vous attachez cette carte de votre main à un Pokémon, piochez une carte."
|
||||||
|
|
||||||
|
|
||||||
attacks: [{
|
|
||||||
name: {},
|
|
||||||
text: {
|
|
||||||
fr: "Cette carte fournit de l’Énergie Colorless. \n\nLorsque vous attachez cette carte de votre main à un Pokémon, piochez une carte.",
|
|
||||||
},
|
},
|
||||||
}],
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rarity: Rarity.Uncommon,
|
rarity: Rarity.Uncommon,
|
||||||
|
|
||||||
category: Category.ENERGY,
|
category: Category.ENERGY,
|
||||||
|
|
||||||
set: {
|
set: sm
|
||||||
name: "Cosmic Eclipse",
|
|
||||||
code: "sm12"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default card
|
export default card
|
||||||
|
|
||||||
|
@ -37,6 +37,9 @@ interface Card {
|
|||||||
|
|
||||||
attacks?: Array<Attack>
|
attacks?: Array<Attack>
|
||||||
|
|
||||||
|
// If card is trainer or energy effect is here
|
||||||
|
effect?: LangList<string>
|
||||||
|
|
||||||
weaknesses?: Array<{
|
weaknesses?: Array<{
|
||||||
type: Type
|
type: Type
|
||||||
value?: string
|
value?: string
|
||||||
|
Loading…
x
Reference in New Issue
Block a user