1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/074.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: "aoki",
category: "Pokemon",
hp: 110,
types: ["Dragon"],
description: {
'zh-tw': "會對在黑暗中無計可施的對手痛加打擊。 好勇鬥狠,性情殘忍。",
th: "มีนิสัยก้าวร้าวและโหดเหี้ยม ทำให้ศัตรูที่ไม่สามารถทำอะไรได้ในที่มืดเจ็บปวดทรมาน",
ja: "暗闇で なにも できない 敵を 念入りに 痛めつける。 血の気が 多く 残忍な 性質。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "光點狩獵",
th: "เรเดียนต์ฮันท์",
ja: "ラジエントハント"
},
effect: {
'zh-tw': "選擇1隻對手的場上的「光輝寶可夢」將其【氣絕】。",
th: "เลือก [เรเดียนต์โปเกมอน] 1 ตัวบนกระดานฝ่ายตรงข้ามแล้วทำให้[หมดสภาพ]",
ja: "相手の場の「かがやくポケモン」を1匹選び、きぜつさせる。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "七弦迴響",
th: "เซเวนส์เอคโค",
ja: "セブンスエコー"
},
effect: {
'zh-tw': "從牌庫抽卡直到自己的手牌滿7張為止。",
th: "จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 7 ใบ",
ja: "自分の手札が7枚になるように、山札を引く。"
},
damage: 70,
cost: ["Psychic", "Darkness"]
}],
retreat: 0,
regulationMark: "F",
rarity: "Uncommon",
dexId: [715]
}
export default card