1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

63 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ペンドラー",
'zh-tw': "蜈蚣王",
th: "เพนโดรา"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Shiburingaru",
dexId: [545],
hp: 170,
types: ["Darkness"],
description: {
ja: "首のツメで 獲物を つかむと そのまま 地面に 叩きつけ 毒のトゲを 突きたてるぞ。",
'zh-tw': "用頸部的爪子夾住獵物後, 會直接將對方摔到地上, 然後用毒刺戳下去。",
th: "พอจับเหยื่อด้วยกรงเล็บที่อยู่ตามคอได้ ก็จะฟาดลงพื้นแล้วแทงหนามพิษลงไป"
},
stage: "Stage2",
attacks: [{
cost: ["Darkness", "Colorless"],
name: {
ja: "ひどうなひとさし",
'zh-tw': "偏道一回",
th: "เสียดแทงไร้เมตตา"
},
effect: {
ja: "相手のバトルポケモンの残りHPが「10」になるように、ダメカンをのせる。",
'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「10」為止。",
th: "วางตัวนับแดเมจให้ HP ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเหลือเท่ากับ [10]"
}
}, {
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "ヘドロばくだん",
'zh-tw': "污泥炸彈",
th: "สลัดจ์บอมบ์"
},
damage: 160
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card