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

55
data-asia/S/SC1b/009.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "樂天河童"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 160,
types: ["Grass"],
description: {
'zh-tw': "快樂的音樂節奏會讓樂天河童的細胞活性化,使牠發揮出強大的力量。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "洋洋突進"
},
effect: {
'zh-tw': "造成自己已經獲得的獎賞卡的張數×60點傷害。"
},
damage: "60×",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "超級吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 120,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card