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

56
data-asia/S/S10b/017.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: "NC Empire",
category: "Pokemon",
hp: 170,
types: ["Water"],
description: {
'zh-tw': "會用重量驚人的身體壓住對手使其昏厥。遇到危險時會躲進殼裡。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "活力泉"
},
effect: {
'zh-tw': "在自己的回合時可使用1次若使用則自己的回合結束。從自己的牌庫選擇最多6張能量卡以任意方式附於自己的寶可夢身上。並且重洗牌庫。"
}
}],
attacks: [{
name: {
'zh-tw': "水炮"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的【水】能量的數量×30點傷害。"
},
damage: "90+",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card