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:
70
data-asia/SV/SV4a/279.ts
Normal file
70
data-asia/SV/SV4a/279.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "パルデア ケンタロス",
|
||||
'zh-tw': "帕底亞 肯泰羅",
|
||||
id: "Paldean Tauros"
|
||||
},
|
||||
|
||||
illustrator: "nagimiso",
|
||||
category: "Pokemon",
|
||||
dexId: [128],
|
||||
hp: 130,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
ja: "ぶ厚く 力強い 筋肉と 気性の 荒さが 特徴。 コンバット種と 呼ばれる。",
|
||||
'zh-tw': "特徵是厚實有力的肌肉,以及粗魯暴躁的性格。 這種樣子被稱為鬥戰種。",
|
||||
id: "Otot tebal bertenaga dan sifatnya yang kasar adalah karakteristiknya. Pokémon ini dikenal sebagai Tauros Varian Tempur."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "いかりのつの",
|
||||
'zh-tw': "憤怒之角",
|
||||
id: "Tanduk Kemarahan"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにのっているダメカンの数×10ダメージ追加。",
|
||||
'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。",
|
||||
id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "コンバットタックル",
|
||||
'zh-tw': "鬥戰衝撞",
|
||||
id: "Combat Tackle"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにも30ダメージ。",
|
||||
'zh-tw': "這隻寶可夢也受到30點傷害。",
|
||||
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user