mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
78 lines
913 B
TypeScript
78 lines
913 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Noble Victories'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Petilil",
|
||
fr: "Chlorobule",
|
||
es: "Petilil",
|
||
it: "Petilil",
|
||
pt: "Petilil",
|
||
de: "Lilminip"
|
||
},
|
||
illustrator: "Shigenori Negishi",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
548,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Absorb",
|
||
fr: "Vol-Vie",
|
||
},
|
||
effect: {
|
||
en: "Heal 10 damage from this Pokémon.",
|
||
fr: "Soignez 10 dégâts à ce Pokémon.",
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Water",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|