1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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

58
data-asia/SV/SV4a/340.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "パモ",
'zh-tw': "布撥",
id: "Pawmi"
},
illustrator: "REND",
category: "Pokemon",
dexId: [921],
hp: 60,
types: ["Lightning"],
description: {
ja: "手の 肉球が 放電器官。 後ろ脚で ようやく 立ち上がると 手のひらから 電撃を 放つ。",
'zh-tw': "手的肉球是放電的器官。會費勁地用後腳站起來, 然後從手掌釋放出電擊。",
id: "Bantalan tangannya adalah organ pelepasan listrik. Setelah berhasil berdiri dengan kaki belakangnya, Pawmi melepaskan serangan listrik dari telapak tangannya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "なぐる",
'zh-tw': "打擊",
id: "Memukul"
},
damage: 10
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "エレキック",
'zh-tw': "電氣踢",
id: "Electric Kick"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card