mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
75
data-asia/SV/SV2D/018.ts
Normal file
75
data-asia/SV/SV2D/018.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ライチュウ",
|
||||
'zh-tw': "雷丘",
|
||||
th: "ไรชู",
|
||||
id: "Raichu"
|
||||
},
|
||||
|
||||
illustrator: "Teeziro",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [26],
|
||||
hp: 140,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
ja: "尻尾が アースの 役目をはたして 電気を 地面に 逃がすので 自分自身は しびれたりしない。",
|
||||
'zh-tw': "尾巴會發揮接地線的作用把電氣導入地面, 所以自己不會被電得發麻。",
|
||||
th: "หางทำหน้าที่เป็นสายดินปล่อยไฟฟ้าไหลลงสู่พื้นดิน ทำให้ร่างกายของตัวเองไม่ชา",
|
||||
id: "Karena ekornya berperan sebagai grounding yang melepaskan listrik ke tanah, Raichu tidak tersengat oleh listrik tersebut."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "エレキチャージ",
|
||||
'zh-tw': "電氣充能",
|
||||
th: "อิเล็กทริกชาร์จ",
|
||||
id: "Electric Charge"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の山札から「基本エネルギー」を2枚まで選び、このポケモンにつける。そして山札を切る。",
|
||||
'zh-tw': "從自己的牌庫選擇最多2張「基本【雷】能量」卡,附於這隻寶可夢身上。並且重洗牌庫。",
|
||||
th: "เลือกการ์ด [พลังงานพื้นฐาน[สายฟ้า]] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด",
|
||||
id: "Pilih paling banyak 2 lembar Energi Dasar {Listrik} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "10まんボルト",
|
||||
'zh-tw': "十萬伏特",
|
||||
th: "หนึ่งแสนโวลต์",
|
||||
id: "Ledakan Listrik"
|
||||
},
|
||||
|
||||
damage: 200,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンについているエネルギーを、すべてトラッシュする。",
|
||||
'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。",
|
||||
th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด",
|
||||
id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user