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:
55
data-asia/SV/SV6/102.ts
Normal file
55
data-asia/SV/SV6/102.ts
Normal 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
|
Reference in New Issue
Block a user