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

59
data-asia/S/SC1a/039.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "天然鳥"
},
illustrator: "so-taro",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "人們相信牠之所以幾乎不動也不叫地靜靜待著,是因為牠正注視著過去和未來。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "能量扭曲"
},
effect: {
'zh-tw': "選擇1個對手的備戰寶可夢身上附加的能量改附於對手的戰鬥寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "精神強念"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
},
damage: "10+",
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card