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

54
data-asia/S/SC1D/087.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "樹才怪"
},
illustrator: "Yukiko Baba",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
description: {
'zh-tw': "如果在沒風的日子看見樹在搖擺,那就是樹才怪。據說在下雨時會躲起來。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雙重抽出"
},
effect: {
'zh-tw': "從自己的牌庫抽出2張卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "抓狂"
},
effect: {
'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×10點傷害。"
},
damage: "10×",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card