1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

99 lines
1.9 KiB
TypeScript

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: "dp4-52",
localId: 52,
// Card informations
name: {
en: "Seviper",
fr: "Seviper",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 336,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp4/52/low",
fr: "https://assets.tcgdex.net/fr/dp/dp4/52/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp4/52/high",
fr: "https://assets.tcgdex.net/fr/dp/dp4/52/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Masakazu Fukuda",
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Tail Blade",
fr: "Queue-guillotine",
},
text: {
en: "Flip a coin. If heads, your opponent can't play any Trainer cards from his or her hand during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est face, votre adversaire ne peut pas jouer de cartes Dresseur de sa main lors de son prochain tour.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Poison Tail",
fr: "Queue-poison",
},
text: {
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage and the Defending Pokémon is now Poisoned.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires et le Pokémon Défenseur est maintenant Empoisonné.",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+20"
}],
retreat: 2,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Great Encounters",
code: "dp4"
}
}
export default card