1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

63
data-asia/S/S12/012.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "比克提尼",
th: "วิคทินี",
ja: "ビクティニ"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
'zh-tw': "如果分享到比克提尼產出的無限能量, 全身就會充滿力量。",
th: "เมื่อวิคทินีแบ่งปันพลังงานที่เกิดขึ้นมาอย่างไร้ขีดจำกัดให้ ก็จะมีพลังอย่างเปี่ยมล้นไปทั่วร่าง",
ja: "ビクティニが 無限に 生み出す エネルギーを 分け与えてもらうと 全身に パワーが あふれ出す。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "輔助火焰",
th: "แอสซิสต์เฟลม",
ja: "アシストフレイム"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張【火】能量卡以任意方式附於自己的寶可夢身上。",
th: "เลือกการ์ดพลังงาน[ไฟ]ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเราตามชอบ",
ja: "自分のトラッシュからエネルギーを2枚まで選び、自分のポケモンに好きなようにつける。"
},
damage: 20,
cost: ["Fire"]
}, {
name: {
'zh-tw': "火焰",
th: "ไฟ",
ja: "ほのお"
},
damage: 40,
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [494]
}
export default card