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

59 lines
1.8 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: "Exeggcute"
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
dexId: [102],
hp: 60,
types: ["Grass"],
description: {
ja: "6匹で いないと 落ち着かない。 1匹でも いなくなると とたんに 逃げ腰に なるのだ。",
'zh-tw': "非得湊齊6隻才會有安全感。那怕只是少了1隻,都會立刻 變得很膽小,隨時想要逃跑。",
th: "ถ้าอยู่ไม่ครบทั้ง 6 ตัวจะรู้สึกไม่สงบใจ ถ้าหายไปแม้แต่ 1 ตัวจะเตรียมตัววิ่งหนีทันที",
id: "Exeggcute tidak tenang jika tidak berenam. Begitu salah satu menghilang, Pokémon ini segera ingin melarikan diri."
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "たまころがり",
'zh-tw': "滾球",
th: "กลิ้งบอล",
id: "Menggelindingkan Bola"
},
damage: "30×",
effect: {
ja: "ウラが出るまでコインを投げ、オモテの数×30ダメージ。",
'zh-tw': "擲硬幣直到出現反面造成正面出現的次數×30點傷害。",
th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x30",
id: "Lempar koin hingga hasilnya sisi belakang. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card