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

47
data-asia/S/S11a/007.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "百合根娃娃"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "頭上的葉片是人們愛用的藥材。在太陽下曬乾後煎煮服用,雖然味苦但能有效地消除疲勞。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "活蹦亂跳"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card