1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

81 lines
1.5 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,
description: {
fr: "La lumière de LANTURN surgit des profondeurs. On le surnomme \"étoile des profondeurs\"."
}
}
export default card