1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

53
data-asia/S/S10P/039.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 狙射樹梟"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 160,
types: ["Fighting"],
description: {
'zh-tw': "為抵抗洗翠的嚴寒氣候,羽毛的芯中含有空氣,因而能夠防寒。 由此可見環境會對進化產生影響。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "深入鉤爪"
},
effect: {
'zh-tw': "造成對手的戰鬥寶可夢身上放置的傷害指示物的數量×30點傷害。"
},
damage: "30×"
}, {
name: {
'zh-tw': "筆直箭"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到80點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card