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

46
data-asia/SV/SVHK/006.ts Normal file
View File

@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SVHK"
const card: Card = {
set: Set,
name: {
'zh-tw': "岩狗狗",
th: "อิวังโค",
id: "Rockruff"
},
illustrator: "sui",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "年幼時期非常容易親近。雖然長大後脾氣會變得粗暴, 卻絕不會忘記主人的恩情。",
th: "ตอนยังเล็กค่อนข้างเชื่อง พอโตแล้วดุร้ายขึ้น แต่ไม่ลืมบุญคุณเจ้าของ",
id: "Rockruff sangat jinak saat masih kecil. Meskipun tumbuh menjadi kasar, Pokémon ini tidak pernah melupakan kebaikan pemiliknya."
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "握手拳",
th: "หมัดมือ",
id: "Pukulan Jabat Tangan"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card