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/91.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-91",
localId: 91,
// Card informations
name: {
en: "Unown",
fr: "Zarbi",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 201,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm8/91/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/91/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm8/91/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/91/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 80,
name: "Hasuno"
},
abilities: [{
id: 1255,
type: AbilityType.TALENT,
name: {
en: "HAND",
fr: "MAIN",
},
text: {
en: "Once during your turn (before your attack), if this Pokémon is your Active Pokémon, and if you have 35 or more cards in your hand, 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 vous avez 35 cartes ou plus dans votre main, 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