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:
55
data-asia/SV/SV3/037.ts
Normal file
55
data-asia/SV/SV3/037.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "エレズン",
|
||||
'zh-tw': "毒電嬰",
|
||||
th: "เอเลซัน"
|
||||
},
|
||||
|
||||
illustrator: "AKIRA EGAWA",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [848],
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
ja: "汚れた 水を 飲んでも 平気。 体内の 器官で 自分には 無害の 毒液に ろ過するぞ。",
|
||||
'zh-tw': "就算喝下污水也能安然無恙。那是因為牠會靠著體內的器官把污水過濾成對自己無害的毒液。",
|
||||
th: "ดื่มน้ำสกปรกได้อย่างสบาย ๆ แล้วกรองเป็นสารพิษที่ไม่เป็นอันตรายต่อตัวเองที่อวัยวะภายใน"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
ja: "ちょっとつっこむ",
|
||||
'zh-tw': "撞一下",
|
||||
th: "จุ้นจ้านหน่อย"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにも10ダメージ。",
|
||||
'zh-tw': "這隻寶可夢也受到10點傷害。",
|
||||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user