1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

101 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "col1-33",
localId: 33,
// Card informations
name: {
en: "Snorlax",
fr: "Ronflex",
},
hp: 100,
type: [
Type.COLORLESS,
],
dexId: 143,
image: {
low: {
en: "https://assets.tcgdex.net/en/col/col1/33/low",
fr: "https://assets.tcgdex.net/fr/col/col1/33/low",
},
high: {
en: "https://assets.tcgdex.net/en/col/col1/33/high",
fr: "https://assets.tcgdex.net/fr/col/col1/33/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Kent Kanetsuna",
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Layabout",
fr: "Traîne-savates",
},
text: {
en: "Remove all damage counters from Snorlax. Snorlax can't use Layabout during your next turn.",
fr: "Retirez tous ses marqueurs de dégâts à Ronflex. Ronflex ne peut pas utiliser Traîne-savates pendant votre prochain tour.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Clomp Clomp Clobber",
fr: "Barda abasourdissant",
},
text: {
en: "Put 1 Energy card attached to Snorlax in the Lost Zone.",
fr: "Placez 1 carte Énergie attachée à Ronflex dans la Zone Perdue.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Call of Legends",
code: "col1"
}
}
export default card