1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +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,66 @@
import { Card } from '../../../interfaces'
import Set from '../Neo Revelation'
const card: Card = {
name: {
en: "Lanturn",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
171,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Chinchou",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Submerge",
},
effect: {
en: "Once during your turn (before your attack), you may change Lanturn's type to Water until the end of your turn. This power can't be used if Lanturn is Asleep, Confused, or Paralyzed. If Lanturn becomes Asleep, Confused, or Paralyzed after you have used this power, its type changes back to Lightning.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Blinding Light",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
}
export default card