1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +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

103 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: "pl2-65",
localId: 65,
// Card informations
name: {
en: "Houndoom 4",
fr: "Demolosse Niv. 52",
},
hp: 80,
type: [
Type.DARKNESS,
],
dexId: 229,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/65/low",
fr: "https://assets.tcgdex.net/fr/pl/pl2/65/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/65/high",
fr: "https://assets.tcgdex.net/fr/pl/pl2/65/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Masakazu Fukuda",
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Corner",
fr: "Angle",
},
text: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite lors du prochain tour de votre adversaire.",
},
damage: 20
},{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Fire Fang",
fr: "Crocs Feu",
},
text: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
},
damage: 40
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card