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

44
data-asia/S/S11/004.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "向日花怪"
},
illustrator: "zig",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "溫暖的陽光就是牠的能量。以追著太陽移動的習性聞名。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "燦燦光束"
},
effect: {
'zh-tw': "若希望從自己的手牌將最多3張能量卡丟棄增加其張數×70點傷害。"
},
damage: "10+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card