mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-11 00:11:58 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
64
data-asia/SV/SV4K/076.ts
Normal file
64
data-asia/SV/SV4K/076.ts
Normal file
@@ -0,0 +1,64 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4K"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "モルペコ",
|
||||
th: "โมรุเปโกะ"
|
||||
},
|
||||
|
||||
illustrator: "Yuu Nishida",
|
||||
category: "Pokemon",
|
||||
dexId: [877],
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
ja: "空腹ホルモンで 性質が 変化。 お腹が 満たされるまで 悪の 限りを つくす。",
|
||||
th: "นิสัยจะเปลี่ยนเพราะฮอร์โมนที่ออกมาตอนท้องว่าง จะทำความชั่วร้ายจนถึงขีดสุดจนกว่าท้องมันจะอิ่ม"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
ja: "はらへりダッシュ",
|
||||
th: "ท้องกิ่วพุ่งพรวด"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにエネルギーがついていないなら、このポケモンのにげるためのエネルギーは、すべてなくなる。",
|
||||
th: "ถ้าโปเกมอนนี้ไม่มีพลังงานติดอยู่ พลังงานสำหรับ[หนี]ของโปเกมอนนี้ ทั้งหมดจะหายไป"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness", "Darkness"],
|
||||
|
||||
name: {
|
||||
ja: "エネしゃりん",
|
||||
th: "กงล้อพลังงาน"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンについているエネルギーを2個選び、ベンチポケモン1匹につけ替える。",
|
||||
th: "เลือกพลังงาน[ความมืด]ที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ย้ายไปติดกับโปเกมอนบนเบนช์ 1 ตัว"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user