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

100
cards/pl/pl2/8.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: "pl2-8",
localId: 8,
// Card informations
name: {
en: "Lucario GL",
fr: "Lucario Niv. 32",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 448,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/8/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/8/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/8/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/8/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
abilities: [{
id: 700,
type: AbilityType.POKEBODY,
name: {
en: "Boundary Aura",
fr: "Barrage aura",
},
text: {
en: "Apply Weakness for each Pokémon (both yours and your opponent's) as ×2 instead.",
fr: "Multipliez la Faiblesse par 2 pour chaque Pokémon (les vôtres et ceux de votre adversaire).",
}
}],
attacks: [{
cost: [
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Combo Throw",
fr: "Combo de lancers",
},
text: {
en: "Does 30 damage plus 10 more damage for each Energy attached to the Defending Pokémon.",
fr: "Inflige 30 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card