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

55
data-asia/S/SC1b/013.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: "chibi",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "會用馥郁芬芳的花香迷惑敵人,並用荊棘上的鞭子猛力抽打對方。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "麻痺毒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。擲1次硬幣若為正面則再將其【麻痺】。"
},
damage: 30,
cost: ["Grass"]
}, {
name: {
'zh-tw': "超級吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card