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

114
cards/bw/bwp/BW85.ts Normal file
View File

@ -0,0 +1,114 @@
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: "bwp-BW85",
localId: "BW85",
// Card informations
name: {
en: "Lucario",
fr: "Lucario",
},
hp: 100,
type: [
Type.FIGHTING,
],
dexId: 448,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bwp/BW85/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW85/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bwp/BW85/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW85/high.png",
},
},
evolveFrom: {
en: "Riolu",
fr: "Riolu",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
abilities: [{
id: 1422,
type: AbilityType.TALENT,
name: {
en: "Intuition",
},
text: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may draw 2 cards.",
}
}],
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Fast Punch",
fr: "{Ability] Intuition",
},
text: {
en: "Flip a coin. If heads, this attack does 30 more damage.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez piocher 2 cartes.",
},
damage: 60
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
fr: "Poing Rapide",
},
text: {
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: "60+"
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "BW Black Star Promos",
code: "bwp"
}
}
export default card