1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 2029a5ce9b
Added Datas for SWSH35
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-01-31 15:31:53 +01:00

49 lines
856 B
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-66",
localId: 66,
name: {
en: "Suspicious Food Tin",
},
illustrator: "Ryo Ueda",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Heal 80 damage from 1 of your Pokémon that has at least 1 Psychic Energy attached. If you healed any damage in this way, discard a Psychic Energy from it.",
},
}
export default card