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:
56
data-asia/SV/SV6/103.ts
Normal file
56
data-asia/SV/SV6/103.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "裹蜜蟲"
|
||||
},
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "祭典樂舞"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "朋友之環"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "造成自己的備戰寶可夢的數量×20點傷害。"
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
cost: ["Grass"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user