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

55
data-asia/S/SC1D/040.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "千面避役"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 160,
types: ["Water"],
description: {
'zh-tw': "身上隱藏著多種特殊能力,例如從手指噴射水流,以及用背部的翼膜滑翔等等。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "消音彈"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 40,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "水炮狙擊"
},
effect: {
'zh-tw': "若希望選擇1個對手的戰鬥寶可夢身上附加的能量放回對手的手牌。"
},
damage: 100,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card