1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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/SV2P/003.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "ミツハニー",
'zh-tw': "三蜜蜂",
th: "มิทซึฮันนี",
id: "Combee"
},
illustrator: "Yoriyuki Ikegami",
rarity: "Common",
category: "Pokemon",
dexId: [415],
hp: 50,
types: ["Grass"],
description: {
ja: "夜に なると 100匹 ほどの ミツハニーが 寄り添い合って 大きな かたまりで 眠る。",
'zh-tw': "到了晚上就會有100隻左右的三蜜蜂集聚成堆, 依偎著彼此睡覺。",
th: "มิทซึฮันนีกว่า 100 ตัวจะซุกตัวนอนกันเป็นก้อนใหญ่ ๆ ในตอนกลางคืน",
id: "Saat malam, sekitar 100 Combee berkumpul dan tidur bersama membentuk gumpalan besar."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ダブルスピン",
'zh-tw': "雙重旋轉",
th: "ดับเบิ้ลสปิน",
id: "Double Spin"
},
damage: "10×",
effect: {
ja: "コインを2回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10",
id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card