mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
95
cards/bw/bw11/35.ts
Normal file
95
cards/bw/bw11/35.ts
Normal file
@ -0,0 +1,95 @@
|
||||
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: "bw11-35",
|
||||
localId: 35,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Empoleon",
|
||||
},
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 395,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw11/35/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw11/35/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Prinplup",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 27,
|
||||
name: "kawayoo"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Surf",
|
||||
},
|
||||
damage: 50
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Emperor's Strike",
|
||||
},
|
||||
text: {
|
||||
en: "If this Pokémon has fewer remaining HP than the Defending Pokémon, this attack does 60 more damage.",
|
||||
},
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Legendary Treasures",
|
||||
code: "bw11"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user