mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 12:59:18 +00:00
61 lines
1.5 KiB
TypeScript
61 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Venonat",
|
|
fr: "Mimitoss",
|
|
es: "Venonat",
|
|
it: "Venonat",
|
|
de: "Bluzuk",
|
|
'pt-br': "Venonat",
|
|
ko: "콘팡"
|
|
},
|
|
|
|
illustrator: "HYOGONOSUKE",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Tackle",
|
|
fr: "Charge",
|
|
es: "Placaje",
|
|
it: "Azione",
|
|
de: "Tackle",
|
|
'pt-br': "Investida",
|
|
ko: "몸통박치기"
|
|
},
|
|
|
|
damage: "20"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond",
|
|
|
|
description: {
|
|
en: "Poison oozes from all over its body. It catches small bug Pokémon at night that are attracted by light.",
|
|
fr: "Son corps sécrète un poison redoutable. La nuit, il capture\nde petits Pokémon Insecte attirés par la lumière.",
|
|
es: "Rezuma veneno por todo su cuerpo.\nDe noche, atrapa y come pequeños\nPokémon insecto atraídos por la luz.",
|
|
it: "Da tutto il suo corpo trasuda veleno.\nDi notte cattura piccoli Pokémon\nColeottero attratti dalla luce.",
|
|
de: "Aus seinem ganzen Körper tritt Gift aus.\nEs fängt und frisst nachts kleine Käfer-Pokémon,\ndie von Licht angelockt wurden.",
|
|
'pt-br': "Veneno escorre de todo o seu corpo. Durante a\nnoite, captura pequenos Pokémon inseto que são\natraídos pela luz.",
|
|
ko: "전신에서 독이 스며 나온다.\n어두워지면 밝은 곳에 모인\n작은 벌레포켓몬을 잡아먹는다."
|
|
},
|
|
|
|
boosters: ["mewtwo"]
|
|
}
|
|
|
|
export default card
|