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

55 lines
1.5 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 "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "プラスル",
'zh-tw': "正電拍拍",
th: "พราเซิล"
},
illustrator: "Sekio",
rarity: "Common",
category: "Pokemon",
dexId: [311],
hp: 70,
types: ["Lightning"],
description: {
ja: "電柱から 電気を 吸い取る。 体に ためた 電気を ショートさせて 音を 出す。",
'zh-tw': "能從電線桿上吸取電力。 會透過讓體內儲存的 電流短路來發出聲音。",
th: "ดูดซับไฟฟ้าจากเสาไฟฟ้า ทำให้ไฟฟ้าที่สะสมในร่างกายลัดวงจรและส่งเสียงออกมา"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ダメージプラス",
'zh-tw': "傷害正電",
th: "แดเมจพลัส"
},
damage: "10+",
effect: {
ja: "相手のバトルポケモンにのっているダメカンの数×10ダメージ追加。",
'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×10點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x10"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card