1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/S/S8b/088.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "投擲猴"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "20幾隻形成團隊來生活。靠著每個成員明確的分工, 在嚴苛的大自然中生存下來。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "拋投特訓"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上自己的「連擊」寶可夢使用的招式對對手的備戰區的「寶可夢【V】・【GX】」造成的傷害「+30」點。無論有多少隻擁有這個特性的寶可夢這個效果也不會重複。"
}
}],
attacks: [{
name: {
'zh-tw': "投擲"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card