1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

59
data-asia/SV/SV2a/102.ts Normal file
View File

@ -0,0 +1,59 @@
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