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:
69
data-asia/SV/SV4K/043.ts
Normal file
69
data-asia/SV/SV4K/043.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4K"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ディンルー",
|
||||
'zh-tw': "古鼎鹿",
|
||||
th: "ติ่งลู่"
|
||||
},
|
||||
|
||||
illustrator: "AKIRA EGAWA",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
dexId: [1003],
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
ja: "古の 儀式で 使われた 器に 注がれた 恐怖が 土石を まとい ポケモンとなった。",
|
||||
'zh-tw': "古老儀式用的容器中注入的恐懼把土石裹在自己身上, 變成了寶可夢。",
|
||||
th: "ความหวาดกลัวที่โดนเทลงในภาชนะที่ใช้ในพิธีกรรมเก่าแก่ถูกห่อหุ้มด้วยดินและหิน จนกลายเป็นโปเกมอน"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
ja: "サンドブリング",
|
||||
'zh-tw': "沙之到來",
|
||||
th: "เบิกทราย"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモン1匹につける。",
|
||||
'zh-tw': "從自己的棄牌區選擇最多2張「基本【鬥】能量」卡,附於自己的1隻寶可夢身上。",
|
||||
th: "เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา 1 ตัว"
|
||||
}
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
ja: "ごうまんインパクト",
|
||||
'zh-tw': "傲慢衝擊",
|
||||
th: "อวดดีพุ่งชน"
|
||||
},
|
||||
|
||||
damage: 220,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにダメカンが4個以上のっているなら、このワザは失敗。",
|
||||
'zh-tw': "若這隻寶可夢身上放置有4個以上的傷害指示物,則這個招式失敗。",
|
||||
th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่มากกว่าหรือเท่ากับ 4 ตัว ท่าต่อสู้นี้จะล้มเหลว"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user