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

60
data-asia/SV/SV6/064.ts Normal file
View 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: "Rare",
illustrator: "Souichirou Gunjima",
dexId: [1014],
hp: 130,
types: ["Fighting"],
description: {
ja: "すぐ 頭に 血が 上ってしまう 荒くれもの。 首の 鎖を 振り回し なんでも 叩き潰す。",
'zh-tw': "動不動就會怒火沖天的 粗暴傢伙。會揮甩脖子的鎖鏈 一股腦兒地擊碎東西。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "アドレナパワー",
'zh-tw': "腎上腺力量"
},
effect: {
ja: "このポケモンにエネルギーがついているなら、このポケモンの最大HPは「100」され、このポケモンが使うワザの、相手のバトルポケモンへのダメージは「+100」される。",
'zh-tw': "若這隻寶可夢身上附有【惡】能量卡則這隻寶可夢的最大HP「+100」這隻寶可夢使用的招式對對手的戰鬥寶可夢造成的傷害「+100」點。"
}
}],
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
ja: "グッドパンチ",
'zh-tw': "好拳"
},
damage: 70
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card