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

60
data-asia/SV/SV3/086.ts Normal file
View File

@@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "チルタリス",
'zh-tw': "七夕青鳥",
th: "ทิลทาลิส"
},
illustrator: "kurumitsu",
rarity: "Uncommon",
category: "Pokemon",
dexId: [334],
hp: 120,
types: ["Dragon"],
description: {
ja: "心が 通い合った 人がいると 柔らかく 美しい 羽で そっと 包み込み ハミングする。",
'zh-tw': "只要與牠心意相通的人在場,牠就會用柔軟的美麗翅膀輕輕包住對方,哼唱起旋律。",
th: "พอมีคนที่สามารถสื่อใจถึงกันได้ มันจะใช้ปีกนุ่มสวยโอบเบา ๆ แล้วฮัมเพลง"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "かっくう",
'zh-tw': "滑翔",
th: "ถลาลม"
},
damage: 30
}, {
cost: ["Water", "Metal"],
name: {
ja: "じゅくすいソング",
'zh-tw': "熟睡歌曲",
th: "เพลงหลับปุ๋ย"
},
damage: 110,
effect: {
ja: "相手のバトルポケモンをねむりにする。このねむりで投げるコインは2回になり、すべてオモテが出ないと回復しない。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。因這個【睡眠】的擲硬幣次數改為2次若沒有全部為正面則無法恢復。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ] จำนวนครั้งที่ต้องทอยเหรียญเมื่อเป็นสภาวะ[หลับ]นี้จะเป็น 2 ครั้ง ถ้าไม่ออกหัวทั้งหมดจะไม่หายจากสภาวะ[หลับ]"
}
}],
retreat: 1,
regulationMark: "G"
}
export default card