1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

63
data-asia/S/S12/025.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷丘",
th: "ไรชู",
ja: "ライチュウ"
},
illustrator: "Megumi Mizutani",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
'zh-tw': "長長的尾巴能夠像接地線一樣保護自己,因此即使 是高壓電也不會讓牠麻痺。",
th: "หางที่ยาวจะทำหน้าที่เป็นสายดินคอยปกป้องตัวเอง มันจึงไม่โดนช็อตแม้จะโดนไฟฟ้าแรงสูง",
ja: "長い しっぽが アースになって 身を 守るため 自分自身は 高電圧にも 痺れないのだ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "埋伏電光",
th: "ดักรอสปาร์ก",
ja: "まちぶせスパーク"
},
effect: {
'zh-tw': "若對手已經使出了【VSTAR】力量則增加100點傷害。",
th: "ถ้าฝ่ายตรงข้ามใช้พลัง【VSTAR】ไปแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 100",
ja: "相手がすでにVSTARパワーを使っていたなら、100ダメージ追加。"
},
damage: "40",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "雷電球",
th: "ไลท์นิงบอล",
ja: "ライトニングボール"
},
damage: 120,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [26]
}
export default card