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

77 lines
1.2 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'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Lanturn",
fr: "Lanturn",
},
illustrator: "otumami",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
171,
],
hp: 110,
types: [
"Lightning",
],
evolveFrom: {
en: "Chinchou",
fr: "Loupio",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Blinking Lights",
fr: "Lumières Clignotantes",
},
effect: {
en: "As often as you like during your turn (before your attack), you may look at the top card of your opponent's deck.",
fr: "Autant de fois que vous le voulez pendant votre tour (avant votre attaque), vous pouvez regarder la carte du dessus du deck de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Swirling Flow",
fr: "Flot Tourbillon",
},
effect: {
en: "You may have your opponent shuffle their deck.",
fr: "Vous pouvez demander à votre adversaire de mélanger son deck.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card