1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

50
data-asia/S/SC2a/043.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "古空棘魚"
},
illustrator: "MAHOU",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "從1億年前就長這個樣子。因為體內積存著厚厚的脂肪,所以能承受深海的水壓。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "化石搜索"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張「稀有化石」卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "衝浪"
},
damage: 40,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card