mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Initial Database
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
102
cards/pl/pl2/109.ts
Normal file
102
cards/pl/pl2/109.ts
Normal file
@ -0,0 +1,102 @@
|
||||
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-109",
|
||||
localId: 109,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Luxray GL",
|
||||
fr: "Luxray Niv. X",
|
||||
},
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 405,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl2/109/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/pl/pl2/109/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl2/109/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/pl/pl2/109/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.LEVELUP,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 488,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Bright Look",
|
||||
fr: "Regard alerte",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), when you put Luxray LV.X from your hand onto your Active Luxray , you may switch the Defending Pokémon with 1 of your opponent's Benched Pokémon.",
|
||||
fr: "Une seule fois lors de votre tour (avant votre attaque), lorsque vous placez Luxray LV.X de votre main sur votre Luxray Actif, vous pouvez échanger le Pokémon Défenseur avec 1 des Pokémon de Banc de votre adversaire.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Flash Impact",
|
||||
fr: "Impact-flash",
|
||||
},
|
||||
text: {
|
||||
en: "Does 30 damage to 1 of your Pokémon, and don't apply Weakness and Resistance to this damage.",
|
||||
fr: "Inflige 30 dégâts à 1 de vos Pokémon. N'appliquez pas la Faiblesse et la Résistance à ces dégâts.",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHoloLvX,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Rising Rivals",
|
||||
code: "pl2"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user