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

54
data-asia/S/S7R/038.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S7R"
const card: Card = {
set: Set,
name: {
'zh-tw': "念力土偶"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "似乎是從古代人做的泥偶誕生而來的寶可夢。能靠念力飄浮在空中移動。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "高速旋轉"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後,對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "古代刻印"
},
effect: {
'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「60」為止。"
},
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card