1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 06:49:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

99
cards/bw/bw8/98.ts Normal file
View File

@ -0,0 +1,99 @@
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: "bw8-98",
localId: 98,
// Card informations
name: {
en: "Clefable",
fr: "Mélodelfe",
},
hp: 90,
type: [
Type.COLORLESS,
],
dexId: 36,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/98/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/98/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/98/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/98/high.png",
},
},
evolveFrom: {
en: "Clefairy",
fr: "Mélofée",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
abilities: [{
id: 93,
type: AbilityType.TALENT,
name: {
en: "Moon Guidance",
fr: "Guide Lunaire",
},
text: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, search your deck for a card that evolves from 1 of your Pokémon and put it onto that Pokémon. (This counts as evolving that Pokémon.) Shuffle your deck afterward.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, cherchez dans votre deck une carte Évolution de l'un de vos Pokémon et placez-la sur le Pokémon. (Cela équivaut à faire évoluer le Pokémon.) Mélangez ensuite votre deck.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Moon Impact",
fr: "Impact Lunaire",
},
damage: 50
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card