1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

65 lines
1.7 KiB
TypeScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "蜜集大蛇ex",
'zh-cn': "蜜集大蛇ex",
ja: "カミツオロチex"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 330,
types: ["Grass"],
stage: "Stage2",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "蜜糖風暴",
'zh-cn': "蜜糖風暴",
ja: 'みつあめストーム'
},
effect: {
'zh-tw': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。",
'zh-cn': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。",
ja: '自分のポケモン全員についているエネルギーの数×30ダメージ追加。'
},
damage: "30",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
abilities: [{
type: "Ability",
name: {
ja: "じゅくせいチャージ",
'zh-tw': "[特性]熟成充能",
'zh-cn': "[特性]熟成充能"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡附於自己的寶可夢身上。然後將附上那張卡的寶可夢恢復「30」HP。",
'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡附於自己的寶可夢身上。然後將附上那張卡的寶可夢恢復「30」HP。",
ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、つけたポケモンのHPを「30」回復する。"
}
}],
rarity: "None"
}
export default card