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:
63
data-asia/SV/SV3/006.ts
Normal file
63
data-asia/SV/SV3/006.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ミツハニー",
|
||||
'zh-tw': "三蜜蜂",
|
||||
th: "มิทซึฮันนี"
|
||||
},
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [415],
|
||||
hp: 50,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
ja: "夜に なると 100匹 ほどの ミツハニーが 寄り添い合って 大きな かたまりで 眠る。",
|
||||
'zh-tw': "到了晚上就會有100隻左右的三蜜蜂集聚成堆,依偎著彼此睡覺。",
|
||||
th: "มิทซึฮันนีกว่า 100 ตัวจะซุกตัวนอนกันเป็นก้อนใหญ่ ๆ ในตอนกลางคืน"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
ja: "おすそわけ",
|
||||
'zh-tw': "分贈",
|
||||
th: "แบ่งให้"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分のベンチポケモン1匹のHPを「20」回復する。",
|
||||
'zh-tw': "將自己的1隻備戰寶可夢恢復「20」HP。",
|
||||
th: "ฟื้นฟู HP ของโปเกมอนบนเบนช์ฝ่ายเรา 1 ตัว [20]"
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
name: {
|
||||
ja: "ぶつかる",
|
||||
'zh-tw': "衝撞",
|
||||
th: "กระแทก"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user