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

73 lines
943 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Lopunny",
fr: "Lockpin",
},
illustrator: "Kanako Eo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
428,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Buneary",
fr: "Laporeille",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ice Beam",
fr: "Laser glace",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Rear Kick",
fr: "Ruade",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
retreat: 1,
}
export default card