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

48
data-asia/S/S11a/008.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 裙兒小姐"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "據考察,雪山深處的棲息環境為其帶來了發達的腳力。會從頭冠般的花中發出鼓舞周遭夥伴的香氣。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "充溢香氣"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張【草】能量卡以任意方式附於備戰寶可夢身上。並且重洗牌庫。"
}
}, {
name: {
'zh-tw': "迴轉踢"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card