mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
85 lines
984 B
TypeScript
85 lines
984 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Primal Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lombre",
|
||
fr: "Lombre",
|
||
es: "Lombre",
|
||
it: "Lombre",
|
||
pt: "Lombre",
|
||
de: "Lombrero"
|
||
},
|
||
illustrator: "Naoyo Kimura",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
271,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
evolveFrom: {
|
||
en: "Lotad",
|
||
fr: "Nénupiot",
|
||
es: "Lotad",
|
||
it: "Lotad",
|
||
pt: "Lotad",
|
||
de: "Loturzel"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Hook",
|
||
fr: "Crochet",
|
||
es: "Garfio",
|
||
it: "Uncino",
|
||
pt: "Gancho",
|
||
de: "Haken"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Beat",
|
||
fr: "Bataille",
|
||
es: "Toque",
|
||
it: "Battuta",
|
||
pt: "Pulso",
|
||
de: "Verprügler"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|