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

51
data-asia/S/S8/006.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙鈴仙人掌"
},
illustrator: "313",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "一年散播一次種子。花的種子營養十足,是沙漠中貴重的食糧。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "啄"
},
damage: 20,
cost: ["Grass"]
}, {
name: {
'zh-tw': "丟丟搖擺"
},
effect: {
'zh-tw': "從自己的手牌將任意數量的「寶可夢道具」卡丟棄造成其張數×50點傷害。"
},
damage: "50×",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card