mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
99 lines
1.9 KiB
TypeScript
99 lines
1.9 KiB
TypeScript
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: "dp4-76",
|
|
localId: 76,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Lunatone",
|
|
fr: "Seleroc",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.FIGHTING,
|
|
],
|
|
|
|
dexId: 337,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/76/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/76/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/76/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/76/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 5,
|
|
name: "Ken Sugimori"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 517,
|
|
type: AbilityType.POKEPOWER,
|
|
name: {
|
|
en: "Gravity Change",
|
|
fr: "Changement de gravité",
|
|
},
|
|
text: {
|
|
en: "Once during your turn (before your attack), you may discard a card from your hand. Then, if you have Solrock in play, draw a card. This power can't be used if Lunatone is affected by a Special Condition.",
|
|
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez défausser une carte de votre main. Ensuite, si vous avez Solaroc en jeu, piochez une carte. Ce pouvoir ne peut pas être utilisé si Seleroc est affecté par un État Spécial.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Knock Over",
|
|
fr: "Culbute",
|
|
},
|
|
text: {
|
|
en: "You may discard any Stadium card in play.",
|
|
fr: "Vous pouvez défausser n'importe quelle carte Stade en jeu.",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.PSYCHIC,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Great Encounters",
|
|
code: "dp4"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|