1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

103
cards/pl/pl3/27.ts Normal file
View File

@ -0,0 +1,103 @@
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: "pl3-27",
localId: 27,
// Card informations
name: {
en: "Empoleon FB",
fr: "Pingoléon ",
},
hp: 90,
type: [
Type.WATER,
],
dexId: 395,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/27/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/27/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/27/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 47,
name: "Hiroki Fuchino"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Rushing Water",
fr: "Courant fort",
},
text: {
en: "Move an Energy card attached to the Defending Pokémon to another of your opponent's Pokémon.",
fr: "Déplacez une carte Énergie attachée au Pokémon Défenseur sur un autre des Pokémon de votre adversaire.",
},
damage: 20
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Escort",
fr: "Escorter",
},
text: {
en: "If you played any Supporter card from your hand during this turn, this attack does 40 damage plus 20 more damage.",
fr: "Si vous jouez une carte Supporter de votre main lors de ce tour, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires.",
},
damage: 40
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card