1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

71
data-asia/SV/SV3/076.ts Normal file
View File

@ -0,0 +1,71 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "カラマネロ",
'zh-tw': "烏賊王",
th: "คาลามาเนโร"
},
illustrator: "Nelnal",
rarity: "Uncommon",
category: "Pokemon",
dexId: [687],
hp: 120,
types: ["Darkness"],
description: {
ja: "歴史を 変えるほどの 大事件は カラマネロの 催眠能力が かかわっていたと いわれている。",
'zh-tw': "據說那些能夠改變歷史的重大事件其實都和烏賊王的催眠能力有關。",
th: "ว่ากันว่าความสามารถในการสะกดจิตของคาลามาเนโรมีส่วนเกี่ยวข้องกับเหตุการณ์ใหญ่ที่ถึงขนาดพลิกประวัติศาสตร์"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "サイコビジョン",
'zh-tw': "精神視角",
th: "ไซโควิชัน"
},
effect: {
ja: "自分の番に1回使える。相手の山札を上から1枚見て、もとにもどす。その後、自分の山札を上から1枚見て、もとにもどす。",
'zh-tw': "在自己的回合時可使用1次。查看對手的牌庫上方1張卡回復原樣。然後查看自己的牌庫上方1張卡回復原樣。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ดูการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้าม คืนที่เดิม หลังจากนั้น ดูการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา คืนที่เดิม"
}
}],
attacks: [{
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "さいみんこうせん",
'zh-tw': "催眠光線",
th: "ลำแสงสะกดจิต"
},
damage: 90,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card