1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19: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/S8/022.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "大力鱷"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 170,
types: ["Water"],
description: {
'zh-tw': "會用大而有力的雙顎咬住對手然後甩動脖子,將對手撕成碎片。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "暴徒"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時一定要使用1次。擲1次硬幣若為正面則將對手的牌庫上方5張卡丟棄。若為反面則將自己的牌庫上方5張卡丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "咬碎"
},
effect: {
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
damage: 140,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card