1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
committed by GitHub
parent 4f2c27937a
commit 1d14078dd8
365 changed files with 13098 additions and 481 deletions

55
data-asia/SV/SV6/102.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
'zh-tw': "向日花怪"
},
illustrator: "Shinya Komatsu",
category: "Pokemon",
hp: 100,
types: ["Grass"],
description: {
'zh-tw': "由於會將沐浴到的陽光 轉換成能量,因此白天 總是一直面向著太陽。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "光返"
},
effect: {
'zh-tw': "造成對手的所有寶可夢身上附加的【火】能量的數量×60點傷害。"
},
damage: "60×",
cost: ["Grass"]
}, {
name: {
'zh-tw': "超級吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 50,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card