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:
65
data-asia/SV/SV3a/013.ts
Normal file
65
data-asia/SV/SV3a/013.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ランターン",
|
||||
'zh-tw': "電燈怪",
|
||||
th: "แลนเทอร์น"
|
||||
},
|
||||
|
||||
illustrator: "aspara",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [171],
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
ja: "強い 光を 放ち 獲物の 目を 眩ませる。 隙が できたら 電撃を おみまいする。",
|
||||
'zh-tw': "發出強光讓獵物暫時失明。趁獵物露出破綻時, 用電擊招呼對手。",
|
||||
th: "ปล่อยแสงสว่างจ้าออกมาทำให้ตาของเหยื่อพร่ามัว แล้วใช้โอกาสช่วงนั้นปล่อยไฟฟ้าเข้าโจมตี"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ピッカリだま",
|
||||
'zh-tw': "光彈",
|
||||
th: "ลูกกลมเจิดจ้า"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "アクアスパーク",
|
||||
'zh-tw': "水流電光",
|
||||
th: "อควาสปาร์ก"
|
||||
},
|
||||
|
||||
damage: "80+",
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにエネルギーがついているなら、120ダメージ追加。",
|
||||
'zh-tw': "若這隻寶可夢身上附有【水】能量,則增加120點傷害。",
|
||||
th: "ถ้าโปเกมอนนี้มีพลังงาน[น้ำ]ติดอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 120"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user