1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 04:49:19 +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/bw/bw8/34.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: "bw8-34",
localId: 34,
// Card informations
name: {
en: "Manaphy",
fr: "Manaphy",
},
hp: 70,
type: [
Type.WATER,
],
dexId: 490,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/34/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/34/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/34/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/34/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
abilities: [{
id: 353,
type: AbilityType.TALENT,
name: {
en: "Final Wish",
fr: "Dernier Souhait",
},
text: {
en: "When this Pokémon is Knocked Out by damage from an opponent's attack, search your deck for a card and put it into your hand. Shuffle your deck afterward.",
fr: "Lorsque ce Pokémon est mis K.O. par les dégâts d'une attaque de votre adversaire, cherchez une carte dans votre deck puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
}
}],
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Seafaring",
fr: "Voyage en Mer",
},
text: {
en: "Flip 3 coins. For each heads, attach a Water Energy card from your discard pile to your Benched Pokémon in any way you like.",
fr: "Lancez 3 pièces. Pour chaque côté face, attachez une carte Énergie Water de votre pile de défausse à vos Pokémon de Banc, de la manière que vous voulez.",
},
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card