1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

94
cards/sm/sm8/92.ts Normal file
View File

@ -0,0 +1,94 @@
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: "sm8-92",
localId: 92,
// Card informations
name: {
en: "Unown",
fr: "Zarbi",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 201,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm8/92/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/92/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm8/92/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/92/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
abilities: [{
id: 1273,
type: AbilityType.TALENT,
name: {
en: "MISSING",
fr: "MANQUANT",
},
text: {
en: "Once during your turn (before your attack), if this Pokémon is your Active Pokémon, and if your opponent has 12 or more Supporter cards in the Lost Zone, you may use this Ability. If you do, you win this game.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est votre Pokémon Actif, et si votre adversaire a 12 cartes Supporter ou plus dans la Zone Perdue, vous pouvez utiliser ce talent. Dans ce cas, vous remportez la partie.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Hidden Power",
fr: "Puissance Cachée",
},
damage: 10
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Lost Thunder",
code: "sm8"
}
}
export default card