mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
59 lines
924 B
TypeScript
59 lines
924 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Petilil",
|
||
fr: "Chlorobule",
|
||
es: "Petilil",
|
||
it: "Petilil",
|
||
pt: "Petilil",
|
||
de: "Lilminip"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Grass"],
|
||
stage: "Basic",
|
||
illustrator: "Mika Pikazo",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Seed Bomb",
|
||
fr: "Canon Graine",
|
||
es: "Bomba Germen",
|
||
it: "Semebomba",
|
||
pt: "Seed Bomb",
|
||
de: "Samenbomben"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Grass", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "They prefer clean water and soil. When the environment they live in turns bad, the whole bunch will up and move to a new area."
|
||
},
|
||
|
||
dexId: [548],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |