mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Hidden Legends'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lanturn",
|
||
fr: "Lanturn",
|
||
de: "Lanturn"
|
||
},
|
||
illustrator: "Aya Kusube",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
171,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Chinchou",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Energy Grounding",
|
||
fr: "Source d'Énergie",
|
||
de: "Energy Grounding"
|
||
},
|
||
effect: {
|
||
en: "Once during your opponent's turn, when any of your Pokémon is Knocked Out by your opponent's attacks, you may use this power. Choose a basic Energy card discarded from the Knocked Out Pokémon and attach it to Lanturn. You can't use more than 1 Energy Grounding Poké-Power each turn.",
|
||
fr: "Une seule fois lors du tour de votre adversaire, lorsqu'un de vos Pokémon est mis K.O par des attaques de votre adversaire, vous pouvez utiliser ce pouvoir. Choisissez une carte Énergie de base défaussée du Pokémon mis K.O et attachez-la à Lanturn. Vous ne pouvez pas utiliser Source d'Énergie plus d'une fois même s'il y a plus d'1 Lanturn en jeu.",
|
||
de: "Once during your opponent's turn, when any of your Pokémon is Knocked Out by your opponent's attacks, you may use this power. Choose a basic Energy card discarded from the Knocked Out Pokémon and attach it to Lanturn. You can't use more than 1 Energy Grounding Poké-Power each turn."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Lightning Strike",
|
||
fr: "Frap'éclair",
|
||
de: "Lightning Strike"
|
||
},
|
||
effect: {
|
||
en: "You may discard all Lightning Energy attached to Lanturn. If you do, this attack's base damage is 90 instead of 50.",
|
||
fr: "Vous pouvez défausser toutes les Énergies attachées à Lanturn. Les dégâts de base de cette attaque sont alors de 90 au lieu de 50.",
|
||
de: "You may discard all Energy attached to Lanturn. If you do, this attack's base damage is 90 instead of 50."
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|