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

52
data-asia/S/S8b/038.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "千面避役"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 150,
types: ["Water"],
description: {
'zh-tw': "能從指尖射出速度高達3馬赫的水槍。牠的瞬膜能幫助牠看穿 敵人的弱點,準確地擊中要害。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "快速射擊手"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。在對手的1隻寶可夢身上放置2個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "攀瀑"
},
damage: 70,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card