1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

59 lines
926 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "風鈴鈴"
},
illustrator: "Asako Ito",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "擁有超音波的叫聲。輕飄飄地浮起來,乘著風旅行到遠方。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "心動音色"
},
effect: {
'zh-tw': "從自己的牌庫選擇寶可夢卡與支援者卡各1張在給對手看過後加入手牌。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "催眠波動"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card