1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +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/SC1D/007.ts Normal file
View File

@@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "風妖精"
},
illustrator: "kodama",
category: "Pokemon",
hp: 100,
types: ["Grass"],
description: {
'zh-tw': "喜歡到處撒棉花搗蛋。沾水之後就會變重而動彈不得,只能聽天由命。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "棉流"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢與附加的卡全部放回對手的牌庫並重洗。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "綠葉舞步"
},
damage: 50,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card