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

56
data-asia/S/S10b/018.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "光輝水箭龜"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 150,
types: ["Water"],
description: {
'zh-tw': "會用重量驚人的身體壓住對手使其昏厥。遇到危險時會躲進殼裡。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "水泵射擊"
},
effect: {
'zh-tw': "在自己的回合若從自己的手牌將1張【水】能量卡丟棄則可使用1次。在對手的1隻備戰寶可夢身上放置2個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "激流炮"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「激流炮」。"
},
damage: 170,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card