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

91 lines
1.6 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: "dp2-67",
localId: 67,
// Card informations
name: {
en: "Unown T",
},
hp: 50,
type: [
Type.PSYCHIC,
],
dexId: 201,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/67/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/67/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 97,
name: "Kazuyuki Kano"
},
abilities: [{
id: 138,
type: AbilityType.POKEPOWER,
name: {
en: "THROW",
},
text: {
en: "Once during your turn (before your attack), if Unown T is your Active Pokémon, you may discard a card from your hand. Then, flip a coin. If heads, put 2 damage counters on 1 of your opponent's Benched Pokémon. This power can't be used if Unown T is affected by a Special Condition.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Hidden Power",
},
text: {
en: "Look at your opponent's hand and choose 1 card, then have your opponent shuffle that card into his or her deck. Then, show your opponent your hand and he or she chooses 1 card. Shuffle that card into your deck.",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+10"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card