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

97
cards/hgss/hgss4/97.ts Normal file
View File

@ -0,0 +1,97 @@
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: "hgss4-97",
localId: 97,
// Card informations
name: {
en: "Mew",
fr: "Mew",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 151,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/97/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/97/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss4/97/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss4/97/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 54,
name: "Hideaki Hakozaki"
},
abilities: [{
id: 613,
type: AbilityType.POKEBODY,
name: {
en: "Lost Link",
fr: "Lien perdu",
},
text: {
en: "Mew can use the attacks of all of the Pokémon in the Lost Zone (both yours and your opponent's). (You still need the necessary Energy to use each attack.)",
fr: "Mew peut utiliser les attaques de tous les Pokémon dans la Zone Perdue (les vôtres et ceux de votre adversaire). (Vous devrez néanmoins avoir suffisamment d'Énergie pour utiliser chaque attaque.)",
}
}],
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "See Off",
fr: "Perdu de vue",
},
text: {
en: "Search your deck for 1 Pokémon and put it in the Lost Zone. Shuffle your deck afterward.",
fr: "Cherchez un Pokémon dans votre deck et placez-le dans la Zone Perdue. Mélangez ensuite votre deck.",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.RarePrime,
category: Category.POKEMON,
set: {
name: "HS—Triumphant",
code: "hgss4"
}
}
export default card