1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-14 09:41:57 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@@ -0,0 +1,79 @@
import { Card } from '../../../interfaces'
import Set from '../Black & White'
const card: Card = {
name: {
en: "Lilligant",
fr: "Fragilady",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
549,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Petilil",
fr: "Chlorobule",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Petal Dance",
fr: "Danse-Fleur",
},
effect: {
en: "Flip 3 coins. This attack does 30 damage times the number of heads. This Pokémon is now Confused.",
fr: "Lancez 3 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face. Ce Pokémon est maintenant Confus.",
},
damage: 30,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Leaf Storm",
fr: "Tempêteverte",
},
effect: {
en: "Heal 20 damage from each of your Grass Pokémon.",
fr: "Soignez 20 dégâts à chacun de vos Pokémon Grass.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
}
export default card