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

69
data-asia/SV/SV4a/104.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "リオル",
'zh-tw': "利歐路",
th: "ริโอลุ",
id: "Riolu"
},
illustrator: "chibi",
category: "Pokemon",
dexId: [447],
hp: 70,
types: ["Fighting"],
description: {
ja: "仲間同士で 波動を 出して コミュニケーションを とっている。 一晩中 走り続けられる。",
'zh-tw': "夥伴們之間會透過發出波導來與彼此溝通。 跑步可以跑上一整晚。",
th: "ใช้คลื่นพลังในการสื่อสารกับพวกเดียวกัน สามารถวิ่งติดต่อกันได้ทั้งคืน",
id: "Riolu mengeluarkan gelombang aura untuk berkomunikasi dengan kawannya. Pokémon ini dapat terus berlari sepanjang malam."
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "パンチ",
'zh-tw': "出拳",
th: "หมัด",
id: "Pukulan"
},
damage: 10
}, {
cost: ["Fighting", "Colorless"],
name: {
ja: "とつげき",
'zh-tw': "突擊",
th: "ประจัญบาน",
id: "Menyerang"
},
damage: 50,
effect: {
ja: "このポケモンにも20ダメージ。",
'zh-tw': "這隻寶可夢也受到20點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 20."
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card