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

94
cards/bw/bw1/PIKA.ts Normal file
View File

@ -0,0 +1,94 @@
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: "bw1-PIKA",
localId: "PIKA",
// Card informations
name: {
fr: "Pikachu",
},
hp: 60,
type: [
Type.LIGHTNING,
],
image: {
low: {
fr: "https://assets.tcgdex.net/fr/bw/bw1/PIKA/low.png",
},
high: {
fr: "https://assets.tcgdex.net/fr/bw/bw1/PIKA/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
fr: "Énergisant",
},
text: {
fr: "Attachez une carte Énergie Lightning de votre pile de défausse à ce Pokémon.",
},
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
fr: "Tonnerre",
},
text: {
fr: "Défaussez toutes les Énergies attachées à ce Pokémon.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Noir & Blanc",
code: "bw1"
}
}
export default card