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

52
data-asia/S/S4a/050.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鰓魚龍"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
hp: 150,
types: ["Water"],
description: {
'zh-tw': "超乎尋常的腳力和顎力讓牠在古代所向無敵。但由於捕盡獵物,導致牠們自己也滅絕了。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "原始之律"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手無法從手牌使出寶可夢並完成進化。"
}
}],
attacks: [{
name: {
'zh-tw': "頭突"
},
damage: 120,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card