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:
60
data-asia/SV/SV6/066.ts
Normal file
60
data-asia/SV/SV6/066.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ポチエナ",
|
||||
'zh-tw': "土狼犬"
|
||||
},
|
||||
|
||||
category: "Pokemon",
|
||||
rarity: "Common",
|
||||
illustrator: "Shibuzoh.",
|
||||
dexId: [261],
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
ja: "群れで 獲物を 追いかけまわす。 疲れきったところを 仕留めるが たまに 反撃されて 逃げだす。",
|
||||
'zh-tw': "會成群追擊獵物,並在其 筋疲力盡時給予致命一擊, 但有時會因遭到反擊而逃走。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
ja: "れんぞくステップ",
|
||||
'zh-tw': "連續舞步"
|
||||
},
|
||||
|
||||
damage: "10×",
|
||||
|
||||
effect: {
|
||||
ja: "ウラが出るまでコインを投げ、オモテの数×10ダメージ。",
|
||||
'zh-tw': "擲硬幣直到出現反面,造成正面出現的次數×10點傷害。"
|
||||
}
|
||||
}, {
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "やみのキバ",
|
||||
'zh-tw': "暗之牙"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user