1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

65 lines
1.8 KiB
TypeScript
Raw Permalink 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "バイバニラ",
'zh-tw': "雙倍多多冰",
th: "ไบวานิลลา"
},
illustrator: "Nelnal",
rarity: "Uncommon",
category: "Pokemon",
dexId: [584],
hp: 150,
types: ["Water"],
description: {
ja: "体温は マイナス6度 前後。 2匹の バニリッチが くっつき 生まれたと いわれている。",
'zh-tw': "體溫在零下6度左右。據說是由2隻多多冰黏在一起而誕生的。",
th: "อุณหภูมิร่างกายประมาณ -6 องศา ว่ากันว่าเกิดมาจากวานิริช 2 ตัวมาติดกัน"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "ごっかんルーム",
'zh-tw': "酷寒空間",
th: "ห้องหนาวสุดขั้ว"
},
effect: {
ja: "このポケモンがいるかぎり、残りHPが「40」以下の相手のポケモンは、ワザが使えない。",
'zh-tw': "只要這隻寶可夢在場上對手的剩餘HP為「40」以下的寶可夢無法使用招式。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่ โปเกมอนฝ่ายตรงข้ามที่มี HP เหลือน้อยกว่าหรือเท่ากับ [40] จะใช้ท่าต่อสู้ไม่ได้"
}
}],
attacks: [{
cost: ["Water", "Water"],
name: {
ja: "つららミサイル",
'zh-tw': "冰柱飛彈",
th: "มิสไซล์แท่งน้ำแข็ง"
},
damage: 110
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card