1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

103
cards/sm/sm7/97.ts Normal file
View File

@ -0,0 +1,103 @@
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: "sm7-97",
localId: 97,
// Card informations
name: {
en: "Jirachi ◇",
fr: "Jirachi ",
},
hp: 80,
type: [
Type.METAL,
],
dexId: 385,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/97/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/97/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/97/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/97/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 1201,
type: AbilityType.TALENT,
name: {
en: "Wish Upon a Star",
fr: "Soupir aux Étoiles",
},
text: {
en: "If you took this Pokémon as a face-down Prize card during your turn and your Bench isn't full, before you put it into your hand, you may put it onto your Bench and take 1 more Prize card.",
fr: "Si vous avez obtenu ce Pokémon en récupérant une carte Récompense face cachée lors de votre tour, et si votre banc nest pas plein, plutôt que dajouter cette carte à votre main, vous pouvez la placer sur votre Banc et récupérer une carte Récompense supplémentaire.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Perish Dream",
fr: "Rêve Languissant",
},
text: {
en: "This Pokémon is now Asleep. At the end of your opponent's next turn, the Defending Pokémon will be Knocked Out.",
fr: "Ce Pokémon est maintenant Endormi. À la fin du prochain tour de votre adversaire, le Pokémon Défenseur sera K.O.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card