mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
54
data/Sword & Shield/Battle Styles/15.ts
Normal file
54
data/Sword & Shield/Battle Styles/15.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Battle Styles'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lurantis",
|
||||
fr: "Floramantis"
|
||||
},
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Fomantis",
|
||||
fr: "Mimantis"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Leaf Drain",
|
||||
fr: "Feuille Sangsue"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts de ce Pokémon."
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Grass"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Solar Cutter",
|
||||
fr: "Coupe Solaire"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Grass", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user