1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,76 @@
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: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card