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

70
data-asia/SV/SV2a/127.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "カイロス",
'zh-tw': "凱羅斯",
th: "ไคลอส",
id: "Pinsir"
},
illustrator: "Yuya Oka",
rarity: "Uncommon",
category: "Pokemon",
dexId: [127],
hp: 120,
types: ["Grass"],
description: {
ja: "ツノで 獲物を 挟みこみ そのまま まっぷたつに するか 強引に 投げ飛ばしてしまう。",
'zh-tw': "會用角緊緊夾住獵物,就這樣把對方剪成兩半 或是把牠硬扔到天邊去。",
th: "จะใช้เขาหนีบเหยื่อแล้วฉีกเป็นสองส่วนหรือไม่ก็เขวี้ยงออกไปแรง ๆ",
id: "Pinsir mencapit mangsa menggunakan tanduknya, lalu mangsa tersebut akan dibelah jadi dua atau dilempar."
},
stage: "Basic",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
ja: "はさむ",
'zh-tw': "夾住",
th: "หนีบ",
id: "Capitan Keras"
},
damage: 30
}, {
cost: ["Grass", "Grass", "Colorless"],
name: {
ja: "がむしゃらなげ",
'zh-tw': "蠻幹上投",
th: "ทุ่มบ้าระห่ำ",
id: "Lempar Mati-matian"
},
damage: "90+",
effect: {
ja: "自分のサイドの残り枚数が、相手のサイドの残り枚数より多いなら、90ダメージ追加。",
'zh-tw': "若自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多則增加90點傷害。",
th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายเรา มากกว่าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้าม การโจมตีนี้จะเพิ่มแดเมจอีก 90",
id: "Jika sisa Kartu Point sendiri lebih banyak dari sisa Kartu Point lawan, kerusakan yang diberikan bertambah sejumlah 90."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card