1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

101
cards/xy/xy2/80.ts Normal file
View File

@ -0,0 +1,101 @@
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: "xy2-80",
localId: 80,
// Card informations
name: {
en: "Snorlax",
fr: "Ronflex",
},
hp: 130,
type: [
Type.COLORLESS,
],
dexId: 143,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy2/80/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy2/80/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy2/80/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy2/80/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
abilities: [{
id: 649,
type: AbilityType.TALENT,
name: {
en: "Stir and Snooze",
fr: "Sommeil Lourd",
},
text: {
en: "If this Pokémon is Asleep, flip 2 coins instead of 1 between turns. If either of them is tails, this Pokémon is still Asleep.",
fr: "Si ce Pokémon est Endormi, lancez 2 pièces au lieu d'une entre chaque tour. Si vous obtenez au moins un côté pile, ce Pokémon reste Endormi.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sleepy Press",
fr: "Pression Torpide",
},
text: {
en: "Heal 20 damage from this Pokémon. This Pokémon is now Asleep.",
fr: "Soignez 20 dégâts à ce Pokémon. Ce Pokémon est maintenant Endormi.",
},
damage: 120
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Flashfire",
code: "xy2"
}
}
export default card