1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

54
data-asia/SV/SV3a/065.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "プラスル",
'zh-tw': "正電拍拍",
th: "พราเซิล"
},
illustrator: "OKACHEKE",
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