1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

44
data-asia/S/S6H/006.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S6H"
const card: Card = {
set: Set,
name: {
'zh-tw': "萌芽鹿"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "會隨著季節的推移改變居所。所以也有人說萌芽鹿會運來春天。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "連擊觸手"
},
effect: {
'zh-tw': "從自己的手牌將任意數量的「連擊」卡給對手看過後造成其張數×40點傷害。然後將給對手看過的「連擊」卡放回牌庫並重洗。"
},
damage: "40×",
cost: ["Psychic"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card