1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

45 lines
918 B
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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "バニリッチ",
th: "วานิริช"
},
illustrator: "Taiga Kayama",
category: "Pokemon",
dexId: [583],
hp: 90,
types: ["Water"],
description: {
ja: "マイナス100度の 冷気で 敵を 凍らせるが 命までは 奪わない 優しい 気質。",
th: "ทำให้ศัตรูเย็นเยือกแข็งด้วยไอเย็น -100 องศา แต่ยังมีจิตใจดีไม่ทำให้ถึงแก่ชีวิต"
},
stage: "Stage1",
attacks: [{
cost: ["Water", "Water"],
name: {
ja: "フロストスマッシュ",
th: "ฟรอสต์สแมช"
},
damage: 60
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card