mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 03:29:51 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
59
data-asia/SV/SV1a/062.ts
Normal file
59
data-asia/SV/SV1a/062.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ヤングース",
|
||||
'zh-tw': "貓鼬少",
|
||||
th: "ยังกูส",
|
||||
id: "Yungoos"
|
||||
},
|
||||
|
||||
illustrator: "saino misaki",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [734],
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
ja: "胴体の ほとんどが 胃袋。 毎日 同じ ルートを うろつき 新鮮な エサを 探してまわる。",
|
||||
'zh-tw': "整個身體幾乎都是胃。每天都徘徊在固定的路線上, 四處尋找新鮮的食物。",
|
||||
th: "ลำตัวเป็นกระเพาะอาหารแทบทั้งหมด วนไปวนมาตามเส้นทางเดิมทุกวันเพื่อสอดส่องหาอาหาร",
|
||||
id: "Sebagian besar tubuhnya merupakan kantong lambung. Setiap hari, Yungoos berjalan-jalan pada jalur yang sama untuk mencari makanan segar."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "はねとばす",
|
||||
'zh-tw': "擊飛",
|
||||
th: "ตบกระเด็น",
|
||||
id: "Menghempaskan"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
effect: {
|
||||
ja: "コインを1回投げオモテなら、10ダメージ追加。",
|
||||
'zh-tw': "擲1次硬幣若為正面,則增加10點傷害。",
|
||||
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 10",
|
||||
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 10."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user