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

70
data-asia/SV/SV1a/051.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "タイレーツ",
'zh-tw': "列陣兵",
th: "ไทเรสึ",
id: "Falinks"
},
illustrator: "kurumitsu",
rarity: "Common",
category: "Pokemon",
dexId: [870],
hp: 110,
types: ["Fighting"],
description: {
ja: "先頭に 立って 指示を 出す ヘイチョーは 6匹の 中で いちばん 強くて 賢いのだ。",
'zh-tw': "站在最前面下達指示的頭頭是6隻裡面 最強最聰明的。",
th: "หัวหน้าทหารที่ยืนอยู่หัวแถวคอยออกคำสั่งนั้นแข็งแกร่งและเฉลียวฉลาดที่สุดในบรรดาทหารทั้ง 6 ตัว",
id: "Pemimpin yang berdiri paling depan dan memberikan perintah adalah Falinks terkuat dan paling cerdas di antara 6 Falinks dalam kelompoknya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ずつき",
'zh-tw': "頭錘",
th: "พุ่งหัวชน",
id: "Tandukan Kepala"
},
damage: 20
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "いっしょにとつげき",
'zh-tw': "一起突擊",
th: "ประจัญบานไปพร้อมกัน",
id: "Menyerang Bareng"
},
damage: "70+",
effect: {
ja: "自分のベンチに「タイレーツ」がいるなら、90ダメージ追加。",
'zh-tw': "若自己的備戰區有「列陣兵」則增加90點傷害。",
th: "ถ้าบนเบนช์ฝ่ายเรามี [ไทเรสึ] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 90",
id: "Jika ada Falinks di Cadangan sendiri, kerusakan yang diberikan bertambah sejumlah 90."
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card