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

75 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Lanturn",
fr: "Lanturn",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
171,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Chinchou",
fr: "Lampi",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Energy Split",
fr: "Séparation d'Énergie",
},
effect: {
en: "This attack does 30 damage to each of your opponent's Pokémon that has any Energy cards attached to it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire possédant des cartes Énergie. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Aqua Bolt",
fr: "Aqua-boulon",
},
effect: {
en: "Does 60 damage plus 10 more damage for each Water Energy attached to Lanturn.",
fr: "Inflige 60 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Water attachée à Lanturn.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
retreat: 2,
}
export default card