mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
62 lines
776 B
TypeScript
62 lines
776 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Yungoos",
|
||
fr: "Manglouton",
|
||
es: "Yungoos",
|
||
it: "Yungoos",
|
||
pt: "Yungoos",
|
||
de: "Mangunior"
|
||
},
|
||
illustrator: "Shigenori Negishi",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
734,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Cavernous Chomp",
|
||
fr: "Mâchoire Caverneuse",
|
||
es: "Mordisco Cavernoso",
|
||
it: "Mandibola Cavernosa",
|
||
pt: "Mastigada Cavernosa",
|
||
de: "Riesiger Biss"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|