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

58
data-asia/S/S9a/049.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "土狼犬",
ja: "ポチエナ"
},
illustrator: "KIYOTAKA OSHIYAMA",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
description: {
'zh-tw': "有著敏銳的嗅覺, 絕對不會放過自己盯上的獵物。 個性非常執著。",
ja: "鋭い きゅうかくで ねらった 獲物は 絶対に 逃がさない。 とっても しつこい 性格だ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬",
ja: "かじる"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "撞一下",
ja: "ちょっとつっこむ"
},
effect: {
'zh-tw': "這隻寶可夢也受到10點傷害。",
ja: "このポケモンにも10ダメージ。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [261]
}
export default card