1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

55
data-asia/S/S10D/031.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "蚊香泳士"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 160,
types: ["Fighting"],
description: {
'zh-tw': "全身都是肌肉。即使是在寒冷的大海也能用結實的手臂 擊碎浮冰,奮勇前進。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "轉轉拳"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 60,
cost: ["Water"]
}, {
name: {
'zh-tw': "飛濺閉環"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量放回手牌。"
},
damage: 160,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card