1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 20:51:57 +00:00

feat: Add SV8a (#673)

This commit is contained in:
2025-02-28 08:44:24 +01:00
committed by GitHub
parent 2f9c5814ff
commit 19dccfd5d7
238 changed files with 14569 additions and 0 deletions

69
data-asia/SV/SV8a/213.ts Normal file
View File

@@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "テツブジンex",
id: "Iron Valiant ex",
'zh-tw': "鐵武者ex",
'zh-cn': "鐵武者ex"
},
illustrator: "danciao",
rarity: "None",
category: "Pokemon",
hp: 220,
types: ["Psychic"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "タキオンビット",
id: "Tachyon Bit",
'zh-tw': "超光速位元",
'zh-cn': "超光速位元"
},
effect: {
ja: "自分の番に、このポケモンがベンチからバトル場に出たとき、1回使える。相手のポケモン1匹に、ダメカンを2個のせる。",
id: "Dapat digunakan 1 kali pada giliran sendiri saat Pokémon ini masuk dari Cadangan ke Arena Bertarung. Letakkan 2 Token Kerusakan pada 1 Pokémon lawan.",
'zh-tw': "在自己的回合從備戰區將這隻寶可夢放置於戰鬥場時可使用1次。在對手的1隻寶可夢身上放置2個傷害指示物。",
'zh-cn': "在自己的回合從備戰區將這隻寶可夢放置於戰鬥場時可使用1次。在對手的1隻寶可夢身上放置2個傷害指示物。"
}
}],
attacks: [{
cost: ["Psychic", "Psychic", "Colorless"],
name: {
ja: "レーザーブレード",
id: "Laser Blade",
'zh-tw': "鐳射利刃",
'zh-cn': "鐳射利刃"
},
damage: 200,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card