1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

102 lines
1.7 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: "dp7-74",
localId: 74,
// Card informations
name: {
en: "Snover",
fr: "Snover",
},
hp: 50,
type: [
Type.WATER,
],
dexId: 459,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/74/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/74/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/74/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp7/74/high.png",
},
},
evolveFrom: {
fr: "Blizzi",
},
tags: [
Tag.BASIC,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Hide",
fr: "Cachette",
},
text: {
en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Snover during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est face, prévenez tous les effets d'une attaque, dégâts inclus, infligés à Blizzi lors du prochain tour de votre adversaire.",
},
},{
cost: [
Type.WATER
],
name: {
en: "Powder Snow",
fr: "Poudreuse",
},
text: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIRE,
value: "+10"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card