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

59
data-asia/SV/SV2D/040.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "グレッグル",
'zh-tw': "不良蛙",
th: "กูเรกกรู",
id: "Croagunk"
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
dexId: [453],
hp: 70,
types: ["Fighting"],
description: {
ja: "毒袋を ふくらませて 鳴らし 辺りに 不気味な 音を 響かせ 相手が ひるむと どくづきをする。",
'zh-tw': "會鼓起毒囊鳴叫。讓四周響起詭異的聲音, 等對手畏縮,便施以毒擊。",
th: "จะทำให้ถุงพิษพองตัวแล้วส่งเสียงก้องที่น่าสะพรึงกลัวไปรอบ ๆ บริเวณ พอฝ่ายตรงข้ามรู้สึกหวาดกลัวก็จะโจมตีด้วยพิษ",
id: "Croagunk menggelembungkan dan membunyikan kantong racunnya untuk mengeluarkan suara mengerikan ke sekelilingnya dan ketika lawan ketakutan, Pokémon ini menyerang dengan tusukan beracun."
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "どくばり",
'zh-tw': "毒針",
th: "เหล็กในพิษ",
id: "Jarum Beracun"
},
damage: 10,
effect: {
ja: "相手のバトルポケモンをどくにする。",
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun."
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card