1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

62
data-asia/SV/SV4K/071.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "サケブシッポ",
th: "หางตะเบ็ง"
},
illustrator: "GIDORA",
category: "Pokemon",
dexId: [985],
hp: 90,
types: ["Psychic"],
description: {
ja: "目撃例は 過去 1件のみ。 古い 探検記に 記された 謎の 生物に 似た ポケモン。",
th: "ตามข้อมูลระบุว่าเคยมีผู้พบเห็นเพียงแค่ครั้งเดียว เป็นโปเกมอนที่คล้ายกับสิ่งมีชีวิตลึกลับที่ระบุไว้ในบันทึกการสำรวจเก่าแก่"
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "ビンタ",
th: "ตบ"
},
damage: 30
}, {
cost: ["Psychic", "Colorless"],
name: {
ja: "ほえさけぶ",
th: "ร้องตะเบ็ง"
},
effect: {
ja: "相手のポケモン1匹に、このポケモンにのっているダメカンの数×20ダメージ。ベンチは弱点・抵抗力を計算しない。",
th: "ทำแดเมจกับโปเกมอนฝ่ายตรงข้าม 1 ตัว เท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x20 {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card