1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

63 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "コンパン",
'zh-tw': "毛球",
th: "คองปัง",
id: "Venonat"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
dexId: [48],
hp: 70,
types: ["Grass"],
description: {
ja: "全身から 毒が にじみでる。 暗くなると 灯りに 群がった 小さな 虫ポケモンを 捕らえる。",
'zh-tw': "全身上下都會滲出毒素。天黑後就會去捕捉聚在 燈光處的小型蟲寶可夢。",
th: "มีพิษไหลซึมออกจากทั่วร่างกาย พอตกค่ำจะไปจับโปเกมอนแมลงตัวเล็ก ๆ ที่มารวมตัวกันตามแสงไฟ",
id: "Racun bercucuran dari tubuh Venonat. Ketika hari menjadi gelap, Pokémon ini menangkap Pokémon serangga kecil yang berkumpul di sumber cahaya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "かじる",
'zh-tw': "咬",
th: "แทะ",
id: "Menggerogot"
},
damage: 10
}, {
cost: ["Grass", "Colorless", "Colorless"],
name: {
ja: "ビーム",
'zh-tw': "光束",
th: "ลำแสง",
id: "Beam"
},
damage: 40
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card