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

53
data-asia/S/S9/023.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "龍蝦小兵",
ja: "ヘイガニ"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "有著頑強生命力的寶可夢。不論河裡的水有多髒 都能適應並繁衍後代。",
ja: "どんなに 水が 汚れた 川でも 適応して 増えていく タフな 生命力の 持ち主。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "水槍",
ja: "みずでっぽう"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "蟹鉗錘",
ja: "クラブハンマー"
},
damage: 50,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [341]
}
export default card