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:
49
data-asia/S/S10D/045.ts
Normal file
49
data-asia/S/S10D/045.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "三合一磁怪"
|
||||
},
|
||||
|
||||
illustrator: "Saya Tsuruta",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "由3隻小磁怪連結而成。會發射出強烈的電波 來觀測周圍的狀況。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "彈回"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Metal", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user