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

58
data-asia/SV/SV4M/047.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "シャリタツ",
'zh-tw': "米立龍",
th: "ชาริทัตสึ"
},
illustrator: "Shibuzoh.",
rarity: "Uncommon",
category: "Pokemon",
dexId: [978],
hp: 70,
types: ["Dragon"],
description: {
ja: "非常に 悪賢い ポケモン。 弱ったふりで 獲物を おびき寄せ 仲間の ポケモンに 襲わせる。",
'zh-tw': "極為奸詐狡猾的寶可夢。會假裝虛弱來吸引獵物接近,接著讓同夥的寶可夢發動攻擊。",
th: "เป็นโปเกมอนที่เจ้าเล่ห์เป็นอย่างมาก แสร้งทำเป็นอ่อนแอเพื่อดึงดูดให้เหยื่อเข้ามาใกล้แล้วให้โปเกมอนที่เป็นพวกพ้องโจมตีใส่"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "みずでっぽう",
'zh-tw': "水槍",
th: "ปืนฉีดน้ำ"
},
damage: 20
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "せいぞんせんりゃく",
'zh-tw': "生存戰略",
th: "กลยุทธ์เพื่อความอยู่รอด"
},
effect: {
ja: "自分の山札から好きなカードを2枚まで選び、手札に加える。そして山札を切る。のぞむなら、このポケモンをベンチポケモンと入れ替える。",
'zh-tw': "從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。若希望將這隻寶可夢與備戰寶可夢互換。",
th: "เลือกการ์ดที่ชอบได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด หากต้องการ สลับโปเกมอนนี้กับโปเกมอนบนเบนช์"
}
}],
retreat: 1,
regulationMark: "G"
}
export default card