1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Updated Datas

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-03-16 21:11:34 +01:00
parent c280411122
commit 5154b2c15a
189 changed files with 560 additions and 605 deletions

87
cards/ex/exu/P.ts Normal file
View File

@ -0,0 +1,87 @@
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'
const card: Card = {
// ids
id: "exu-P",
localId: "P",
// Card informations
name: {
en: "Unown",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 201,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/exu/P/low",
},
high: {
en: "https://assets.tcgdex.net/en/ex/exu/P/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Kyoko Koizumi",
abilities: [{
id: 88,
type: AbilityType.POKEPOWER,
name: {
en: "Shuffle",
},
text: {
en: "Once during your turn (before your attack), you may search your deck for another Unown and switch it with Unown. (Any cards attached to Unown, damage counters, Special Conditions, and effects on it are now on the new Pokémon.) If you do, put Unown on top of your deck. Shuffle your deck afterward. You can't use more than 1 Shuffle Poké-Power each turn.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hidden Power",
},
text: {
en: "Put 1 damage counter on each of your opponent's Pokémon that already has damage counters on it.",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Unseen Forces",
code: "exu"
}
}
export default card