デッキ情報が保存されたテキストファイルは
1行目 カード名 //1枚目
2行目 HP
3行目 MP
4行目 カード名 //2枚目
5行目 HP
6行目 MP
とこんな感じで(実際は仕様に合わせて)
これをdec.txtとすると

notesel dec
noteload "dec.txt"
notemax decmax
decmax=decmax/3 //3行で1枚のデータだから3で割る
sdim cardname,decmax
dim hp,decmax
dim mp,decmax

で、あとは配列に読み込ませればいいんでない?