1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

54
data-asia/SV/SV10/077.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>拉達",
'zh-cn': "<火箭隊的>拉達",
ja: "ロケット団のラッタ"
},
illustrator: "Uninori",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
description: {
'zh-tw': "鬍鬚是用來保持平衡的重要器官。 就算感情再好,如果摸了牠的鬍鬚, 牠都會生氣地咬過來。",
'zh-cn': "鬍鬚是用來保持平衡的重要器官。 就算感情再好,如果摸了牠的鬍鬚, 牠都會生氣地咬過來。",
ja: "ヒゲは バランスを とる 大切な 器官。 どんなに 仲良くなっても 触られると 怒って 噛みつく。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "顧前不顧後",
'zh-cn': "顧前不顧後",
ja: "むこうみず"
},
effect: {
'zh-tw': "擲2次硬幣若全部為反面則這隻寶可夢也受到90點傷害。",
'zh-cn': "擲2次硬幣若全部為反面則這隻寶可夢也受到90點傷害。",
ja: "コインを2回投げ、すべてウラなら、このポケモンにも90ダメージ。"
},
damage: 90,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [20]
}
export default card