1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +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,75 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Freeze'
const card: Card = {
name: {
en: "Lanturn",
fr: "Lanturn",
},
illustrator: "Mizue",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
171,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Chinchou",
fr: "Loupio",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Special Tackle",
fr: "Charge Spéciale",
},
effect: {
en: "If this Pokémon has any Special Energy attached to it, this attack does 30 more damage.",
fr: "Si de l'Énergie spéciale est attachée à ce Pokémon, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Extreme Current",
fr: "Courant Extrême",
},
effect: {
en: "Discard an Energy attached to this Pokémon.",
fr: "Défaussez une Énergie attachée à ce Pokémon.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 2,
}
export default card