mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
75
data-asia/SV/SV2P/064.ts
Normal file
75
data-asia/SV/SV2P/064.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "アオガラス",
|
||||
'zh-tw': "藍鴉",
|
||||
th: "อาโอการาสึ",
|
||||
id: "Corvisquire"
|
||||
},
|
||||
|
||||
illustrator: "sui",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [822],
|
||||
hp: 90,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
ja: "高い 知能を 有するのは 脳みそが ほかの 鳥ポケモンに 比べて 大きいためと 言われる。",
|
||||
'zh-tw': "人們認為牠會擁有高度智慧,是因為相較於其他鳥寶可夢, 牠的腦子是比較大的。",
|
||||
th: "ว่ากันว่าที่ฉลาดมากเพราะมีสมองใหญ่เมื่อเทียบกับโปเกมอนนกตัวอื่น ๆ",
|
||||
id: "Dikatakan bahwa Corvisquire memiliki kecerdasan yang tinggi karena ukuran otaknya lebih besar dibandingkan Pokémon burung lainnya."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "かっくう",
|
||||
'zh-tw': "滑翔",
|
||||
th: "ถลาลม",
|
||||
id: "Melayang Rendah"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "わしづかみ",
|
||||
'zh-tw': "緊抓",
|
||||
th: "โฉบเหยื่อ",
|
||||
id: "Mencengkeram"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
effect: {
|
||||
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
|
||||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
|
||||
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้",
|
||||
id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user