1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

65
data-asia/SV/SV4M/019.ts Normal file
View File

@ -0,0 +1,65 @@
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