mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 07:32:11 +00:00
102 lines
2.2 KiB
TypeScript
102 lines
2.2 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: "pl2-111",
|
||
localId: 111,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Snorlax",
|
||
fr: "Ronflex Niv. X",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 143,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/pl/pl2/111/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/pl/pl2/111/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/pl/pl2/111/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/pl/pl2/111/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.LEVELUP,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 17,
|
||
name: "Shizurow"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 496,
|
||
type: AbilityType.POKEPOWER,
|
||
name: {
|
||
en: "Big Appetite",
|
||
fr: "Gros appétit",
|
||
},
|
||
text: {
|
||
en: "Once during your turn (before your attack), if Snorlax is your Active Pokémon, you may draw cards until you have 6 cards in your hand. If you do, Snorlax is now Asleep. This power can't be used if Snorlax is affected by a Special Condition.",
|
||
fr: "Une seule fois lors de votre tour (avant votre attaque), si Ronflex est votre Pokémon Actif, vous pouvez piocher des cartes jusqu'à ce que vous ayez 6 cartes en main. Ronflex est alors maintenant Endormi. Ce pouvoir ne peut pas être utilisé si Ronflex est affecté par un État Spécial.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Exercise",
|
||
fr: "Exercise",
|
||
},
|
||
text: {
|
||
en: "You may discard as many Energy cards as you like from your hand. If you do, remove that many damage counters from Snorlax.",
|
||
fr: "Vous pouvez défausser de votre main autant de cartes Énergie que vous le voulez. Retirez alors à Ronflex autant de marqueurs de dégât.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RareHoloLvX,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Rising Rivals",
|
||
code: "pl2"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|