1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

68 lines
854 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Whismur",
fr: "Chuchmur",
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
293,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tone-Deaf",
fr: "Dur d'oreille",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Rollout",
fr: "Roulade",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
retreat: 1,
}
export default card