1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

50
data-asia/SV/SV-P/034.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "泥泥鰍"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "2根鬍子是靈敏的雷達。即使在因為泥濘而渾濁的水中,也能偵查到獵物的位置。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "躲藏"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。"
},
cost: ["Fighting"]
}, {
name: {
'zh-tw': "擲泥"
},
damage: 20,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card