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

108 lines
1.8 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 '../../../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: "bw2-12",
localId: 12,
// Card informations
name: {
en: "Whimsicott",
fr: "Farfaduvet",
},
hp: 80,
type: [
Type.GRASS,
],
dexId: 547,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw2/12/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw2/12/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw2/12/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw2/12/high.png",
},
},
evolveFrom: {
en: "Cottonee",
fr: "Doudouvet",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 3,
name: "Mizue"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Encore",
fr: "Encore",
},
text: {
en: "Choose 1 of the Defending Pokémon's attacks. During your opponent's next turn, that Pokémon can use only that attack.",
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Pendant le prochain tour de votre adversaire, le Pokémon ciblé ne peut utiliser que l'attaque choisie.",
},
damage: 20
},{
cost: [
Type.GRASS,
Type.GRASS
],
name: {
en: "U-turn",
fr: "Demi-Tour",
},
text: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc.",
},
damage: 40
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Emerging Powers",
code: "bw2"
}
}
export default card