1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

59 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "ラクライ",
'zh-tw': "落雷獸",
'zh-cn': "落雷獸"
},
illustrator: "Narano",
rarity: "Common",
category: "Pokemon",
dexId: [309],
hp: 60,
types: ["Lightning"],
description: {
ja: "静電気を 体毛に 溜める。 空気の 乾燥した 季節には 全身から 火花を 散らす。",
'zh-tw': "會在體毛中儲存靜電。 在空氣乾燥的季節 會從全身散發出火花。",
'zh-cn': "會在體毛中儲存靜電。 在空氣乾燥的季節 會從全身散發出火花。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "うしろげり",
'zh-tw': "後踢",
'zh-cn': "後踢"
},
damage: 10
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "プチボルト",
'zh-tw': "小伏特",
'zh-cn': "小伏特"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card