1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

101 lines
1.9 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "dp6-59",
localId: 59,
// Card informations
name: {
en: "Lanturn",
fr: "Lanturn",
},
hp: 90,
type: [
Type.LIGHTNING,
],
dexId: 171,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp6/59/low",
fr: "https://assets.tcgdex.net/fr/dp/dp6/59/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/59/high",
fr: "https://assets.tcgdex.net/fr/dp/dp6/59/high",
},
},
evolveFrom: {
en: "Chinchou",
fr: "Lampi",
},
tags: [
Tag.STAGE1,
],
illustrator: "Kouki Saitou",
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Energy Split",
fr: "Séparation d'Énergie",
},
text: {
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: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Aqua Bolt",
fr: "Aqua-boulon",
},
text: {
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: Type.FIGHTING,
value: "+20"
}],
retreat: 2,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Legends Awakened",
code: "dp6"
}
}
export default card