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

100
cards/bw/bwp/BW61.ts Normal file
View File

@ -0,0 +1,100 @@
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-BW61",
localId: "BW61",
// Card informations
name: {
en: "Keldeo-EX",
fr: "Keldeo ex",
},
hp: 170,
type: [
Type.WATER,
],
dexId: 647,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bwp/BW61/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW61/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bwp/BW61/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW61/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 13,
name: "Toyste Beach"
},
abilities: [{
id: 405,
type: AbilityType.TALENT,
name: {
en: "Rush In",
fr: "Intervention",
},
text: {
en: "Once during your turn (before your attack), if this Pokémon is on your Bench, you may switch this Pokémon with your Active Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est sur votre Banc, vous pouvez échanger ce Pokémon avec votre Pokémon Actif.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Secret Sword",
fr: "Lame Ointe",
},
text: {
en: "Does 20 more damage for each Water Energy attached to this Pokémon.",
fr: "Inflige 20 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.",
},
damage: 50
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "BW Black Star Promos",
code: "bwp"
}
}
export default card