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:
69
data-asia/SV/SV4M/052.ts
Normal file
69
data-asia/SV/SV4M/052.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4M"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "エテボース",
|
||||
'zh-tw': "雙尾怪手",
|
||||
th: "เอเทโบธ"
|
||||
},
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [424],
|
||||
hp: 100,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
ja: "なにを するにも シッポを 使う。 2本の シッポで 抱きしめられたら 本当に 懐かれた 証。",
|
||||
'zh-tw': "不管做什麼事都會用到尾巴。如果牠用2根尾巴抱緊你,就代表牠真的和你很親近。",
|
||||
th: "ใช้หางทำทุกสิ่งทุกอย่าง ถ้ามันกอดรัดด้วยหางทั้ง 2 แสดงว่ามันรักจริง"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "もってくる",
|
||||
'zh-tw': "呼喚",
|
||||
th: "รวบรวม"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の山札を2枚引く。",
|
||||
'zh-tw': "從自己的牌庫抽出2張卡。",
|
||||
th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา"
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ハンドスリング",
|
||||
'zh-tw': "手之吊懸",
|
||||
th: "แฮนด์สลิง"
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
|
||||
effect: {
|
||||
ja: "自分の手札の枚数×20ダメージ。",
|
||||
'zh-tw': "造成自己的手牌的張數×20點傷害。",
|
||||
th: "แดเมจจะเท่ากับจำนวนการ์ดบนมือฝ่ายเรา x20"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user